Blame view

src/ParamOutputImpl/Plot/Time/TimePlot.cc 37.2 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * TimePlot.cc
 *
 *  Created on: 22 nov. 2013
 *      Author: CS
 */

#include "TimePlot.hh"
#include "ParamsNode.hh"
#include "AxesNode.hh"
#include "PlotOutput.hh"
#include "TimeUtil.hh"
#include "Parameter.hh"
#include "ParamInfo.hh"
#include "ParamTable.hh"
#include "ParamMgr.hh"
#include "ShadesTools.hh"
#include "AxisLegendManager.hh"
#include <fstream>

#include "DefaultTimeAxisDecorator.hh"
#include "TickMarkDecorator.hh"
#include "PlotLogger.hh"
#include "ParamMgr.hh"
#include "TimeUtil.hh"
f6eaec4e   Benjamin Renard   Optimize plot ele...
26
#include "PlPlotUtil.hh"
faf4d845   Benjamin Renard   Add common functi...
27
#include "Range.hh"
fbe3c2bb   Benjamin Renard   First commit
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

#include <boost/format.hpp>

using namespace AMDA::Parameters;
using namespace AMDA::Info;

namespace plot {


QSASConfig* TimePlot::qsasconfig = NULL;

TimePlot::TimePlot(AMDA::Parameters::ParameterManager& manager,
		boost::shared_ptr<Panel> panel, TimeAxisDecorator* timeAxisDecorator /*= new DefaultTimeAxisDecorator()*/) :
		PanelPlotOutput(manager, panel), _startDateDrawn(false) {
	setTimeAxisDecorator(std::shared_ptr<TimeAxisDecorator>(timeAxisDecorator));
}

TimePlot::~TimePlot() {
	if (qsasconfig != NULL) {
		free(qsasconfig);
		qsasconfig = nullptr;
	}
}


TimeAxis* TimePlot::getTimeAxis(){
	std::string lAxisId = getXAxisId();
	boost::shared_ptr<Axis> xAxis = _panel->getAxis(lAxisId);
	if (xAxis.get() == nullptr) {
		std::stringstream lError;
		lError << "TimePlot::apply" << ": time axis with id '" << lAxisId << "' not found.";
		BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
	}
	return dynamic_cast<TimeAxis*>(xAxis.get());
}

void TimePlot::preparePlotArea(double startTime, double stopTime, int intervalIndex) {
	// dump properties for test
	const char* lBuildType=getenv("BUILD_TYPE");
	if(lBuildType && std::string(lBuildType) == "Debug") {
		std::ofstream out("timePlot.txt");
		dump(out);
		out.close();
	}

	// Configure Series to draw on axis by checking which color to use and
	// number of series to draw on a same axis.
	configureSeriesAxis();

	configureAxisLegend();

	configureSpectroAxis();

	configureParamsLegend(startTime,stopTime,intervalIndex);

	// configure X axis
	getTimeAxisDecorator()->configure(this, getTimeAxis(), startTime, stopTime, _pParameterValues);
08ec1dde   Benjamin Renard   Add propertie _us...
85
	getTimeAxis()->_used = true;
fbe3c2bb   Benjamin Renard   First commit
86
87
88
89
90
	_pls->timefmt(getTimeAxisDecorator()->getPlFormat().c_str());

	PanelPlotOutput::preparePlotArea(startTime,stopTime,intervalIndex);
}

d57f00dc   Benjamin Renard   Draw NO DATA
91
bool TimePlot::draw(double startTime, double stopTime, int intervalIndex,
fbe3c2bb   Benjamin Renard   First commit
92
93
		bool isFirstInterval, bool isLastInterval) {

d57f00dc   Benjamin Renard   Draw NO DATA
94
	bool dataPloted = PanelPlotOutput::draw(startTime,stopTime,intervalIndex,isFirstInterval,isLastInterval);
fbe3c2bb   Benjamin Renard   First commit
95
96

	// Draw start date
b96aa975   Benjamin Renard   Draw border aroun...
97
	if (!_startDateDrawn /*&& getTimeAxis()->_used*/)
fbe3c2bb   Benjamin Renard   First commit
98
99
		drawStartDate (getTimeAxis(), startTime,stopTime);
	_startDateDrawn = true;
d57f00dc   Benjamin Renard   Draw NO DATA
100
	return dataPloted;
fbe3c2bb   Benjamin Renard   First commit
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
}


void TimePlot::calculatePlotArea(Bounds& bounds_) {
	PanelPlotOutput::calculatePlotArea(bounds_);
	// decorator is responsible of reserving extra space for what it manage (labels for instance).
	getTimeAxisDecorator()->updatePlotArea(this, getTimeAxis(), bounds_);
}


void TimePlot::configureSeriesAxis() {
	// map<YAxisId, userRangeDefined>
	std::map<std::string, Range> lAxisRange;
	Range lColorAxeRange;
	SeriesProperties lSeriesProperties;

	boost::shared_ptr<ColorAxis> lZAxis = _panel->getColorAxis();

	// Parse each parameter to define on which axis to draw series.
	for (auto param: _parameterAxesList) {
		// Get number of series to draw
		// For each index of parameter identify to which axis series must be drawn.
		for(auto index: param.getYSerieIndexList(_pParameterValues)) {
			lSeriesProperties = param.getYSeriePropertiesAt(index);
			if(!lSeriesProperties.hasYAxis()){
				continue;
			}
			boost::shared_ptr<Axis> lYAxis = _panel->getAxis(lSeriesProperties.getYAxisId());
			if (lYAxis.get() == nullptr) {
				std::stringstream lError;
				lError << "TimePlot::configureSeriesAxis" << ": Y axis with id '" << lSeriesProperties.getYAxisId() << "' not found.";
				BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
			}

08ec1dde   Benjamin Renard   Add propertie _us...
135
			lYAxis->_used = true;
fbe3c2bb   Benjamin Renard   First commit
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
			Range lRange(lYAxis->getRange());
			// If range status for this axis is set by the user do not update range "automatically".
			if (isnan(lRange.getMin()) && isnan(lRange.getMax())) {
				Range lEstimatedRange(lAxisRange[lYAxis->_id]);
				Range lParamIndexRange(
						(*_pParameterValues)[lSeriesProperties.getParamId()].getMin(index),
						(*_pParameterValues)[lSeriesProperties.getParamId()].getMax(index));

				ErrorBarProperties & errBarProp = lSeriesProperties.getErrorBarProperties();

				// Update lParamIndexRange depending on the use of ErrorBars on the plot
				if (errBarProp.getErrorMinMax() != nullptr) {
					Range lParamMinRange(
							(*_pParameterValues)[errBarProp.getErrorMinMax()->getUsedParamMin()].getMin(-1),
							(*_pParameterValues)[errBarProp.getErrorMinMax()->getUsedParamMin()].getMax(-1));
					Range lParamMaxRange(
							(*_pParameterValues)[errBarProp.getErrorMinMax()->getUsedParamMax()].getMin(-1),
							(*_pParameterValues)[errBarProp.getErrorMinMax()->getUsedParamMax()].getMax(-1));

					if (lParamMinRange.getMin() < lParamIndexRange.getMin())
						lParamIndexRange.setMin(lParamMinRange.getMin());
					if (lParamMinRange.getMax() > lParamIndexRange.getMax())
						lParamIndexRange.setMax(lParamMinRange.getMax());

					if (lParamMaxRange.getMin() < lParamIndexRange.getMin())
						lParamIndexRange.setMin(lParamMaxRange.getMin());
					if (lParamMaxRange.getMax() > lParamIndexRange.getMax())
						lParamIndexRange.setMax(lParamMaxRange.getMax());
				}

				if (isnan(lEstimatedRange.getMin()) && isnan(lEstimatedRange.getMax())) {
					lEstimatedRange.setMin(lParamIndexRange.getMin());
					lEstimatedRange.setMax(lParamIndexRange.getMax());
				} else {
					lEstimatedRange.setMin(std::min(lEstimatedRange.getMin(), lParamIndexRange.getMin()));
					lEstimatedRange.setMax(std::max(lEstimatedRange.getMax(), lParamIndexRange.getMax()));
				}
e062d6ef   Benjamin Renard   Fix axes range wh...
173

fbe3c2bb   Benjamin Renard   First commit
174
175
176
177
178
179
180
181
182
				lEstimatedRange._extend = lRange._extend;
				lAxisRange[lYAxis->_id] = lEstimatedRange;
			}

			// Set ZAxis range if a color param is defined for this serie
			if (lZAxis != nullptr)
			{
				if (!lSeriesProperties.getColorParamId().empty())
				{
08ec1dde   Benjamin Renard   Add propertie _us...
183
					lZAxis->_used = true;
fbe3c2bb   Benjamin Renard   First commit
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
					Range lRange(lZAxis->getRange());
					ParameterAxes* colorSerieParameterAxes = getParameterAxesByColorSerieId(lSeriesProperties.getColorSerieId());
					if (colorSerieParameterAxes == NULL)
						continue;
					ColorSeriesProperties& colorSerieProp = colorSerieParameterAxes->getColorSeriePropertiesById(lSeriesProperties.getColorSerieId());
					// If range status for this axis is set by the user do not update range "automatically".
					if (isnan(lRange.getMin()) && isnan(lRange.getMax())) {
						Range lEstimatedRange(lColorAxeRange);
						Range lParamIndexRange(
							(*_pParameterValues)[lSeriesProperties.getColorParamId()].getMin(
								colorSerieProp.getIndex()),
							(*_pParameterValues)[lSeriesProperties.getColorParamId()].getMax(
								colorSerieProp.getIndex()));

						if (isnan(lEstimatedRange.getMin()) && isnan(lEstimatedRange.getMax())) {
							lEstimatedRange.setMin(lParamIndexRange.getMin());
							lEstimatedRange.setMax(lParamIndexRange.getMax());
						} else {
							lEstimatedRange.setMin(std::min(lEstimatedRange.getMin(), lParamIndexRange.getMin()));
							lEstimatedRange.setMax(std::max(lEstimatedRange.getMax(), lParamIndexRange.getMax()));
						}
fbe3c2bb   Benjamin Renard   First commit
205
206
207
208
209
210
211
212
213
214
						lEstimatedRange._extend = lRange._extend;
						lColorAxeRange = lEstimatedRange;
					}
				}
			}
		}
	}

	// Update range of axis. Done after because, axis range may be processed in several pass (one for each series)
	for (auto lAxis: lAxisRange) {
5c050d50   Benjamin Renard   Fix another bugs ...
215
216
217
218
		boost::shared_ptr<Axis> lYAxis = _panel->getAxis(lAxis.first);
		Range lRange(lAxis.second);
		fixRange(lRange, lYAxis-> _scale == Axis::Scale::LOGARITHMIC);
		lYAxis->setRange(lRange);
fbe3c2bb   Benjamin Renard   First commit
219
220
	}

5c050d50   Benjamin Renard   Fix another bugs ...
221
222
	if (lZAxis != nullptr && lColorAxeRange.isSet()) {
		fixRange(lColorAxeRange, lZAxis->_scale == Axis::Scale::LOGARITHMIC);
fbe3c2bb   Benjamin Renard   First commit
223
		lZAxis->setRange(lColorAxeRange);
5c050d50   Benjamin Renard   Fix another bugs ...
224
	}
fbe3c2bb   Benjamin Renard   First commit
225
226
227
228
}

void TimePlot::configureAxisLegend() {
	// Y axis
c2fa3b5d   Benjamin Renard   Rework of legend ...
229
	AxisLegendManager::configureYAxisLegendForSpectro(this);
fbe3c2bb   Benjamin Renard   First commit
230
231
232
	AxisLegendManager::configureYAxisLegendForSeries(this);

	// Z axis
c2fa3b5d   Benjamin Renard   Rework of legend ...
233
	AxisLegendManager::configureColorAxisLegendForSpectro(this);
fbe3c2bb   Benjamin Renard   First commit
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
	AxisLegendManager::configureColorAxisLegendForSeries(this);
}

void TimePlot::configureSpectroAxis() {
		// Parse each parameter to define on which axis to draw spectro
	for (auto param: _parameterAxesList) {
		std::shared_ptr<SpectroProperties> spectroPropertiesPtr = param.getSpectroProperties();
		if (spectroPropertiesPtr == nullptr)
			return; //no spectro defined

		if(!spectroPropertiesPtr->hasYAxis())
			return;

		LOG4CXX_DEBUG(gLogger, "Spectro Y axis is " << spectroPropertiesPtr->getYAxisId());
		boost::shared_ptr<Axis> lYAxis = _panel->getAxis(spectroPropertiesPtr->getYAxisId());
		if (lYAxis.get() == nullptr) {
			std::stringstream lError;
			lError << "TimePlot::configureSpectroAxis" << ": Y axis with id '" << spectroPropertiesPtr->getYAxisId() << "' not found.";
			BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
		}

08ec1dde   Benjamin Renard   Add propertie _us...
255
256
		lYAxis->_used = true;

fbe3c2bb   Benjamin Renard   First commit
257
258
259
260
261
262
263
264
		//set Z axis range
		boost::shared_ptr<Axis> lZAxis = _panel->getAxis(spectroPropertiesPtr->getZAxisId());
		if (lZAxis.get() == nullptr) {
			std::stringstream lError;
			lError << "TimePlot::configureSpectroAxis" << ": Z axis with id '" << spectroPropertiesPtr->getZAxisId() << "' not found.";
			BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
		}

08ec1dde   Benjamin Renard   Add propertie _us...
265
266
		lZAxis->_used = true;

fbe3c2bb   Benjamin Renard   First commit
267
268
269
270
271
272
273
		ParameterSPtr p = _parameterManager.getParameter(param._originalParamId);
		int parameterDimension;
		if (spectroPropertiesPtr->getRelatedDim() == 0)
			parameterDimension = (*_pParameterValues)[spectroPropertiesPtr->getParamId()].getDim1Size();
		else
			parameterDimension = (*_pParameterValues)[spectroPropertiesPtr->getParamId()].getDim2Size();

966af096   Benjamin Renard   Fix 'sum in range...
274

fbe3c2bb   Benjamin Renard   First commit
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
		//set Y axis range
		Range lYAxisRange = lYAxis->Axis::getRange();
		AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(p->getInfoId());
		if (isnan(lYAxisRange.getMin()) && isnan(lYAxisRange.getMax()))
		{
			boost::shared_ptr<AMDA::Info::ParamTable> tableSPtr;
			if (paramInfo != nullptr)
				tableSPtr = paramInfo->getTable(spectroPropertiesPtr->getRelatedDim());

			if (tableSPtr == nullptr)
			{
				LOG4CXX_DEBUG(gLogger, "No table defined => use index");
				lYAxisRange.setMin(std::min(0.,lYAxisRange.getMin()));
				lYAxisRange.setMax(std::max((double)parameterDimension,lYAxisRange.getMax()));
			}
			else
			{
				AMDA::Info::t_TableBound crtBound;
e7ea756d   Benjamin Renard   Implements tables...
293
				if (!tableSPtr->isVariable(&_parameterManager))
fbe3c2bb   Benjamin Renard   First commit
294
				{
f2db3c16   Benjamin Renard   Support variable ...
295
296
297
					for (int i = 0; i < parameterDimension; ++i)
					{
						crtBound = tableSPtr->getBound(&_parameterManager, i);
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
298
299
300
301
302
303
304
305
306
307
						if (!std::isnan(crtBound.min))
						{
							if (!((lYAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.min <= 0)))
								lYAxisRange.setMin(std::min(crtBound.min,lYAxisRange.getMin()));
						}
						if (!std::isnan(crtBound.max))
						{
							if (!((lYAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.max <= 0)))
								lYAxisRange.setMax(std::max(crtBound.max,lYAxisRange.getMax()));
						}
f2db3c16   Benjamin Renard   Support variable ...
308
309
310
311
312
313
314
315
316
317
318
319
320
321
					}
				}
				else
				{
					//Variable table => we need to loop under all records to find axis min & max values
					for (int i = 0; i < (*_pParameterValues)[spectroPropertiesPtr->getParamId()].getSize(); ++i)
					{
						std::map<std::string, std::vector<double>> paramsTableData;
						for (std::map<std::string, std::string>::iterator it = spectroPropertiesPtr->getTableParams().begin(); it != spectroPropertiesPtr->getTableParams().end(); ++it)
						{
							ParameterData& data = (*_pParameterValues)[it->second];
							std::vector<double> paramTableValues;
							for (int j = 0; j < data.getDim1Size(); ++j)
							{
91c8f6bb   Benjamin Renard   Fix a buffer over...
322
323
324
325
								if (i < data.getSize()) {
									double* values = data.getValues(AMDA::Common::ParameterIndexComponent(j), i);
									paramTableValues.push_back((*values));
								}
f2db3c16   Benjamin Renard   Support variable ...
326
327
328
329
330
331
							}
							paramsTableData[it->first] = paramTableValues;
						}
						for (int j = 0; j < parameterDimension; ++j)
						{
							crtBound = tableSPtr->getBound(&_parameterManager, j, &paramsTableData);
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
332
333
334
335
336
337
338
339
340
341
							if (!std::isnan(crtBound.min))
							{
								if (!((lYAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.min <= 0)))
									lYAxisRange.setMin(std::min(crtBound.min,lYAxisRange.getMin()));
							}
							if (!std::isnan(crtBound.max))
							{
								if (!((lYAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.max <= 0)))
									lYAxisRange.setMax(std::max(crtBound.max,lYAxisRange.getMax()));
							}
f2db3c16   Benjamin Renard   Support variable ...
342
343
						}
					}
fbe3c2bb   Benjamin Renard   First commit
344
				}
fbe3c2bb   Benjamin Renard   First commit
345
346
347
348
349
			}
		}

		//do not extend the axis
		lYAxisRange._extend = false;
faf4d845   Benjamin Renard   Add common functi...
350
351
352
	
		fixRange(lYAxisRange, lYAxis->_scale == Axis::Scale::LOGARITHMIC);
	
fbe3c2bb   Benjamin Renard   First commit
353
354
355
356
357
358
359
360
		lYAxis->setRange(lYAxisRange);

		LOG4CXX_DEBUG(gLogger, "Y axis range : min = " << lYAxisRange.getMin() << ", max = " << lYAxisRange.getMax());

		Range lParamRange = lZAxis->Axis::getRange();
		if (isnan(lParamRange.getMin()) && isnan(lParamRange.getMax()))
		{
			//auto range
fbe3c2bb   Benjamin Renard   First commit
361
362
			for(auto index : spectroPropertiesPtr->getIndexes()) {
				//compute global range for all indexes
c6a67968   Benjamin Renard   Fix some violatio...
363
				double minVal, maxVal;
fbe3c2bb   Benjamin Renard   First commit
364
365
366
367
368
				if (lZAxis->_scale == Axis::Scale::LOGARITHMIC)
					minVal = (*_pParameterValues)[spectroPropertiesPtr->getParamId()].getMinStrictPos(index);
				else
					minVal = (*_pParameterValues)[spectroPropertiesPtr->getParamId()].getMin(index);
				maxVal = (*_pParameterValues)[spectroPropertiesPtr->getParamId()].getMax(index);
eaee4062   Elena.Budnik   bug z-axis log
369
				if (!isnan(minVal))
f2db3c16   Benjamin Renard   Support variable ...
370
					lParamRange.setMin(std::min(minVal,lParamRange.getMin()));
d9117537   Benjamin Renard   Fix bug with Zaxi...
371
372
				//else
				//	lParamRange.setMin(0);
f2db3c16   Benjamin Renard   Support variable ...
373
374
				if (!isnan(maxVal))
					lParamRange.setMax(std::max(maxVal,lParamRange.getMax()));
d9117537   Benjamin Renard   Fix bug with Zaxi...
375
376
				//else
				//	lParamRange.setMax(10);
fbe3c2bb   Benjamin Renard   First commit
377
			}
d9117537   Benjamin Renard   Fix bug with Zaxi...
378
379
380
381
			if (isnan(lParamRange.getMin()))
				lParamRange.setMin(0);
			if (isnan(lParamRange.getMax()))
				lParamRange.setMax(10);
fbe3c2bb   Benjamin Renard   First commit
382
383
384
385
		}
		else
			lParamRange._extend = false;

fbe3c2bb   Benjamin Renard   First commit
386
		//set z axis range
faf4d845   Benjamin Renard   Add common functi...
387
		fixRange(lParamRange, lZAxis->_scale == Axis::Scale::LOGARITHMIC);
fbe3c2bb   Benjamin Renard   First commit
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
		LOG4CXX_DEBUG(gLogger, "ZAxis range : ZMin = " << lParamRange.getMin() << ", ZMax = " << lParamRange.getMax());
		lZAxis->setRange(lParamRange);
	}
}

/**
 * @brief Identify if other side of the plot area need to be drawn or not.
 * @note A plot area side need to be drawn when there is no axis associated to it.
 */
std::string TimePlot::drawOppositeSide(boost::shared_ptr<Axis> pAxis){
	if( pAxis.get() == getTimeAxis() && getTimeAxis()->isOnlyTickmarks()){
		return "";
	}
	else{
		return PanelPlotOutput::drawOppositeSide(pAxis);
	}

}

void TimePlot::drawXAxis(boost::shared_ptr<Axis> pXAxis, PlWindow& pPlWindow, Bounds& pPlotAreaSize, TickConf& pTickConf){
	LOG4CXX_DEBUG(gLogger, "Drawing X axis ");
	// draw main axis...
	PanelPlotOutput::drawXAxis(pXAxis,pPlWindow, pPlotAreaSize, pTickConf);
	// delegate to decorator any extra drawing stuff it needs to perform...
	getTimeAxisDecorator()->draw(this,getTimeAxis(), _pls);

}

// Convert an X axis string value to a double X value assuming it's a DD_Time value
double TimePlot::convertXAxisValue(const std::string &value) {
	return DD_Time2Double (value.c_str());
}

e7b3586a   Benjamin Renard   Fix fill between ...
421
ConstantLine * TimePlot::getConstantLineFromId (int serieId, int constantId, boost::shared_ptr<Axis>& yAxis) {
fbe3c2bb   Benjamin Renard   First commit
422
423
424
425
426
427
428
429

	SeriesProperties serieProperties;
	for (auto parameter : _parameterAxesList) {
		// Get series index
		for (auto lIndex : parameter.getYSerieIndexList(_pParameterValues)) {
			serieProperties = parameter.getYSeriePropertiesAt(lIndex);

			if ((serieProperties.getId() == serieId) &&(serieProperties.hasYAxis() == true)) {
e7b3586a   Benjamin Renard   Fix fill between ...
430
				yAxis = _panel->getAxis(serieProperties.getYAxisId());
fbe3c2bb   Benjamin Renard   First commit
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
				for (auto constantLine : yAxis->_constantLines) {
					if (constantLine->getId() == constantId) {
						return constantLine.get();
					}
				}
			}
		}
	}

	// ConstantId not found, we throw an exception
	std::stringstream lError;
	lError << "TimePlot::getConstantLineFromId : Unable to find constantId='" << constantId << "' for serieId='" << serieId << "'";
	BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
	return NULL;
}

bool TimePlot::getSeriePropertiesById(int serieId, SeriesProperties &rSerieProperties)
{
	for (auto parameter : _parameterAxesList) {
		for (auto lIndex : parameter.getYSerieIndexList(_pParameterValues)) {
			SeriesProperties& crtSerieProperties = parameter.getYSeriePropertiesAt(lIndex);

			if (crtSerieProperties.getId() == serieId) {
				rSerieProperties = crtSerieProperties;
				return true;
			}
		}
	}

	return false;
}



void TimePlot::mergeAndSortTime (	double *values1Time, int values1Nb,
									double *values2Time, int values2Nb,
									std::vector<double> &valuesTime) {

	// Build 2 vectors
	std::vector<double> v1(values1Time, values1Time + values1Nb);
	std::vector<double> v2(values2Time, values2Time + values2Nb);

	// Populate resulting vector
	valuesTime.insert( valuesTime.end(), v1.begin(), v1.end() );
	valuesTime.insert( valuesTime.end(), v2.begin(), v2.end() );

	// Sort and remove duplicates for the resulting vector
	sort (valuesTime.begin(), valuesTime.end());
	valuesTime.erase( unique( valuesTime.begin(), valuesTime.end() ), valuesTime.end() );
}

double TimePlot::getInterpolatedValue (double *values, double *valuesTime, int valuesNb, double atTime) {

	// get index of first time after given time_
	if(isnan(atTime)){
		return nan("");
	}

	double *pTime = valuesTime;

	for(int t=0; t<valuesNb; t++) {
		// No interpolation required
		if (*pTime == atTime){
			return values [t];
		}
		// Interpolation required
		if (*pTime >= atTime){
			if (t == 0) {
				return nan("");
			}
			else {
				double v1 = values [t-1];
				double v2 = values [t];
				double d1 = valuesTime [t-1];
				double d2 = valuesTime [t];
				// Return a linear interpolation of the value for the index
				return (v1 + (v2-v1) * (atTime-d1)/(d2-d1));
			}
		}
		pTime++;
	}
	return nan("");
}

bool TimePlot::intersect (	double xi, double y1i, double y2i,
							double xj, double y1j, double y2j,
							double *xInter) {

	// Simply checks if segment are above or below the other
	if ( ((y1i >= y2i) && (y1j >= y2j)) ||( (y1i <= y2i) && (y1j <= y2j)) ) {
		return false;
	}

	// Computes intersection point :
    // Compute a and b (y = a * x + b) for each segment
    double a1 = (y1j - y1i) / (xj - xi);
    double b1 = y1i - a1 * xi ;

    double a2 = (y2j - y2i) / (xj - xi);
    double b2 = y2i - a2 * xi ;

    // Compute intersection point (a1*x+b1 = a2*x+b2)
    *xInter = (b2-b1) / (a1-a2);

    return true;
}

void TimePlot::addIntersectionTime (double *values1, double *values1Time, int values1Nb,
									double *values2, double *values2Time, int values2Nb,
									std::vector<double> &valuesTime) {

	if (valuesTime.empty() == true)
		return;

	// For each time segment compute intersection if it exists
	std::vector<double> intersectionTime;

	double xi = valuesTime [0];
	double y1i = getInterpolatedValue (values1, values1Time, values1Nb, xi);
	double y2i = getInterpolatedValue (values2, values2Time, values2Nb, xi);

fbe3c2bb   Benjamin Renard   First commit
552
	for (size_t t=1; t<valuesTime.size(); t++) {
c6a67968   Benjamin Renard   Fix some violatio...
553
554
555
		double xj = valuesTime [t];
		double y1j = getInterpolatedValue (values1, values1Time, values1Nb, xj);
		double y2j = getInterpolatedValue (values2, values2Time, values2Nb, xj);
fbe3c2bb   Benjamin Renard   First commit
556

c6a67968   Benjamin Renard   Fix some violatio...
557
		double xInter;
fbe3c2bb   Benjamin Renard   First commit
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
		if (intersect (xi, y1i, y2i, xj, y1j, y2j, &xInter) == true) {
			intersectionTime.push_back(xInter);
		}

		// Next vector element
		xi = xj;
		y1i = y1j;
		y2i = y2j;
	}

	// Add intersections informations to the resulting values
	valuesTime.insert( valuesTime.end(), intersectionTime.begin(), intersectionTime.end() );

	// Sort and remove duplicates for the resulting vector
	sort (valuesTime.begin(), valuesTime.end());
	valuesTime.erase( unique( valuesTime.begin(), valuesTime.end() ), valuesTime.end() );
}

void TimePlot::drawFillArea (	double *values1, double *values1Time, int values1Nb,
								double *values2, double *values2Time, int values2Nb,
								std::vector<double> &valuesTime,
								bool colorGreaterSpecified, Color& colorGreater,
								bool colorLessSpecified, Color& colorLess,
								SeriesProperties &rSeriesProperties) {
	// Get X and Y axis.
	boost::shared_ptr<Axis> lXAxis(_panel->getAxis(rSeriesProperties.getXAxisId()));
	boost::shared_ptr<Axis> lYAxis(_panel->getAxis(rSeriesProperties.getYAxisId()));

	Range lXRange = getXAxisRange (rSeriesProperties, lXAxis);
	Range lYRange = getYAxisRange (rSeriesProperties, lYAxis);

	_pls->wind(lXRange.getMin(), lXRange.getMax(), lYRange.getMin(), lYRange.getMax());

	PLFLT x[4], y[4], deltai, deltaj;
	Color curColor;
	Color lInitialColor = changeColor(_pls, colorGreater, _panel->_page->_mode);

	for ( size_t i = 0; i < (valuesTime.size() - 1); i++ )
	{
		x[0] = valuesTime[i];
		x[1] = x[0];
		x[2] = valuesTime[i+1];
		x[3] = x[2];

		y[0] = getInterpolatedValue (values1, values1Time, values1Nb, valuesTime[i]);
		y[1] = getInterpolatedValue (values2, values2Time, values2Nb, valuesTime[i]);
		y[2] = getInterpolatedValue (values2, values2Time, values2Nb, valuesTime[i+1]);
		y[3] = getInterpolatedValue (values1, values1Time, values1Nb, valuesTime[i+1]);

		deltai = y[1] - y[0];
		deltaj = y[2] - y[3];

		// Set fill color depending on segment position
		if ( ((deltai > 0) && (fabs(deltai) > fabs(deltaj))) ||
			 ((deltaj > 0) && (fabs(deltaj) > fabs(deltai))) ) {
			// s1 above s2
			if (colorGreaterSpecified == true) {
				curColor = colorGreater;
			} else {
				continue;
			}
		}
		else if ( 	((deltai < 0) && (fabs(deltai) > fabs(deltaj))) ||
					((deltaj < 0) && (fabs(deltaj) > fabs(deltai))) ) {
			// s1 under s2
			if (colorLessSpecified == true) {
				curColor = colorLess;
			} else {
				continue;
			}
		} else {
			// Colinear segments, no fill required
			continue;
		}

		// Fill polygon using the given color
		changeColor(_pls, curColor, _panel->_page->_mode);
		_pls->fill(4, x, y);
    }

	// Restore color.
	restoreColor(_pls, lInitialColor, _panel->_page->_mode);
}

void TimePlot::drawFills(double startDate, double stopDate) {
	PanelPlotOutput::drawFills(startDate, stopDate);
	LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills");

	SeriesProperties rSeriesProperties;

	double *values1 	= NULL;
	double *values1Time = NULL;
	int 	values1Nb	= 0;

	double *values2 	= NULL;
	double *values2Time = NULL;
	int 	values2Nb 	= 0;

	std::vector<double> valuesTime;

	// Drawing Fill Area located between Serie and Constant (horizontal) line
	for (auto fillSerieConstant : _panel->_fillSerieConstants) {

		// Retrieve serie parameter values for serieId
		if (!getSeriePropertiesById(fillSerieConstant->getSerieId(), rSeriesProperties))
		{
			LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills - Cannot find serie id " << fillSerieConstant->getSerieId());
			continue;
		}

		//get computed values for this serie and interval
		if (!getComputedValuesFromSerieAndInterval(startDate, stopDate, rSeriesProperties,
				rSeriesProperties.getIndex(), &values1, &values1Time, values1Nb))
		{
			LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills - Cannot get computed values for serie id " << fillSerieConstant->getSerieId());
			continue;
		}

		// Retrieve constantLine informations for these fill
e7b3586a   Benjamin Renard   Fix fill between ...
677
678
679
680
681
		boost::shared_ptr<Axis> yAxis;
		ConstantLine *constantLine = getConstantLineFromId (	fillSerieConstant->getSerieId(),													fillSerieConstant->getConstantId(), yAxis);

		// Retrieve axis attachment

fbe3c2bb   Benjamin Renard   First commit
682
683
684
685
686
687
688
689

		// Build values2 values2Time array with 2 values : yConst & (first time, last time) for serie
		values2 = new double [2];
		values2Time = new double [2];

		values2 [0] = convertYAxisValue (constantLine->getValue());
		values2 [1] = convertYAxisValue (constantLine->getValue());

e7b3586a   Benjamin Renard   Fix fill between ...
690
691
692
693
694
		if (yAxis->_scale == Axis::Scale::LOGARITHMIC) {
                        values2[0] = log10 (values2[0]);
                        values2[1] = log10 (values2[1]);
                }

fbe3c2bb   Benjamin Renard   First commit
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
		values2Time [0] = values1Time [0];
		values2Time [1] = values1Time [values1Nb-1];

		values2Nb = 2;

		// Build time vector by merging existing times and computing intersections, and draw it !
		mergeAndSortTime (values1Time, values1Nb, values2Time, values2Nb, valuesTime);
		addIntersectionTime (values1, values1Time, values1Nb, values2, values2Time, values2Nb, valuesTime);
		drawFillArea (values1, values1Time, values1Nb, values2, values2Time, values2Nb, valuesTime,
						fillSerieConstant->isColorGreaterSpecified(), fillSerieConstant->getColorGreater(),
						fillSerieConstant->isColorLessSpecified(), fillSerieConstant->getColorLess(),
						rSeriesProperties);

		delete [] values1;
		delete [] values2;
		delete [] values2Time;
	}

	// Drawing Fill Area located between first and second Serie
	for (auto fillSerieSerie : _panel->_fillSerieSeries) {
		// Retrieve serie parameter values for firstSerieId
		if (!getSeriePropertiesById(fillSerieSerie->getFirstSerieId(), rSeriesProperties))
		{
			LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills - Cannot find serie id " << fillSerieSerie->getFirstSerieId());
			continue;
		}

		//get computed values for this serie and interval
		if (!getComputedValuesFromSerieAndInterval(startDate, stopDate, rSeriesProperties,
				rSeriesProperties.getIndex(), &values1, &values1Time, values1Nb))
		{
			LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills - Cannot get computed values for serie id " << fillSerieSerie->getFirstSerieId());
			continue;
		}

		// Retrieve serie parameter values for secondSerieId
		if (!getSeriePropertiesById(fillSerieSerie->getSecondSerieId(), rSeriesProperties))
		{
			LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills - Cannot find serie id " << fillSerieSerie->getSecondSerieId());
			continue;
		}

		//get computed values for this serie and interval
		if (!getComputedValuesFromSerieAndInterval(startDate, stopDate, rSeriesProperties,
				rSeriesProperties.getIndex(), &values2, &values2Time, values2Nb))
		{
			LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills - Cannot get computed values for serie id " << fillSerieSerie->getSecondSerieId());
			continue;
		}

		// Build time vector by merging existing times and computing intersections, and draw it !
		mergeAndSortTime (values1Time, values1Nb, values2Time, values2Nb, valuesTime);
		addIntersectionTime (values1, values1Time, values1Nb, values2, values2Time, values2Nb, valuesTime);
		drawFillArea (values1, values1Time, values1Nb, values2, values2Time, values2Nb, valuesTime,
						fillSerieSerie->isColorGreaterSpecified(), fillSerieSerie->getColorGreater(),
						fillSerieSerie->isColorLessSpecified(), fillSerieSerie->getColorLess(),
						rSeriesProperties);

		delete [] values1;
		delete [] values2;
	}
}

void TimePlot::drawSeries(double startDate, double stopDate, int intervalIndex,
		std::string pParamId, SeriesProperties& pSeries,
		AMDA::Common::ParameterIndexComponent pParamIndex,
		ParameterAxes& param, bool moreThanOneSerieForAxis) {
	LOG4CXX_DEBUG(gLogger, "TimePlot::drawSeries - Drawing serie for parameter "<<pParamId<<"["<<pParamIndex.getDim1Index()<<","<<pParamIndex.getDim2Index()<<"]");
	// This will configure window, draw axes (if needed) and legend of axes.
	PanelPlotOutput::drawSeries(startDate, stopDate, intervalIndex, pParamId, pSeries, pParamIndex, param, moreThanOneSerieForAxis);

	if(!pSeries.hasYAxis())
		return;

	// Y axis may be missing (tickplot for example)
	std::string	yAxisId = pSeries.getYAxisId();
	if (yAxisId.empty())
		return;

	//get computed values
	double *computedValues	= NULL;
	double *timeValues      = NULL;
	int    nbValues;
	if (!getComputedValuesFromSerieAndInterval(startDate, stopDate, pSeries, pParamIndex,
				&computedValues, &timeValues, nbValues))
	{
		LOG4CXX_DEBUG(gLogger, "TimePlot::drawSeries - Cannot get computed values for serie");
		return;
	}

	double *coloredComputedValues = NULL;
	double *coloredTimeValues     = NULL;
	//get colored value if needed
	if (!pSeries.getColorParamId().empty() && (_panel->getColorAxis() != nullptr))
	{
		int nbColoredValues;
		if (!getColoredComputedValuesFromSerieAndInterval(startDate, stopDate, pSeries,
				&coloredComputedValues, &coloredTimeValues, nbColoredValues))
		{
			LOG4CXX_DEBUG(gLogger, "TimePlot::drawSeries - Cannot get computed values for colored parameter");
			return;
		}
	}

	PlWindow lPlWindow = PlWindow(getTimeAxis()->getRange().getMin(), getTimeAxis()->getRange().getMax(),
			_panel->getAxis(yAxisId)->getRange().getMin(), _panel->getAxis(yAxisId)->getRange().getMax());

	_pls->wind(std::get<0>(lPlWindow), std::get<1>(lPlWindow),
				std::get<2>(lPlWindow), std::get<3>(lPlWindow));

	//draw serie
	Color lineColor   = getSerieLineColor(pSeries, moreThanOneSerieForAxis);
	Color symbolColor = getSerieSymbolColor(pSeries, lineColor);

	drawSymbols(
		pSeries.getSymbolProperties().getType(),
		pSeries.getSymbolProperties().getSize(), 1.,
		symbolColor,
		nbValues, timeValues, computedValues, coloredComputedValues);

	drawLines(
		pSeries.getLineProperties().getType(),
		pSeries.getLineProperties().getStyle(),
		pSeries.getLineProperties().getWidth(),
		lineColor,
		nbValues, timeValues, computedValues, coloredComputedValues);

	//add serie to param legend
	addSerieToParamsLegend(pSeries,pParamIndex,param._originalParamId, lineColor,symbolColor,startDate,stopDate,intervalIndex);

	//draw interval
	drawSerieInterval(pSeries,timeValues,computedValues,timeValues,nbValues,intervalIndex);

	delete[] computedValues;
	if (coloredComputedValues != NULL)
		delete[] coloredComputedValues;

	// Draw min/max error bars if required
	ErrorBarProperties &errorBarProp = pSeries.getErrorBarProperties();
	if (errorBarProp.getErrorMinMax() != nullptr)
	{
		//get computed min/max error data
		double *minComputedValues = NULL;
		double *minTimeValues     = NULL;
		int nbMinValues;

		double *maxComputedValues = NULL;
		double *maxTimeValues     = NULL;
		int nbMaxValues;

		if (!getErrorComputedValuesFromSerieAndInterval(startDate, stopDate, pSeries,
					&minComputedValues, &minTimeValues, nbMinValues,
					&maxComputedValues, &maxTimeValues, nbMaxValues))
		{
			LOG4CXX_DEBUG(gLogger, "TimePlot::drawSeries - Cannot get min/max error values for serie");
			return;
		}

		LineProperties &lineProps = pSeries.getErrorBarProperties().getLineProperties();
		drawYErrors(	lineProps.getType(),
						lineProps.getStyle(),
						lineProps.getWidth(),
						lineProps.getColor(),
						nbMinValues, minTimeValues,
						minComputedValues, maxComputedValues);

		// Free values
		delete [] minComputedValues;
		delete [] maxComputedValues;
	}
}

void TimePlot::drawSpectro(double startDate, double stopDate, std::string pParamId, SpectroProperties& pSpectro)
{
	LOG4CXX_DEBUG(gLogger, "TimePlot::drawSpectro Drawing spectro for parameter "<<pParamId);
	// This will configure window, draw axes (if needed) and legend of axes.
	PanelPlotOutput::drawSpectro(startDate, stopDate, pParamId, pSpectro);

	//get parameter data and info
	ParameterSPtr p = _parameterManager.getParameter(pParamId);

	ParameterData& data = (*_pParameterValues)[pSpectro.getParamId()];

	boost::shared_ptr<AMDA::Info::ParamTable> tableSPtr;
	AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(p->getInfoId());
	if (paramInfo != nullptr)
		tableSPtr = paramInfo->getTable(pSpectro.getRelatedDim());

	//get axis
	boost::shared_ptr<Axis> lXAxis = _panel->getAxis(pSpectro.getXAxisId());
	boost::shared_ptr<Axis> lYAxis = _panel->getAxis(pSpectro.getYAxisId());
	boost::shared_ptr<ColorAxis> lZAxis = _panel->getColorAxis();

	//Check dimensions
	if (pSpectro.getRelatedDim() == 0)
	{
		if (data.getDim1Size() + 1 <= 0)
		{
			LOG4CXX_INFO(gLogger, "TimePlot::drawSpectro - No data to plot");
			return;
		}
	}
	else
	{
		if (data.getDim2Size() + 1 <= 0)
		{
			LOG4CXX_INFO(gLogger, "TimePlot::drawSpectro - No data to plot");
			return;
		}
	}

	MatrixGrid matrixGrid;
f2db3c16   Benjamin Renard   Support variable ...
907

e7ea756d   Benjamin Renard   Implements tables...
908
	if ((tableSPtr == nullptr) || !tableSPtr->isVariable(&_parameterManager))
fbe3c2bb   Benjamin Renard   First commit
909
	{
8c71f50a   Benjamin Renard   Improve execution...
910
911
912
		int startIndex;
		int nbValues;
		data.getIntervalBounds(startDate, stopDate, startIndex, nbValues);
f2db3c16   Benjamin Renard   Support variable ...
913
		for (auto index : pSpectro.getIndexes())
fbe3c2bb   Benjamin Renard   First commit
914
		{
f2db3c16   Benjamin Renard   Support variable ...
915
916
917
918
919
920
921
922
923
			GridPart part;
			if (tableSPtr == nullptr)
			{
				if (pSpectro.getRelatedDim() == 0)
					part.y[0] = index.getDim1Index();
				else
					part.y[0] = index.getDim2Index();
				part.y[1] = part.y[0]+1;
			}
fbe3c2bb   Benjamin Renard   First commit
924
			else
fbe3c2bb   Benjamin Renard   First commit
925
			{
f2db3c16   Benjamin Renard   Support variable ...
926
927
928
929
930
				AMDA::Info::t_TableBound crtBound;
				if (pSpectro.getRelatedDim() == 0)
					crtBound = tableSPtr->getBound(&_parameterManager, index.getDim1Index());
				else
					crtBound = tableSPtr->getBound(&_parameterManager, index.getDim2Index());
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
931
932
				if (std::isnan(crtBound.min) || std::isnan(crtBound.max))
					continue;
f2db3c16   Benjamin Renard   Support variable ...
933
934
935
936
				part.y[0] = crtBound.min;
				part.y[1] = crtBound.max;
				if (lYAxis->_scale == Axis::Scale::LOGARITHMIC)
				{
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
937
938
939
940
					if ((crtBound.min <= 0) || (crtBound.max <= 0))
						continue;
					part.y[0] = log10(part.y[0]);
					part.y[1] = log10(part.y[1]);
f2db3c16   Benjamin Renard   Support variable ...
941
				}
fbe3c2bb   Benjamin Renard   First commit
942
			}
fbe3c2bb   Benjamin Renard   First commit
943

8c71f50a   Benjamin Renard   Improve execution...
944
			for (int i = 0; i < nbValues - 1; ++i)
f2db3c16   Benjamin Renard   Support variable ...
945
			{
8c71f50a   Benjamin Renard   Improve execution...
946
947
				part.x[0] = data.getTimes()[startIndex+i];
				part.x[1] = data.getTimes()[startIndex+i+1];
f2db3c16   Benjamin Renard   Support variable ...
948

8c71f50a   Benjamin Renard   Improve execution...
949
				part.value = data.getValues(index, startIndex)[i];
f2db3c16   Benjamin Renard   Support variable ...
950
951
952
953
954
955
956
957
				matrixGrid.push_back(part);
			}
		}
	}
	else
	{
		//Variable table
		AMDA::Info::t_TableBound crtBound;
8c71f50a   Benjamin Renard   Improve execution...
958
959
960
961
962
963
		//for (auto index : pSpectro.getIndexes())
		//{
		int startIndex;
		int nbValues;
		data.getIntervalBounds(startDate, stopDate, startIndex, nbValues);
		for (int i = 0; i < nbValues - 1; ++i)
fbe3c2bb   Benjamin Renard   First commit
964
		{
8c71f50a   Benjamin Renard   Improve execution...
965
966
967
			GridPart part;
			part.x[0] = data.getTimes()[startIndex+i];
			part.x[1] = data.getTimes()[startIndex+i+1];
f2db3c16   Benjamin Renard   Support variable ...
968

8c71f50a   Benjamin Renard   Improve execution...
969
970
971
972
973
974
			std::map<std::string, std::vector<double>> paramsTableData;
			for (std::map<std::string, std::string>::iterator it = pSpectro.getTableParams().begin(); it != pSpectro.getTableParams().end(); ++it)
			{
				ParameterData& tableData = (*_pParameterValues)[it->second];
				std::vector<double> paramTableValues;
				for (int j = 0; j < tableData.getDim1Size(); ++j)
f2db3c16   Benjamin Renard   Support variable ...
975
				{
8c71f50a   Benjamin Renard   Improve execution...
976
977
					double* values = tableData.getValues(AMDA::Common::ParameterIndexComponent(j,-1), i);
					paramTableValues.push_back((*values));
f2db3c16   Benjamin Renard   Support variable ...
978
				}
8c71f50a   Benjamin Renard   Improve execution...
979
980
981
982
983
984
				paramsTableData[it->first] = paramTableValues;
			}

			for (auto index : pSpectro.getIndexes())
			{
				part.value = data.getValues(index,startIndex)[i];
f2db3c16   Benjamin Renard   Support variable ...
985
986
987
988
989
990
991
992

				if (pSpectro.getRelatedDim() == 0)
					crtBound = tableSPtr->getBound(&_parameterManager, index.getDim1Index(), &paramsTableData);
				else
					crtBound = tableSPtr->getBound(&_parameterManager, index.getDim2Index(), &paramsTableData);

				part.y[0] = crtBound.min;
				part.y[1] = crtBound.max;
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
993
994

				if (!std::isnan(crtBound.min) && !std::isnan(crtBound.max))
f2db3c16   Benjamin Renard   Support variable ...
995
				{
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
					if (lYAxis->_scale == Axis::Scale::LOGARITHMIC)
					{
						if ((crtBound.min > 0) && (crtBound.max > 0))
						{
							part.y[0] = log10(part.y[0]);
							part.y[1] = log10(part.y[1]);
							matrixGrid.push_back(part);
						}
					}
					else
						matrixGrid.push_back(part);
f2db3c16   Benjamin Renard   Support variable ...
1007
				}
f2db3c16   Benjamin Renard   Support variable ...
1008
			}
fbe3c2bb   Benjamin Renard   First commit
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
		}
	}

	//get specific colors for min / max values
	Color minValColor = lZAxis->getMinValColor();
	Color maxValColor = lZAxis->getMaxValColor();

	//draw spectro
	drawMatrix(matrixGrid, pSpectro.getMin(), pSpectro.getMax(),
			minValColor, maxValColor, lZAxis->_color._colorMapIndex);
}

/**
 * @brief Draw further information (for instance start date).
 */
void TimePlot::drawStartDate(TimeAxis* pXAxis, double startTime, double stopTime) {
	LOG4CXX_DEBUG(gLogger, "Drawing start date.");

08ec1dde   Benjamin Renard   Add propertie _us...
1027
	if (pXAxis->_showTickMark == false || !pXAxis->_drawn || !pXAxis->_visible)
fbe3c2bb   Benjamin Renard   First commit
1028
1029
1030
1031
1032
		return;

	// use panel font to draw start date.

	// If font of legend is not defined, use panel font.
f6eaec4e   Benjamin Renard   Optimize plot ele...
1033
	Font font(_panel->getFont());
fbe3c2bb   Benjamin Renard   First commit
1034

f6eaec4e   Benjamin Renard   Optimize plot ele...
1035
1036
	// PlPlotUtil::setPlFont(font);
	//CharSize charsize = PlPlotUtil::getCharacterSizeInPlPage(_panel->_page);
fbe3c2bb   Benjamin Renard   First commit
1037
	// panel bounds.
f6eaec4e   Benjamin Renard   Optimize plot ele...
1038
	Bounds lPanelBounds(_panel->getBoundsInPlPage());
12fd871c   Benjamin Renard   Fix start date po...
1039

fbe3c2bb   Benjamin Renard   First commit
1040
1041
1042
1043
	// plotting area bounds (i.e. current viewport dimensions)
	PLFLT lXMin, lXMax, lYMin, lYMax;
	_pls->gvpd(lXMin, lXMax, lYMin, lYMax);

fbe3c2bb   Benjamin Renard   First commit
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
	// position of reference point of string along the bottom edge
	// expressed as a fraction of the length of the bottom edge
	// set it at the very beginning of edge and use justification to handle
	// reverse axis.
	float lPosition = 0.0;
	// display it one line above the main panel bottom border :
	float disp = -1;

	long int lTime = static_cast<long int>(startTime);
	tm * lTimeTm = gmtime(&lTime);
	char lTimeChr[80];

	// Format date.
	strftime(lTimeChr, 80,
			getPlStartTimeFormat(pXAxis->_timeFormat,
					startTime,
					stopTime).c_str(), lTimeTm);

12fd871c   Benjamin Renard   Fix start date po...
1062
1063
1064
1065
	PLFLT mxmin, mxmax, mymin, mymax;
	plgspa( &mxmin, &mxmax, &mymin, &mymax );
	float x_subpage_per_mm = 1. / ( mxmax - mxmin );

fbe3c2bb   Benjamin Renard   First commit
1066
1067
1068
	LOG4CXX_DEBUG(gLogger, "Start date to draw : " << lTimeChr);

	// Set font
f6eaec4e   Benjamin Renard   Optimize plot ele...
1069
	PlPlotUtil::setPlFont(font);
fbe3c2bb   Benjamin Renard   First commit
1070

12fd871c   Benjamin Renard   Fix start date po...
1071
1072
1073
1074
1075
1076
	PLFLT dateWidthInMm;
	dateWidthInMm = plstrl(lTimeChr);

	// set viewport for start date :
	_pls->vpor(lXMin,lXMax,lPanelBounds._y, lPanelBounds._y+lPanelBounds._height);
	        
fbe3c2bb   Benjamin Renard   First commit
1077
1078
	// Draw start date.
	if (pXAxis->_reverse) {
12fd871c   Benjamin Renard   Fix start date po...
1079
1080
1081
1082
		lPosition = 1.;
		if (dateWidthInMm*x_subpage_per_mm > lPanelBounds._x + lPanelBounds._width - lXMax)
			lPosition = 1. - (dateWidthInMm*x_subpage_per_mm - (lPanelBounds._x + lPanelBounds._width - lXMax)) / (lXMax - lXMin);
		_pls->mtex("b", disp, lPosition , 0., lTimeChr);
fbe3c2bb   Benjamin Renard   First commit
1083
	} else {
12fd871c   Benjamin Renard   Fix start date po...
1084
1085
1086
		lPosition = 0.;
		if (dateWidthInMm*x_subpage_per_mm > lXMin - lPanelBounds._x)
			lPosition = (dateWidthInMm*x_subpage_per_mm - lXMin + lPanelBounds._x) / (lXMax - lXMin);
fbe3c2bb   Benjamin Renard   First commit
1087
1088
1089
1090
1091
1092
		_pls->mtex("b", disp, lPosition, 1., lTimeChr);
	}

	// restore viewport :
	_pls->vpor(lXMin,lXMax,lYMin, lYMax);
}
fbe3c2bb   Benjamin Renard   First commit
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106

const std::string TimePlot::getXAxisId() const {
	// time plot can manage only one x axis.
	// search for its id
	for (auto param : _parameterAxesList)
	{
		//search time axis in color serie if exist
		if (!param.getYSeriePropertiesMap().empty())
			return param.getYSeriePropertiesMap().begin()->second.getXAxisId();
		//search time axis in spectro if exist
		if (param.getSpectroProperties() != nullptr)
			return param.getSpectroProperties()->getXAxisId();
	}

2d40f7de   Benjamin Renard   Fix bug with pane...
1107
	return DefaultPlotConfiguration::TIME_DEFAULT_ID;
fbe3c2bb   Benjamin Renard   First commit
1108
1109
1110
1111
}


} /* namespace plot */