Blame view

src/ParamOutputImpl/Plot/Time/TimePlot.cc 83.5 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
/*
 * TimePlot.cc
 *
 *  Created on: 22 nov. 2013
 *      Author: CS
 */

#include "TimePlot.hh"
fbe3c2bb   Benjamin Renard   First commit
9
#include "AxesNode.hh"
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
10
11
#include "AxisLegendManager.hh"
#include "DefaultTimeAxisDecorator.hh"
fbe3c2bb   Benjamin Renard   First commit
12
#include "ParamInfo.hh"
fbe3c2bb   Benjamin Renard   First commit
13
#include "ParamMgr.hh"
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
14
15
16
17
18
19
20
#include "ParamTable.hh"
#include "Parameter.hh"
#include "ParamsNode.hh"
#include "PlPlotUtil.hh"
#include "PlotLogger.hh"
#include "PlotOutput.hh"
#include "Range.hh"
fbe3c2bb   Benjamin Renard   First commit
21
#include "ShadesTools.hh"
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
22
23
24
#include "TickMarkDecorator.hh"
#include "TimeUtil.hh"
#include <cstddef>
fbe3c2bb   Benjamin Renard   First commit
25
#include <fstream>
2acc7d49   Hacene SI HADJ MOHAND   progress
26
#include <limits>
fbe3c2bb   Benjamin Renard   First commit
27

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
28
29
30
#include <sstream>
#include <string>
#include <vector>
fbe3c2bb   Benjamin Renard   First commit
31
32

#include <boost/format.hpp>
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
33
#include <iostream>
fbe3c2bb   Benjamin Renard   First commit
34
35
36
37

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

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
38
39
namespace plot
{
fbe3c2bb   Benjamin Renard   First commit
40

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
41
	QSASConfig *TimePlot::qsasconfig = NULL;
fbe3c2bb   Benjamin Renard   First commit
42

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
43
44
45
46
	TimePlot::TimePlot(AMDA::Parameters::ParameterManager &manager,
					   boost::shared_ptr<Panel> panel, TimeAxisDecorator *timeAxisDecorator, bool isStandalone) : PanelPlotOutput(manager, panel, isStandalone), _startDateDrawn(false)
	{
		setTimeAxisDecorator(std::shared_ptr<TimeAxisDecorator>(timeAxisDecorator));
fbe3c2bb   Benjamin Renard   First commit
47
	}
fbe3c2bb   Benjamin Renard   First commit
48

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
49
50
51
52
53
54
55
	TimePlot::~TimePlot()
	{
		if (qsasconfig != NULL)
		{
			free(qsasconfig);
			qsasconfig = nullptr;
		}
fbe3c2bb   Benjamin Renard   First commit
56
57
	}

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
58
59
60
61
62
63
64
65
66
67
68
69
70
	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());
	}
fbe3c2bb   Benjamin Renard   First commit
71

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
72
73
74
75
76
77
78
79
80
81
	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();
		}
fbe3c2bb   Benjamin Renard   First commit
82

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
83
84
85
		// Configure Series to draw on axis by checking which color to use and
		// number of series to draw on a same axis.
		configureSeriesAxis();
fbe3c2bb   Benjamin Renard   First commit
86

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
87
		configureAxisLegend();
fbe3c2bb   Benjamin Renard   First commit
88

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
89
		configureSpectroAxis();
793c4351   Hacene SI HADJ MOHAND   creation de class...
90
                
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
91
                                         configureSauvaudAxis();
fbe3c2bb   Benjamin Renard   First commit
92

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
93
		configureParamsLegend(startTime, stopTime, intervalIndex);
fbe3c2bb   Benjamin Renard   First commit
94

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
95
96
97
98
		// configure X axis
		getTimeAxisDecorator()->configure(this, getTimeAxis(), startTime, stopTime, _pParameterValues);
		getTimeAxis()->_used = true;
		_pls->timefmt(getTimeAxisDecorator()->getPlFormat().c_str());
fbe3c2bb   Benjamin Renard   First commit
99

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
100
101
		PanelPlotOutput::preparePlotArea(startTime, stopTime, intervalIndex);
	}
fbe3c2bb   Benjamin Renard   First commit
102

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
103
104
105
	bool TimePlot::draw(double startTime, double stopTime, int intervalIndex,
						bool isFirstInterval, bool isLastInterval)
	{
fbe3c2bb   Benjamin Renard   First commit
106

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
107
		bool dataPloted = PanelPlotOutput::draw(startTime, stopTime, intervalIndex, isFirstInterval, isLastInterval);
fbe3c2bb   Benjamin Renard   First commit
108

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
109
110
111
112
113
114
		// Draw start date
		if (!_startDateDrawn /*&& getTimeAxis()->_used*/)
			drawStartDate(getTimeAxis(), startTime, stopTime);
		_startDateDrawn = true;
		return dataPloted;
	}
fbe3c2bb   Benjamin Renard   First commit
115

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
116
117
118
119
120
121
	void TimePlot::calculatePlotArea(const Bounds &panelBounds_, Bounds &bounds_)
	{
		PanelPlotOutput::calculatePlotArea(panelBounds_, bounds_);
		// decorator is responsible of reserving extra space for what it manage (labels for instance).
		getTimeAxisDecorator()->updatePlotArea(this, getTimeAxis(), panelBounds_, bounds_);
	}
fbe3c2bb   Benjamin Renard   First commit
122

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
123
124
125
126
127
128
	void TimePlot::configureSeriesAxis()
	{
		// map<YAxisId, userRangeDefined>
		std::map<std::string, Range> lAxisRange;
		Range lColorAxeRange;
		SeriesProperties lSeriesProperties;
fbe3c2bb   Benjamin Renard   First commit
129

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
130
		boost::shared_ptr<ColorAxis> lZAxis = _panel->getColorAxis();
fbe3c2bb   Benjamin Renard   First commit
131

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
		// 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 lSeriesProperties : param.getYSeriePropertiesList())
			{
				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()));
				}
fbe3c2bb   Benjamin Renard   First commit
151

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
152
153
154
155
156
157
158
159
160
161
				lYAxis->_used = true;
				Range lYAxisRequestRange = lYAxis->Axis::getRequestedRange();
				Range lRange = lYAxis->Axis::getRange();
				// If range status for this axis is set by the user do not update range "automatically".
				if (isnan(lYAxisRequestRange.getMin()) && isnan(lYAxisRequestRange.getMax()))
				{
					Range lEstimatedRange(lAxisRange[lYAxis->_id]);
					for (auto index : lSeriesProperties.getIndexList(_pParameterValues))
					{
						Range lParamIndexRange(
2fc1f2f8   Benjamin Renard   Full rework for s...
162
163
164
							(*_pParameterValues)[lSeriesProperties.getParamId()].getMin(index),
							(*_pParameterValues)[lSeriesProperties.getParamId()].getMax(index));

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
165
						ErrorBarProperties &errBarProp = lSeriesProperties.getErrorBarProperties();
2fc1f2f8   Benjamin Renard   Full rework for s...
166

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
167
168
169
170
						// Update lParamIndexRange depending on the use of ErrorBars on the plot
						if (errBarProp.getErrorMinMax() != nullptr)
						{
							Range lParamMinRange(
2fc1f2f8   Benjamin Renard   Full rework for s...
171
172
								(*_pParameterValues)[errBarProp.getErrorMinMax()->getUsedParamMin()].getMin(-1),
								(*_pParameterValues)[errBarProp.getErrorMinMax()->getUsedParamMin()].getMax(-1));
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
173
							Range lParamMaxRange(
2fc1f2f8   Benjamin Renard   Full rework for s...
174
175
176
								(*_pParameterValues)[errBarProp.getErrorMinMax()->getUsedParamMax()].getMin(-1),
								(*_pParameterValues)[errBarProp.getErrorMinMax()->getUsedParamMax()].getMax(-1));

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
177
178
179
180
							if (lParamMinRange.getMin() < lParamIndexRange.getMin())
								lParamIndexRange.setMin(lParamMinRange.getMin());
							if (lParamMinRange.getMax() > lParamIndexRange.getMax())
								lParamIndexRange.setMax(lParamMinRange.getMax());
2fc1f2f8   Benjamin Renard   Full rework for s...
181

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
182
183
184
185
186
							if (lParamMaxRange.getMin() < lParamIndexRange.getMin())
								lParamIndexRange.setMin(lParamMaxRange.getMin());
							if (lParamMaxRange.getMax() > lParamIndexRange.getMax())
								lParamIndexRange.setMax(lParamMaxRange.getMax());
						}
fbe3c2bb   Benjamin Renard   First commit
187

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
188
189
190
191
192
193
194
195
196
197
198
199
						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()));
						}
						if (lParamIndexRange.getMin() == lParamIndexRange.getMax())
							lEstimatedRange.setMargin(0.05);
2fc1f2f8   Benjamin Renard   Full rework for s...
200
					}
e062d6ef   Benjamin Renard   Fix axes range wh...
201

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
202
					lEstimatedRange._extend = lRange._extend;
641ba7e4   Hacene SI HADJ MOHAND   ok for time plot
203

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
204
205
					lAxisRange[lYAxis->_id] = lEstimatedRange;
				}
fbe3c2bb   Benjamin Renard   First commit
206

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
207
208
				// Set ZAxis range if a color param is defined for this serie
				if (lZAxis != nullptr)
fbe3c2bb   Benjamin Renard   First commit
209
				{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
					if (!lSeriesProperties.getColorParamId().empty())
					{
						lZAxis->_used = true;
						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()));
							}
							if (lParamIndexRange.getMin() == lParamIndexRange.getMax())
								lEstimatedRange.setMargin(0.05);
							lEstimatedRange._extend = lRange._extend;
							lColorAxeRange = lEstimatedRange;
fbe3c2bb   Benjamin Renard   First commit
242
						}
fbe3c2bb   Benjamin Renard   First commit
243
244
245
246
					}
				}
			}
		}
fbe3c2bb   Benjamin Renard   First commit
247

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
248
249
250
251
252
253
254
255
		// Update range of axis. Done after because, axis range may be processed in several pass (one for each series)
		for (auto lAxis : lAxisRange)
		{
			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
256

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
257
258
259
260
261
		if (lZAxis != nullptr && lColorAxeRange.isSet())
		{
			fixRange(lColorAxeRange, lZAxis->_scale == Axis::Scale::LOGARITHMIC);
			lZAxis->setRange(lColorAxeRange);
		}
5c050d50   Benjamin Renard   Fix another bugs ...
262
	}
fbe3c2bb   Benjamin Renard   First commit
263

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
264
265
266
267
268
	void TimePlot::configureAxisLegend()
	{
		// Y axis
		AxisLegendManager::configureYAxisLegendForSpectro(this);
		AxisLegendManager::configureYAxisLegendForSeries(this);
fbe3c2bb   Benjamin Renard   First commit
269

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
270
271
272
273
		// Z axis
		AxisLegendManager::configureColorAxisLegendForSpectro(this);
		AxisLegendManager::configureColorAxisLegendForSeries(this);
	}
fbe3c2bb   Benjamin Renard   First commit
274

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
275
276
	void TimePlot::configureSpectroAxis()
	{
fbe3c2bb   Benjamin Renard   First commit
277
		// Parse each parameter to define on which axis to draw spectro
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
278
279
280
281
282
		for (auto param : _parameterAxesList)
		{
			std::shared_ptr<SpectroProperties> spectroPropertiesPtr = param.getSpectroProperties();
			if (spectroPropertiesPtr == nullptr)
				continue; //no spectro defined
08ec1dde   Benjamin Renard   Add propertie _us...
283

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
284
285
			if (!spectroPropertiesPtr->hasYAxis())
				continue;
fbe3c2bb   Benjamin Renard   First commit
286

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
287
288
289
290
291
292
293
294
295
			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()));
			}
966af096   Benjamin Renard   Fix 'sum in range...
296

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
297
			lYAxis->_used = true;
fbe3c2bb   Benjamin Renard   First commit
298

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
299
300
301
			//set Z axis range
			boost::shared_ptr<Axis> lZAxis = _panel->getAxis(spectroPropertiesPtr->getZAxisId());
			if (lZAxis.get() == nullptr)
fbe3c2bb   Benjamin Renard   First commit
302
			{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
303
304
305
306
				std::stringstream lError;
				lError << "TimePlot::configureSpectroAxis"
					   << ": Z axis with id '" << spectroPropertiesPtr->getZAxisId() << "' not found.";
				BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
fbe3c2bb   Benjamin Renard   First commit
307
			}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
308
309
310
311
312
313
314

			lZAxis->_used = true;

			ParameterSPtr p = _parameterManager.getParameter(param._originalParamId);
			int parameterDimension;
			if (spectroPropertiesPtr->getRelatedDim() == 0)
				parameterDimension = (*_pParameterValues)[spectroPropertiesPtr->getParamId()].getDim1Size();
fbe3c2bb   Benjamin Renard   First commit
315
			else
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
316
317
318
319
320
				parameterDimension = (*_pParameterValues)[spectroPropertiesPtr->getParamId()].getDim2Size();

			//set Y axis range
			Range lYAxisRequestRange = lYAxis->Axis::getRequestedRange();
			Range lYAxisRange = lYAxis->Axis::getRange();
f3cd5351   Hacene SI HADJ MOHAND   us ok
321
                        
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
322
			AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(p->getInfoId());
f3cd5351   Hacene SI HADJ MOHAND   us ok
323
324
325
                        
                                                            
                                                            
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
326
			if (isnan(lYAxisRequestRange.getMin()) && isnan(lYAxisRequestRange.getMax()))
fbe3c2bb   Benjamin Renard   First commit
327
			{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
328
329
330
				boost::shared_ptr<AMDA::Info::ParamTable> tableSPtr;
				if (paramInfo != nullptr)
					tableSPtr = paramInfo->getTable(spectroPropertiesPtr->getRelatedDim());
f3cd5351   Hacene SI HADJ MOHAND   us ok
331
332
                                                                                 
                                                                                if (tableSPtr == nullptr){
0831b2cf   Hacene SI HADJ MOHAND   axis legend
333
                                                                                    // look for unique embedded table
f3cd5351   Hacene SI HADJ MOHAND   us ok
334
335
                                                                                    boost::shared_ptr<AMDA::Info::ParamTable> linkedTableSPtr;
                                                                                    int counter = 0;
f3cd5351   Hacene SI HADJ MOHAND   us ok
336
337
338
339
340
341
342
343
344
345
346
347
                                                                                    for (auto pInfo :paramInfo->getLinkedParamList()){
                                                                                        linkedTableSPtr = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(pInfo)->getTable(spectroPropertiesPtr->getRelatedDim());
                                                                                        if (linkedTableSPtr == nullptr)
                                                                                            continue;
                                                                                        counter ++;
                                                                                    }
                                                                                    if(linkedTableSPtr == nullptr || counter !=1){
                                                                                        LOG4CXX_DEBUG(gLogger, "table cannot be defined from linked info params");
                                                                                    }else{
                                                                                        tableSPtr = linkedTableSPtr;
                                                                                    }
                                                                                }
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
348
349

				if (tableSPtr == nullptr)
fbe3c2bb   Benjamin Renard   First commit
350
				{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
351
352
353
					LOG4CXX_DEBUG(gLogger, "No table defined => use index");
					lYAxisRange.setMin(std::min(0., lYAxisRange.getMin()));
					lYAxisRange.setMax(std::max((double)parameterDimension, lYAxisRange.getMax()));
f2db3c16   Benjamin Renard   Support variable ...
354
355
356
				}
				else
				{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
357
358
					AMDA::Info::t_TableBound crtBound;
					if (!tableSPtr->isVariable(&_parameterManager))
f2db3c16   Benjamin Renard   Support variable ...
359
					{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
360
						for (int i = 0; i < parameterDimension; ++i)
f2db3c16   Benjamin Renard   Support variable ...
361
						{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
362
							crtBound = tableSPtr->getBound(&_parameterManager, i);
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
363
364
365
							if (!std::isnan(crtBound.min))
							{
								if (!((lYAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.min <= 0)))
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
366
									lYAxisRange.setMin(std::min(crtBound.min, lYAxisRange.getMin()));
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
367
368
369
370
							}
							if (!std::isnan(crtBound.max))
							{
								if (!((lYAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.max <= 0)))
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
									lYAxisRange.setMax(std::max(crtBound.max, lYAxisRange.getMax()));
							}
						}
					}
					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)
								{
									if (i < data.getSize())
									{
										double *values = data.getValues(AMDA::Common::ParameterIndexComponent(j), i);
										paramTableValues.push_back((*values));
									}
								}
								paramsTableData[it->first] = paramTableValues;
							}
							for (int j = 0; j < parameterDimension; ++j)
							{
								crtBound = tableSPtr->getBound(&_parameterManager, j, &paramsTableData);
								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()));
								}
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
408
							}
f2db3c16   Benjamin Renard   Support variable ...
409
410
						}
					}
fbe3c2bb   Benjamin Renard   First commit
411
				}
fbe3c2bb   Benjamin Renard   First commit
412
			}
fbe3c2bb   Benjamin Renard   First commit
413

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
414
415
			//do not extend the axis
			lYAxisRange._extend = false;
fbe3c2bb   Benjamin Renard   First commit
416

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
417
			fixRange(lYAxisRange, lYAxis->_scale == Axis::Scale::LOGARITHMIC);
fbe3c2bb   Benjamin Renard   First commit
418

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
419
420
421
422
423
424
425
426
427
428
429
430
431
			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()))
			{
				std::string normalization = spectroPropertiesPtr->getNormalization();
				if (normalization == "log" || normalization == "linear")
				{
					lParamRange.setMin(0);
					lParamRange.setMax(1);
				}
fbe3c2bb   Benjamin Renard   First commit
432
				else
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
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
				{
					//auto range
					for (auto index : spectroPropertiesPtr->getIndexes())
					{
						//compute global range for all indexes
						double minVal, maxVal;
						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);
						if (!isnan(minVal))
							lParamRange.setMin(std::min(minVal, lParamRange.getMin()));
						//else
						//	lParamRange.setMin(0);
						if (!isnan(maxVal))
							lParamRange.setMax(std::max(maxVal, lParamRange.getMax()));
						//else
						//	lParamRange.setMax(10);
					}
					if (isnan(lParamRange.getMin()))
						lParamRange.setMin(0);
					if (isnan(lParamRange.getMax()))
						lParamRange.setMax(10);
				}
fbe3c2bb   Benjamin Renard   First commit
458
			}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
459
460
			else
				lParamRange._extend = false;
fbe3c2bb   Benjamin Renard   First commit
461

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
462
463
464
465
466
			//set z axis range
			fixRange(lParamRange, lZAxis->_scale == Axis::Scale::LOGARITHMIC);
			LOG4CXX_DEBUG(gLogger, "ZAxis range : ZMin = " << lParamRange.getMin() << ", ZMax = " << lParamRange.getMax());
			lZAxis->setRange(lParamRange);
		}
fbe3c2bb   Benjamin Renard   First commit
467
	}
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
        
        
        	void TimePlot::configureSauvaudAxis()
	{
		// Parse each parameter to define on which axis to draw Sauvaud
		for (auto param : _parameterAxesList)
		{
			std::shared_ptr<SauvaudProperties> sauvaudPropertiesPtr = param.getSauvaudProperties();
			if (sauvaudPropertiesPtr == nullptr)
				continue; //no sauvaud defined

			if (!sauvaudPropertiesPtr->hasYAxis())
				continue;

			LOG4CXX_DEBUG(gLogger, "Sauvaud Y axis is " << sauvaudPropertiesPtr->getYAxisId());
			boost::shared_ptr<Axis> lYAxis = _panel->getAxis(sauvaudPropertiesPtr->getYAxisId());
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
484
                                                            boost::shared_ptr<Axis> lYleftAxis = _panel->getAxis(sauvaudPropertiesPtr->getYleftAxisId());
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
485
486
487
488
489
490
491
492
493
			if (lYAxis.get() == nullptr)
			{
				std::stringstream lError;
				lError << "TimePlot::configureSauvaudAxis"
					   << ": Y axis with id '" << sauvaudPropertiesPtr->getYAxisId() << "' not found.";
				BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
			}

			lYAxis->_used = true;
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
494
495
496
497
498
                        
                                                            if (lYleftAxis.get() == nullptr)
			{
				std::stringstream lError;
				lError << "TimePlot::configureSauvaudAxis"
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
499
					   << ": Y left axis with id '" << sauvaudPropertiesPtr->getYleftAxisId() << "' not found.";
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
500
501
502
503
504
				BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
			}

			lYleftAxis->_used = true;
                                                            
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
505
506
507
508
509
510
511
512
513
514
515
516
517
518

			//set Z axis range
			boost::shared_ptr<Axis> lZAxis = _panel->getAxis(sauvaudPropertiesPtr->getZAxisId());
			if (lZAxis.get() == nullptr)
			{
				std::stringstream lError;
				lError << "TimePlot::configureSauvaudAxis"
					   << ": Z axis with id '" << sauvaudPropertiesPtr->getZAxisId() << "' not found.";
				BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
			}

			lZAxis->_used = true;

			ParameterSPtr p = _parameterManager.getParameter(param._originalParamId);
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
519
520
521
522
523
524
525
526
527
528
529
			int rightParameterDimension;
                                                            int leftParameterDimension;
                                                            int rightDim = sauvaudPropertiesPtr->getRightDim();
                                                            int leftDim   = (rightDim ==0) ? 1 :0;
			if (rightDim == 0){
				rightParameterDimension = (*_pParameterValues)[sauvaudPropertiesPtr->getParamId()].getDim1Size();
                                                                                leftParameterDimension    = (*_pParameterValues)[sauvaudPropertiesPtr->getParamId()].getDim2Size();
			}else{
				rightParameterDimension = (*_pParameterValues)[sauvaudPropertiesPtr->getParamId()].getDim2Size();
                                                                                leftParameterDimension    = (*_pParameterValues)[sauvaudPropertiesPtr->getParamId()].getDim1Size();
                                                            }
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
530
			//set Y axis range
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
531

736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
532
533
                        
			AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(p->getInfoId());
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
534
535
536
537

                                                            // configure right axis 
                                                            Range lYAxisRequestRange = lYAxis->Axis::getRequestedRange();
			Range lYAxisRange = lYAxis->Axis::getRange();
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
538
539
			if (isnan(lYAxisRequestRange.getMin()) && isnan(lYAxisRequestRange.getMax()))
			{
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
540
				boost::shared_ptr<AMDA::Info::ParamTable> rightTableSPtr;
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
541
                                                                               
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
542
				if (paramInfo != nullptr){
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
543
544
                                                                                         
                                                                                         
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
545
                                                                                          rightTableSPtr = paramInfo->getTable(rightDim);
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
546
                                                                                     
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
547
                                                                                                    
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
548
                                                                                }
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
549
				if (rightTableSPtr == nullptr)
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
550
551
552
				{
					LOG4CXX_DEBUG(gLogger, "No table defined => use index");
					lYAxisRange.setMin(std::min(0., lYAxisRange.getMin()));
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
553
					lYAxisRange.setMax(std::max((double)rightParameterDimension, lYAxisRange.getMax()));
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
554
				}
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
555
556
557
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
				else{
                                                                                                    AMDA::Info::t_TableBound crtBound;
					if (!rightTableSPtr->isVariable(&_parameterManager))
					{
						for (int i = 0; i < rightParameterDimension; ++i)
						{
							crtBound = rightTableSPtr->getBound(&_parameterManager, i);
							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()));
							}
						}
					}
					else
					{
						//Variable table => we need to loop under all records to find axis min & max values
						for (int i = 0; i < (*_pParameterValues)[sauvaudPropertiesPtr->getParamId()].getSize(); ++i)
						{
							std::map<std::string, std::vector<double>> paramsTableData;
							for (std::map<std::string, std::string>::iterator it = sauvaudPropertiesPtr->getTableParams().begin(); it != sauvaudPropertiesPtr->getTableParams().end(); ++it)
							{
								ParameterData &data = (*_pParameterValues)[it->second];
								std::vector<double> paramTableValues;
								for (int j = 0; j < data.getDim1Size(); ++j)
								{
									if (i < data.getSize())
									{
										double *values = data.getValues(AMDA::Common::ParameterIndexComponent(j), i);
										paramTableValues.push_back((*values));
									}
								}
								paramsTableData[it->first] = paramTableValues;
							}
							for (int j = 0; j < rightParameterDimension; ++j)
							{
								crtBound = rightTableSPtr->getBound(&_parameterManager, j, &paramsTableData);
								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()));
								}
							}
						}
					}
				}
                                                                                                    
                                                                                }
			
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
614
615
616
617
618
619
620
			//do not extend the axis
			lYAxisRange._extend = false;

			fixRange(lYAxisRange, lYAxis->_scale == Axis::Scale::LOGARITHMIC);

			lYAxis->setRange(lYAxisRange);

b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
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
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
			LOG4CXX_DEBUG(gLogger, "Y right axis range : min = " << lYAxisRange.getMin() << ", max = " << lYAxisRange.getMax());
                        
                                                           // configure left axis 
                                                            Range lYleftAxisRequestRange = lYleftAxis->Axis::getRequestedRange();
			Range lYleftAxisRange = lYleftAxis->Axis::getRange();
			if (isnan(lYleftAxisRequestRange.getMin()) && isnan(lYleftAxisRequestRange.getMax()))
			{
				boost::shared_ptr<AMDA::Info::ParamTable> leftTableSPtr;
                                                                               
				if (paramInfo != nullptr){
                                                                                         
                                                                                         
                                                                                          leftTableSPtr = paramInfo->getTable(leftDim);
                                                                                     
                                                                                                    
                                                                                }
				if (leftTableSPtr == nullptr)
				{
					LOG4CXX_DEBUG(gLogger, "No table defined => use index");
					lYleftAxisRange.setMin(std::min(0., lYleftAxisRange.getMin()));
					lYleftAxisRange.setMax(std::max((double)leftParameterDimension, lYleftAxisRange.getMax()));
				}
				else{
                                                                                                    AMDA::Info::t_TableBound crtBound;
					if (!leftTableSPtr->isVariable(&_parameterManager))
					{
						for (int i = 0; i < leftParameterDimension; ++i)
						{
							crtBound = leftTableSPtr->getBound(&_parameterManager, i);
							if (!std::isnan(crtBound.min))
							{
								if (!((lYleftAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.min <= 0)))
									lYleftAxisRange.setMin(std::min(crtBound.min, lYleftAxisRange.getMin()));
							}
							if (!std::isnan(crtBound.max))
							{
								if (!((lYleftAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.max <= 0)))
									lYleftAxisRange.setMax(std::max(crtBound.max, lYleftAxisRange.getMax()));
							}
						}
					}
					else
					{
						//Variable table => we need to loop under all records to find axis min & max values
						for (int i = 0; i < (*_pParameterValues)[sauvaudPropertiesPtr->getParamId()].getSize(); ++i)
						{
							std::map<std::string, std::vector<double>> paramsTableData;
							for (std::map<std::string, std::string>::iterator it = sauvaudPropertiesPtr->getTableParams().begin(); it != sauvaudPropertiesPtr->getTableParams().end(); ++it)
							{
								ParameterData &data = (*_pParameterValues)[it->second];
								std::vector<double> paramTableValues;
								for (int j = 0; j < data.getDim1Size(); ++j)
								{
									if (i < data.getSize())
									{
										double *values = data.getValues(AMDA::Common::ParameterIndexComponent(j), i);
										paramTableValues.push_back((*values));
									}
								}
								paramsTableData[it->first] = paramTableValues;
							}
							for (int j = 0; j < leftParameterDimension; ++j)
							{
								crtBound = leftTableSPtr->getBound(&_parameterManager, j, &paramsTableData);
								if (!std::isnan(crtBound.min))
								{
									if (!((lYleftAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.min <= 0)))
										lYleftAxisRange.setMin(std::min(crtBound.min, lYleftAxisRange.getMin()));
								}
								if (!std::isnan(crtBound.max))
								{
									if (!((lYleftAxis->_scale == Axis::Scale::LOGARITHMIC) && (crtBound.max <= 0)))
										lYleftAxisRange.setMax(std::max(crtBound.max, lYleftAxisRange.getMax()));
								}
							}
						}
					}
				}
                                                                                                    
                                                                                }
			
			//do not extend the axis
			lYleftAxisRange._extend = false;

			fixRange(lYleftAxisRange, lYleftAxis->_scale == Axis::Scale::LOGARITHMIC);
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
706

b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
707
708
709
710
711
712
			lYleftAxis->setRange(lYleftAxisRange);

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

                                                             
                        
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
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
			Range lParamRange = lZAxis->Axis::getRange();
			if (isnan(lParamRange.getMin()) && isnan(lParamRange.getMax()))
			{
				std::string normalization = sauvaudPropertiesPtr->getNormalization();
				if (normalization == "log" || normalization == "linear")
				{
					lParamRange.setMin(0);
					lParamRange.setMax(1);
				}
				else
				{
					//auto range
					for (auto index : sauvaudPropertiesPtr->getIndexes())
					{
						//compute global range for all indexes
						double minVal, maxVal;
						if (lZAxis->_scale == Axis::Scale::LOGARITHMIC)
							minVal = (*_pParameterValues)[sauvaudPropertiesPtr->getParamId()].getMinStrictPos(index);
						else
							minVal = (*_pParameterValues)[sauvaudPropertiesPtr->getParamId()].getMin(index);
						maxVal = (*_pParameterValues)[sauvaudPropertiesPtr->getParamId()].getMax(index);
						if (!isnan(minVal))
							lParamRange.setMin(std::min(minVal, lParamRange.getMin()));
						//else
						//	lParamRange.setMin(0);
						if (!isnan(maxVal))
							lParamRange.setMax(std::max(maxVal, lParamRange.getMax()));
						//else
						//	lParamRange.setMax(10);
					}
					if (isnan(lParamRange.getMin()))
						lParamRange.setMin(0);
					if (isnan(lParamRange.getMax()))
						lParamRange.setMax(10);
				}
			}
			else
				lParamRange._extend = false;

			//set z axis range
			fixRange(lParamRange, lZAxis->_scale == Axis::Scale::LOGARITHMIC);
			LOG4CXX_DEBUG(gLogger, "ZAxis range : ZMin = " << lParamRange.getMin() << ", ZMax = " << lParamRange.getMax());
			lZAxis->setRange(lParamRange);
		}
	}
fbe3c2bb   Benjamin Renard   First commit
758

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
759
	/**
fbe3c2bb   Benjamin Renard   First commit
760
761
762
 * @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.
 */
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
	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);
fbe3c2bb   Benjamin Renard   First commit
782
	}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
783
784
785
786
787

	// 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());
fbe3c2bb   Benjamin Renard   First commit
788
789
	}

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
	ConstantLine *TimePlot::getConstantLineFromId(int serieId, int constantId, boost::shared_ptr<Axis> &yAxis)
	{
		for (auto parameter : _parameterAxesList)
		{
			for (auto serieProperties : parameter.getYSeriePropertiesList())
			{
				if ((serieProperties.getId() == serieId) && (serieProperties.hasYAxis() == true))
				{
					yAxis = _panel->getAxis(serieProperties.getYAxisId());
					for (auto constantLine : yAxis->_constantLines)
					{
						if (constantLine->getId() == constantId)
						{
							return constantLine.get();
						}
fbe3c2bb   Benjamin Renard   First commit
805
806
807
808
					}
				}
			}
		}
fbe3c2bb   Benjamin Renard   First commit
809

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
810
811
812
813
814
815
		// 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;
	}
fbe3c2bb   Benjamin Renard   First commit
816

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
817
818
819
820
821
822
823
824
825
826
827
	bool TimePlot::getSeriePropertiesById(int serieId, SeriesProperties &rSerieProperties)
	{
		for (auto parameter : _parameterAxesList)
		{
			for (auto serieProperties : parameter.getYSeriePropertiesList())
			{
				if (serieProperties.getId() == serieId)
				{
					rSerieProperties = serieProperties;
					return true;
				}
fbe3c2bb   Benjamin Renard   First commit
828
829
			}
		}
fbe3c2bb   Benjamin Renard   First commit
830

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
831
832
		return false;
	}
fbe3c2bb   Benjamin Renard   First commit
833

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
834
	void TimePlot::mergeAndSortTime(double *values1Time, int values1Nb,
fbe3c2bb   Benjamin Renard   First commit
835
									double *values2Time, int values2Nb,
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
836
837
									std::vector<double> &valuesTime)
	{
fbe3c2bb   Benjamin Renard   First commit
838

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
839
840
841
		// Build 2 vectors
		std::vector<double> v1(values1Time, values1Time + values1Nb);
		std::vector<double> v2(values2Time, values2Time + values2Nb);
fbe3c2bb   Benjamin Renard   First commit
842

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
843
844
845
		// Populate resulting vector
		valuesTime.insert(valuesTime.end(), v1.begin(), v1.end());
		valuesTime.insert(valuesTime.end(), v2.begin(), v2.end());
fbe3c2bb   Benjamin Renard   First commit
846

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
847
848
849
		// Sort and remove duplicates for the resulting vector
		sort(valuesTime.begin(), valuesTime.end());
		valuesTime.erase(unique(valuesTime.begin(), valuesTime.end()), valuesTime.end());
fbe3c2bb   Benjamin Renard   First commit
850
851
	}

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
852
853
	double TimePlot::getInterpolatedValue(double *values, double *valuesTime, int valuesNb, double atTime)
	{
fbe3c2bb   Benjamin Renard   First commit
854

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
855
856
857
858
		// get index of first time after given time_
		if (isnan(atTime))
		{
			return nan("");
fbe3c2bb   Benjamin Renard   First commit
859
		}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
860
861
862
863
864
865
866
867
868

		double *pTime = valuesTime;

		for (int t = 0; t < valuesNb; t++)
		{
			// No interpolation required
			if (*pTime == atTime)
			{
				return values[t];
fbe3c2bb   Benjamin Renard   First commit
869
			}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
			// 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));
				}
fbe3c2bb   Benjamin Renard   First commit
886
			}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
887
			pTime++;
fbe3c2bb   Benjamin Renard   First commit
888
		}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
889
		return nan("");
fbe3c2bb   Benjamin Renard   First commit
890
	}
fbe3c2bb   Benjamin Renard   First commit
891

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
892
893
894
895
	bool TimePlot::intersect(double xi, double y1i, double y2i,
							 double xj, double y1j, double y2j,
							 double *xInter)
	{
fbe3c2bb   Benjamin Renard   First commit
896

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
897
898
899
900
901
		// Simply checks if segment are above or below the other
		if (((y1i >= y2i) && (y1j >= y2j)) || ((y1i <= y2i) && (y1j <= y2j)))
		{
			return false;
		}
fbe3c2bb   Benjamin Renard   First commit
902

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
903
904
905
906
		// 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;
fbe3c2bb   Benjamin Renard   First commit
907

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
908
909
		double a2 = (y2j - y2i) / (xj - xi);
		double b2 = y2i - a2 * xi;
fbe3c2bb   Benjamin Renard   First commit
910

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
911
912
		// Compute intersection point (a1*x+b1 = a2*x+b2)
		*xInter = (b2 - b1) / (a1 - a2);
fbe3c2bb   Benjamin Renard   First commit
913

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
914
915
		return true;
	}
fbe3c2bb   Benjamin Renard   First commit
916

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
917
918
919
920
	void TimePlot::addIntersectionTime(double *values1, double *values1Time, int values1Nb,
									   double *values2, double *values2Time, int values2Nb,
									   std::vector<double> &valuesTime)
	{
fbe3c2bb   Benjamin Renard   First commit
921

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
922
923
		if (valuesTime.empty() == true)
			return;
fbe3c2bb   Benjamin Renard   First commit
924

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
925
926
		// For each time segment compute intersection if it exists
		std::vector<double> intersectionTime;
fbe3c2bb   Benjamin Renard   First commit
927

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
928
929
930
		double xi = valuesTime[0];
		double y1i = getInterpolatedValue(values1, values1Time, values1Nb, xi);
		double y2i = getInterpolatedValue(values2, values2Time, values2Nb, xi);
fbe3c2bb   Benjamin Renard   First commit
931

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
932
933
934
935
936
		for (size_t t = 1; t < valuesTime.size(); t++)
		{
			double xj = valuesTime[t];
			double y1j = getInterpolatedValue(values1, values1Time, values1Nb, xj);
			double y2j = getInterpolatedValue(values2, values2Time, values2Nb, xj);
fbe3c2bb   Benjamin Renard   First commit
937

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
938
939
940
941
942
			double xInter;
			if (intersect(xi, y1i, y2i, xj, y1j, y2j, &xInter) == true)
			{
				intersectionTime.push_back(xInter);
			}
fbe3c2bb   Benjamin Renard   First commit
943

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
944
945
946
947
948
			// Next vector element
			xi = xj;
			y1i = y1j;
			y2i = y2j;
		}
fbe3c2bb   Benjamin Renard   First commit
949

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
950
951
		// Add intersections informations to the resulting values
		valuesTime.insert(valuesTime.end(), intersectionTime.begin(), intersectionTime.end());
fbe3c2bb   Benjamin Renard   First commit
952

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
953
954
955
956
		// Sort and remove duplicates for the resulting vector
		sort(valuesTime.begin(), valuesTime.end());
		valuesTime.erase(unique(valuesTime.begin(), valuesTime.end()), valuesTime.end());
	}
fbe3c2bb   Benjamin Renard   First commit
957

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
958
	void TimePlot::drawFillArea(double *values1, double *values1Time, int values1Nb,
fbe3c2bb   Benjamin Renard   First commit
959
960
								double *values2, double *values2Time, int values2Nb,
								std::vector<double> &valuesTime,
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
961
962
963
964
965
966
967
								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()));
fbe3c2bb   Benjamin Renard   First commit
968

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
969
970
		Range lXRange = getXAxisRange(rSeriesProperties, lXAxis);
		Range lYRange = getYAxisRange(rSeriesProperties, lYAxis);
fbe3c2bb   Benjamin Renard   First commit
971

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
972
		_pls->wind(lXRange.getMin(), lXRange.getMax(), lYRange.getMin(), lYRange.getMax());
fbe3c2bb   Benjamin Renard   First commit
973

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
974
975
976
		PLFLT x[4], y[4], deltai, deltaj;
		Color curColor;
		Color lInitialColor = changeColor(_pls, colorGreater, _panel->_page->_mode);
fbe3c2bb   Benjamin Renard   First commit
977

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
		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;
				}
fbe3c2bb   Benjamin Renard   First commit
1006
			}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
			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
fbe3c2bb   Benjamin Renard   First commit
1023
1024
				continue;
			}
fbe3c2bb   Benjamin Renard   First commit
1025

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1026
1027
1028
1029
			// Fill polygon using the given color
			changeColor(_pls, curColor, _panel->_page->_mode);
			_pls->fill(4, x, y);
		}
fbe3c2bb   Benjamin Renard   First commit
1030

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1031
1032
1033
		// Restore color.
		restoreColor(_pls, lInitialColor, _panel->_page->_mode);
	}
fbe3c2bb   Benjamin Renard   First commit
1034

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1035
1036
1037
1038
	void TimePlot::drawFills(double startDate, double stopDate)
	{
		PanelPlotOutput::drawFills(startDate, stopDate);
		LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills");
fbe3c2bb   Benjamin Renard   First commit
1039

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1040
		SeriesProperties rSeriesProperties;
fbe3c2bb   Benjamin Renard   First commit
1041

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1042
1043
1044
		double *values1 = NULL;
		double *values1Time = NULL;
		int values1Nb = 0;
fbe3c2bb   Benjamin Renard   First commit
1045

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1046
1047
1048
		double *values2 = NULL;
		double *values2Time = NULL;
		int values2Nb = 0;
fbe3c2bb   Benjamin Renard   First commit
1049

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1050
		std::vector<double> valuesTime;
fbe3c2bb   Benjamin Renard   First commit
1051

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1052
1053
		// Drawing Fill Area located between Serie and Constant (horizontal) line
		for (auto fillSerieConstant : _panel->_fillSerieConstants)
fbe3c2bb   Benjamin Renard   First commit
1054
		{
fbe3c2bb   Benjamin Renard   First commit
1055

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1056
1057
1058
1059
1060
1061
			// Retrieve serie parameter values for serieId
			if (!getSeriePropertiesById(fillSerieConstant->getSerieId(), rSeriesProperties))
			{
				LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills - Cannot find serie id " << fillSerieConstant->getSerieId());
				continue;
			}
e7b3586a   Benjamin Renard   Fix fill between ...
1062

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1063
1064
1065
1066
1067
1068
1069
			//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;
			}
e7b3586a   Benjamin Renard   Fix fill between ...
1070

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1071
1072
1073
			// Retrieve constantLine informations for these fill
			boost::shared_ptr<Axis> yAxis;
			ConstantLine *constantLine = getConstantLineFromId(fillSerieConstant->getSerieId(), fillSerieConstant->getConstantId(), yAxis);
fbe3c2bb   Benjamin Renard   First commit
1074

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1075
			// Retrieve axis attachment
fbe3c2bb   Benjamin Renard   First commit
1076

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1077
1078
1079
			// Build values2 values2Time array with 2 values : yConst & (first time, last time) for serie
			values2 = new double[2];
			values2Time = new double[2];
fbe3c2bb   Benjamin Renard   First commit
1080

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1081
1082
			values2[0] = convertYAxisValue(constantLine->getValue());
			values2[1] = convertYAxisValue(constantLine->getValue());
e7b3586a   Benjamin Renard   Fix fill between ...
1083

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1084
1085
1086
1087
1088
			if (yAxis->_scale == Axis::Scale::LOGARITHMIC)
			{
				values2[0] = log10(values2[0]);
				values2[1] = log10(values2[1]);
			}
fbe3c2bb   Benjamin Renard   First commit
1089

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1090
1091
			values2Time[0] = values1Time[0];
			values2Time[1] = values1Time[values1Nb - 1];
fbe3c2bb   Benjamin Renard   First commit
1092

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1093
			values2Nb = 2;
fbe3c2bb   Benjamin Renard   First commit
1094

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1095
1096
1097
1098
1099
1100
1101
			// 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);
fbe3c2bb   Benjamin Renard   First commit
1102

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1103
1104
1105
			delete[] values1;
			delete[] values2;
			delete[] values2Time;
fbe3c2bb   Benjamin Renard   First commit
1106
1107
		}

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1108
1109
		// Drawing Fill Area located between first and second Serie
		for (auto fillSerieSerie : _panel->_fillSerieSeries)
fbe3c2bb   Benjamin Renard   First commit
1110
		{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1111
1112
1113
1114
1115
1116
			// Retrieve serie parameter values for firstSerieId
			if (!getSeriePropertiesById(fillSerieSerie->getFirstSerieId(), rSeriesProperties))
			{
				LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills - Cannot find serie id " << fillSerieSerie->getFirstSerieId());
				continue;
			}
fbe3c2bb   Benjamin Renard   First commit
1117

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1118
1119
1120
1121
1122
1123
1124
			//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;
			}
fbe3c2bb   Benjamin Renard   First commit
1125

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1126
1127
1128
1129
1130
1131
			// Retrieve serie parameter values for secondSerieId
			if (!getSeriePropertiesById(fillSerieSerie->getSecondSerieId(), rSeriesProperties))
			{
				LOG4CXX_DEBUG(gLogger, "TimePlot::drawFills - Cannot find serie id " << fillSerieSerie->getSecondSerieId());
				continue;
			}
fbe3c2bb   Benjamin Renard   First commit
1132

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1133
1134
1135
1136
1137
1138
1139
			//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;
			}
fbe3c2bb   Benjamin Renard   First commit
1140

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1141
1142
1143
1144
1145
1146
1147
			// 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);
fbe3c2bb   Benjamin Renard   First commit
1148

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1149
1150
1151
1152
			delete[] values1;
			delete[] values2;
		}
	}
fbe3c2bb   Benjamin Renard   First commit
1153

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1154
1155
1156
1157
1158
1159
1160
1161
	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);
fbe3c2bb   Benjamin Renard   First commit
1162

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1163
1164
		if (!pSeries.hasYAxis())
			return;
fbe3c2bb   Benjamin Renard   First commit
1165

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1166
1167
1168
1169
		// Y axis may be missing (tickplot for example)
		std::string yAxisId = pSeries.getYAxisId();
		if (yAxisId.empty())
			return;
fbe3c2bb   Benjamin Renard   First commit
1170

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1171
1172
1173
1174
1175
1176
		//get computed values
		double *computedValues = NULL;
		double *timeValues = NULL;
		int nbValues;
		if (!getComputedValuesFromSerieAndInterval(startDate, stopDate, pSeries, pParamIndex,
												   &computedValues, &timeValues, nbValues))
fbe3c2bb   Benjamin Renard   First commit
1177
		{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1178
			LOG4CXX_DEBUG(gLogger, "TimePlot::drawSeries - Cannot get computed values for serie");
fbe3c2bb   Benjamin Renard   First commit
1179
1180
			return;
		}
fbe3c2bb   Benjamin Renard   First commit
1181

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
		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());
fbe3c2bb   Benjamin Renard   First commit
1198

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1199
1200
		_pls->wind(std::get<0>(lPlWindow), std::get<1>(lPlWindow),
				   std::get<2>(lPlWindow), std::get<3>(lPlWindow));
fbe3c2bb   Benjamin Renard   First commit
1201

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1202
1203
1204
		//draw serie
		Color lineColor = getSerieLineColor(pSeries, moreThanOneSerieForAxis);
		Color symbolColor = getSerieSymbolColor(pSeries, lineColor);
fbe3c2bb   Benjamin Renard   First commit
1205

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1206
1207
1208
1209
1210
		drawSymbols(
			pSeries.getSymbolProperties().getType(),
			pSeries.getSymbolProperties().getSize(), 1.,
			symbolColor,
			nbValues, timeValues, computedValues, coloredComputedValues);
fbe3c2bb   Benjamin Renard   First commit
1211

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1212
1213
1214
1215
1216
1217
		drawLines(
			pSeries.getLineProperties().getType(),
			pSeries.getLineProperties().getStyle(),
			pSeries.getLineProperties().getWidth(),
			lineColor,
			nbValues, timeValues, computedValues, coloredComputedValues);
fbe3c2bb   Benjamin Renard   First commit
1218

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1219
1220
		//add serie to param legend
		addSerieToParamsLegend(pSeries, pParamIndex, param._originalParamId, lineColor, symbolColor, startDate, stopDate, intervalIndex);
fbe3c2bb   Benjamin Renard   First commit
1221

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1222
1223
		//draw interval
		drawSerieInterval(pSeries, timeValues, computedValues, timeValues, nbValues, intervalIndex);
fbe3c2bb   Benjamin Renard   First commit
1224

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1225
1226
1227
		delete[] computedValues;
		if (coloredComputedValues != NULL)
			delete[] coloredComputedValues;
fbe3c2bb   Benjamin Renard   First commit
1228

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1229
1230
1231
		// Draw min/max error bars if required
		ErrorBarProperties &errorBarProp = pSeries.getErrorBarProperties();
		if (errorBarProp.getErrorMinMax() != nullptr)
fbe3c2bb   Benjamin Renard   First commit
1232
		{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
			//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;
			}
fbe3c2bb   Benjamin Renard   First commit
1249

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1250
1251
			LineProperties &lineProps = pSeries.getErrorBarProperties().getLineProperties();
			drawYErrors(lineProps.getType(),
fbe3c2bb   Benjamin Renard   First commit
1252
1253
1254
1255
1256
1257
						lineProps.getStyle(),
						lineProps.getWidth(),
						lineProps.getColor(),
						nbMinValues, minTimeValues,
						minComputedValues, maxComputedValues);

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1258
1259
1260
1261
			// Free values
			delete[] minComputedValues;
			delete[] maxComputedValues;
		}
fbe3c2bb   Benjamin Renard   First commit
1262
	}
fbe3c2bb   Benjamin Renard   First commit
1263

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1264
1265
1266
1267
1268
	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);
fbe3c2bb   Benjamin Renard   First commit
1269

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1270
1271
		//get parameter data and info
		ParameterSPtr p = _parameterManager.getParameter(pParamId);
fbe3c2bb   Benjamin Renard   First commit
1272

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1273
		ParameterData &data = (*_pParameterValues)[pSpectro.getParamId()];
fbe3c2bb   Benjamin Renard   First commit
1274

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1275
1276
1277
1278
		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());
f3cd5351   Hacene SI HADJ MOHAND   us ok
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
                
                                        if (tableSPtr == nullptr){
                                            boost::shared_ptr<AMDA::Info::ParamTable> linkedTableSPtr;
                                            int counter = 0;
                                            // work on this 
                                            for (auto pInfo :paramInfo->getLinkedParamList()){
                                                linkedTableSPtr = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(pInfo)->getTable(pSpectro.getRelatedDim());
                                                if (linkedTableSPtr == nullptr)
                                                    continue;
                                                counter ++;
                                            }
                                            if(linkedTableSPtr == nullptr || counter !=1){
                                                LOG4CXX_DEBUG(gLogger, "table cannot be defined from linked info params");
                                            }else{
                                                tableSPtr = linkedTableSPtr;
                                            }
                                        }                
fbe3c2bb   Benjamin Renard   First commit
1296

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1297
1298
1299
1300
		//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();
fbe3c2bb   Benjamin Renard   First commit
1301

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1302
1303
		//Check dimensions
		if (pSpectro.getRelatedDim() == 0)
fbe3c2bb   Benjamin Renard   First commit
1304
		{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1305
1306
1307
1308
1309
			if (data.getDim1Size() + 1 <= 0)
			{
				LOG4CXX_INFO(gLogger, "TimePlot::drawSpectro - No data to plot");
				return;
			}
fbe3c2bb   Benjamin Renard   First commit
1310
		}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1311
		else
fbe3c2bb   Benjamin Renard   First commit
1312
		{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1313
1314
1315
1316
1317
			if (data.getDim2Size() + 1 <= 0)
			{
				LOG4CXX_INFO(gLogger, "TimePlot::drawSpectro - No data to plot");
				return;
			}
fbe3c2bb   Benjamin Renard   First commit
1318
		}
fbe3c2bb   Benjamin Renard   First commit
1319

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1320
1321
		LOG4CXX_DEBUG(gLogger, "TimePlot::drawSpectro - Build data grid");
		MatrixGrid matrixGrid;
f2db3c16   Benjamin Renard   Support variable ...
1322

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1323
1324
1325
		//get specific colors for min / max values
		Color minValColor = lZAxis->getMinValColor();
		Color maxValColor = lZAxis->getMaxValColor();
2d64c235   Benjamin Renard   Fix bug with spec...
1326

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1327
		if ((tableSPtr == nullptr) || !tableSPtr->isVariable(&_parameterManager))
fbe3c2bb   Benjamin Renard   First commit
1328
		{
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
1329
			int startIndex; // index corresponding to startDate
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1330
1331
1332
			int nbValues;
			data.getIntervalBounds(startDate, stopDate, startIndex, nbValues);
			for (auto index : pSpectro.getIndexes())
fbe3c2bb   Benjamin Renard   First commit
1333
			{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1334
1335
1336
1337
1338
1339
1340
1341
1342
				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;
				}
f2db3c16   Benjamin Renard   Support variable ...
1343
				else
f2db3c16   Benjamin Renard   Support variable ...
1344
				{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1345
1346
1347
1348
1349
1350
					AMDA::Info::t_TableBound crtBound;
					if (pSpectro.getRelatedDim() == 0)
						crtBound = tableSPtr->getBound(&_parameterManager, index.getDim1Index());
					else
						crtBound = tableSPtr->getBound(&_parameterManager, index.getDim2Index());
					if (std::isnan(crtBound.min) || std::isnan(crtBound.max))
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
1351
						continue;
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1352
1353
1354
1355
1356
1357
1358
1359
1360
					part.y[0] = crtBound.min;
					part.y[1] = crtBound.max;
					if (lYAxis->_scale == Axis::Scale::LOGARITHMIC)
					{
						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 ...
1361
				}
fbe3c2bb   Benjamin Renard   First commit
1362

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1363
1364
1365
1366
1367
1368
1369
				if (lYAxis->_reverse)
				{
					if (((part.y[0] < lYAxis->getRange().getMax()) && (part.y[1] < lYAxis->getRange().getMax())) ||
						((part.y[0] > lYAxis->getRange().getMin()) && (part.y[1] < lYAxis->getRange().getMin())))
					{
						continue;
					}
2d64c235   Benjamin Renard   Fix bug with spec...
1370
				}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1371
1372
1373
1374
1375
1376
1377
				else
				{
					if (((part.y[0] < lYAxis->getRange().getMin()) && (part.y[1] < lYAxis->getRange().getMin())) ||
						((part.y[0] > lYAxis->getRange().getMax()) && (part.y[1] < lYAxis->getRange().getMax())))
					{
						continue;
					}
2d64c235   Benjamin Renard   Fix bug with spec...
1378
				}
2d64c235   Benjamin Renard   Fix bug with spec...
1379

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
				for (int i = 0; i < nbValues - 1; ++i)
				{
					part.x[0] = data.getTimes()[startIndex + i];
					part.x[1] = data.getTimes()[startIndex + i + 1];
					part.isColorIndex = false;
					part.value = data.getValues(index, startIndex)[i];
					matrixGrid.push_back(part);
				}
				//Apply background subtraction
				applyBackgroundSubtraction(matrixGrid, pSpectro, data);
				//draw spectro
				LOG4CXX_DEBUG(gLogger, "TimePlot::drawSpectro - Draw data grid - " << matrixGrid.size());
				std::string normalization = pSpectro.getNormalization();
				if (!normalization.empty())
					normalize(matrixGrid, normalization);
				drawMatrix(matrixGrid, pSpectro.getMin(), pSpectro.getMax(),
						   minValColor, maxValColor, lZAxis->_color._colorMapIndex, pSpectro.getUseLog0AsMin());
				matrixGrid.clear();
			}
f2db3c16   Benjamin Renard   Support variable ...
1399
		}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1400
		else
fbe3c2bb   Benjamin Renard   First commit
1401
		{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1402
1403
1404
1405
1406
1407
1408
1409
			//Variable table
			AMDA::Info::t_TableBound crtBound;
			//for (auto index : pSpectro.getIndexes())
			//{
			int startIndex;
			int nbValues;
			data.getIntervalBounds(startDate, stopDate, startIndex, nbValues);
			for (int i = 0; i < nbValues - 1; ++i)
8c71f50a   Benjamin Renard   Improve execution...
1410
			{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1411
1412
1413
1414
1415
1416
				GridPart part;
				part.x[0] = data.getTimes()[startIndex + i];
				part.x[1] = data.getTimes()[startIndex + i + 1];

				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)
f2db3c16   Benjamin Renard   Support variable ...
1417
				{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1418
1419
1420
1421
1422
1423
1424
1425
					ParameterData &tableData = (*_pParameterValues)[it->second];
					std::vector<double> paramTableValues;
					for (int j = 0; j < tableData.getDim1Size(); ++j)
					{
						double *values = tableData.getValues(AMDA::Common::ParameterIndexComponent(j, -1), i);
						paramTableValues.push_back((*values));
					}
					paramsTableData[it->first] = paramTableValues;
f2db3c16   Benjamin Renard   Support variable ...
1426
				}
8c71f50a   Benjamin Renard   Improve execution...
1427

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1428
1429
1430
1431
				for (auto index : pSpectro.getIndexes())
				{
					part.isColorIndex = false;
					part.value = data.getValues(index, startIndex)[i];
f2db3c16   Benjamin Renard   Support variable ...
1432

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1433
1434
1435
1436
					if (pSpectro.getRelatedDim() == 0)
						crtBound = tableSPtr->getBound(&_parameterManager, index.getDim1Index(), &paramsTableData);
					else
						crtBound = tableSPtr->getBound(&_parameterManager, index.getDim2Index(), &paramsTableData);
f2db3c16   Benjamin Renard   Support variable ...
1437

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1438
1439
					part.y[0] = crtBound.min;
					part.y[1] = crtBound.max;
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
1440

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1441
					if (!std::isnan(crtBound.min) && !std::isnan(crtBound.max))
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
1442
					{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1443
						if (lYAxis->_scale == Axis::Scale::LOGARITHMIC)
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
1444
						{
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1445
1446
1447
1448
1449
1450
							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);
							}
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
1451
						}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1452
1453
						else
							matrixGrid.push_back(part);
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
1454
					}
f2db3c16   Benjamin Renard   Support variable ...
1455
				}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1456
1457
1458
1459
1460
1461
1462
1463
				//draw spectro
				LOG4CXX_DEBUG(gLogger, "TimePlot::drawSpectro - Draw data grid - " << matrixGrid.size());
				std::string normalization = pSpectro.getNormalization();
				if (!normalization.empty())
					normalize(matrixGrid, normalization);
				drawMatrix(matrixGrid, pSpectro.getMin(), pSpectro.getMax(),
						   minValColor, maxValColor, lZAxis->_color._colorMapIndex, pSpectro.getUseLog0AsMin());
				matrixGrid.clear();
f2db3c16   Benjamin Renard   Support variable ...
1464
			}
fbe3c2bb   Benjamin Renard   First commit
1465
1466
		}
	}
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1467
        
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
1468
        	void TimePlot::drawSauvaud(double startDate, double stopDate, std::string pParamId, SauvaudProperties &pSauvaud, int /*subIndex=0*/, int /*subsNumber=1*/)
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1469
1470
	{
		LOG4CXX_DEBUG(gLogger, "TimePlot::drawSauvaud Drawing sauvaud for parameter " << pParamId);
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
1471
1472
                
                                     
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1473
1474
1475
1476
1477

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

		ParameterData &data = (*_pParameterValues)[pSauvaud.getParamId()];
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
                                        int rightDim = pSauvaud.getRightDim();
                                        int leftDim   = (rightDim ==0) ? 1 :0;
                                        int rightDimSize =-1;
                                         int leftDimSize =-1;
                                        if(rightDim ==0){
                                                rightDimSize = data.getDim1Size();
                                                leftDimSize = data.getDim2Size() ;
                                        }else{
                                                rightDimSize = data.getDim2Size() ;
                                                leftDimSize = data.getDim1Size() ;
                                        }
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1489

b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
1490
1491
1492
1493
1494
                                        if (  rightDimSize < 0 && leftDimSize<0 )
                                        {
                                                LOG4CXX_INFO(gLogger, "TimePlot::drawSauvaud - No data to plot");
                                                return;
                                        }
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
1495
1496
		boost::shared_ptr<AMDA::Info::ParamTable> rightTableSPtr;
                                        boost::shared_ptr<AMDA::Info::ParamTable> leftTableSPtr;
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1497
		AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(p->getInfoId());
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
1498
		if (paramInfo != nullptr){
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
1499
1500
1501
1502
			rightTableSPtr = paramInfo->getTable(rightDim);
                                                            leftTableSPtr    = paramInfo->getTable(leftDim);
                                         }
                                
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1503
1504
1505
		//get axis
		boost::shared_ptr<Axis> lXAxis = _panel->getAxis(pSauvaud.getXAxisId());
		boost::shared_ptr<Axis> lYAxis = _panel->getAxis(pSauvaud.getYAxisId());
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
1506
                                        boost::shared_ptr<Axis> lYleftAxis = _panel->getAxis(pSauvaud.getYleftAxisId());
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1507
		boost::shared_ptr<ColorAxis> lZAxis = _panel->getColorAxis();
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
1508
                
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
1509
1510
1511
1512
                                        // Init data                 
                                        int startIndex; // index corresponding to startDate
                                        int nbValues;
                                        data.getIntervalBounds(startDate, stopDate, startIndex, nbValues);
5f13f59c   Hacene SI HADJ MOHAND   in progress worki...
1513

736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1514
		LOG4CXX_DEBUG(gLogger, "TimePlot::drawSauvaud - Build data grid");
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1515

b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
                                        for(int spectroIndex =0; spectroIndex <leftDimSize; spectroIndex ++){
		// This will configure window, draw axes (if needed) and legend of axes.
                                            
                                            // set left label for each sub-plot label table value or index  
                                            std::string plotLabel = std::to_string(spectroIndex);
                                                       if ((leftTableSPtr == nullptr) || !leftTableSPtr->isVariable(&_parameterManager))
                                                        {
                                                            if ( leftTableSPtr== nullptr)
                                                                {
                                                                // nothing to do 
                                                            }else{
                                                                AMDA::Info::t_TableBound rightBound = leftTableSPtr->getBound(&_parameterManager, spectroIndex);
                                                                 if (!std::isnan(rightBound.min) && !std::isnan(rightBound.max)){
                                                                        double boundVal =  (rightBound.min + rightBound.max)/2;
                                                                        plotLabel = std::to_string((int)std::round(boundVal));
                                                                 }
                                                            }
                                                            }else{
                                                                            // variable
                                                                      for (int i = 0; i < nbValues - 1; ++i){
                                                                            std::map<std::string, std::vector<double>> paramsTableData;
                                                                            for (std::map<std::string, std::string>::iterator it = pSauvaud.getTableParams().begin(); it != pSauvaud.getTableParams().end(); ++it)
                                                                            {
                                                                                    ParameterData &tableData = (*_pParameterValues)[it->second];
                                                                                    std::vector<double> paramTableValues;
                                                                                    for (int j = 0; j < rightDimSize; ++j)
                                                                                    {
                                                                                            double *values = tableData.getValues(AMDA::Common::ParameterIndexComponent(j, -1), i);
                                                                                            paramTableValues.push_back((*values));
                                                                                    }
                                                                                    paramsTableData[it->first] = paramTableValues;
                                                                            }
                                                                          AMDA::Info::t_TableBound rightBound  = leftTableSPtr->getBound(&_parameterManager, spectroIndex, &paramsTableData);
                                                                          if (!std::isnan(rightBound.min) && !std::isnan(rightBound.max)){
                                                                                double boundVal =  (rightBound.min + rightBound.max)/2;
                                                                                plotLabel = std::to_string((int)std::round(boundVal));
                                                                            }
                                                                       }     
                                                             }
                                                    Label label(lYAxis->_legend.getFont(), lYAxis->_legend.getColor());
                                                    label._text = plotLabel;
                                                    
                                                    Font font_(label.getFont());
                                                    if(font_.getSize() ==0)
                                                        font_.setSize(2);
                                                    label.setFont(font_);
                                                    
                                                    lYAxis->_legend.setLabel(label);
                                                      
                                                    PanelPlotOutput::drawSauvaud(startDate, stopDate, pParamId, pSauvaud, spectroIndex , leftDimSize);
                                                    MatrixGrid matrixGrid;
                                                    
                                                    		//get specific colors for min / max values
                                                Color minValColor = lZAxis->getMinValColor();
                                                Color maxValColor = lZAxis->getMaxValColor();

                                                if ((rightTableSPtr == nullptr) || !rightTableSPtr->isVariable(&_parameterManager))
                                                {

                                                        AMDA::Common::ParameterIndexComponentList indexes =  pSauvaud.getIndexesByIndex(spectroIndex, leftDim);
                                                        for (auto index : indexes) 
                                                        {
                                                                GridPart part;
                                                                if ( rightTableSPtr== nullptr)
                                                                {
                                                                        if (rightDim == 0)
                                                                                part.y[0] = index.getDim1Index();
                                                                        else
                                                                                part.y[0] = index.getDim2Index();
                                                                        part.y[1] = part.y[0] + 1;
                                                                }
                                                                else
                                                                {
                                                                        AMDA::Info::t_TableBound crtBound;
                                                                        if (rightDim == 0)
                                                                                crtBound = rightTableSPtr->getBound(&_parameterManager, index.getDim1Index());
                                                                        else
                                                                                crtBound = rightTableSPtr->getBound(&_parameterManager, index.getDim2Index());
                                                                        if (std::isnan(crtBound.min) || std::isnan(crtBound.max))
                                                                                continue;
                                                                        part.y[0] = crtBound.min;
                                                                        part.y[1] = crtBound.max;
                                                                        if (lYAxis->_scale == Axis::Scale::LOGARITHMIC)
                                                                        {
                                                                                if ((crtBound.min <= 0) || (crtBound.max <= 0))
                                                                                        continue;
                                                                                part.y[0] = log10(part.y[0]);
                                                                                part.y[1] = log10(part.y[1]);
                                                                        }
                                                                }

                                                                if (lYAxis->_reverse)
                                                                {
                                                                        if (((part.y[0] < lYAxis->getRange().getMax()) && (part.y[1] < lYAxis->getRange().getMax())) ||
                                                                                ((part.y[0] > lYAxis->getRange().getMin()) && (part.y[1] < lYAxis->getRange().getMin())))
                                                                        {
                                                                                continue;
                                                                        }
                                                                }
                                                                else
                                                                {
                                                                        if (((part.y[0] < lYAxis->getRange().getMin()) && (part.y[1] < lYAxis->getRange().getMin())) ||
                                                                                ((part.y[0] > lYAxis->getRange().getMax()) && (part.y[1] < lYAxis->getRange().getMax())))
                                                                        {
                                                                                continue;
                                                                        }
                                                                }

                                                                for (int i = 0; i < nbValues - 1; ++i)
                                                                {
                                                                        part.x[0] = data.getTimes()[startIndex + i];
                                                                        part.x[1] = data.getTimes()[startIndex + i + 1];
                                                                        part.isColorIndex = false;
                                                                        part.value = data.getValues(index, startIndex)[i];
                                                                        matrixGrid.push_back(part);
                                                                }
                                                        
                                                                //Apply background subtraction
                                                                applyBackgroundSubtraction(matrixGrid, pSauvaud, data);
                                                                //draw sauvaud
                                                                LOG4CXX_DEBUG(gLogger, "TimePlot::drawSauvaud - Draw data grid - " << matrixGrid.size());
                                                                std::string normalization = pSauvaud.getNormalization();
                                                                if (!normalization.empty())
                                                                        normalize(matrixGrid, normalization);
                                                                drawMatrix(matrixGrid, pSauvaud.getMin(), pSauvaud.getMax(),
                                                                                   minValColor, maxValColor, lZAxis->_color._colorMapIndex, pSauvaud.getUseLog0AsMin());
                                                                matrixGrid.clear();
                                                                }
                                                        
		          }else{
                                                            //Variable table
                                                            AMDA::Info::t_TableBound crtBound;
                                                            int startIndex;
                                                            int nbValues;
                                                            data.getIntervalBounds(startDate, stopDate, startIndex, nbValues);
                                                            for (int i = 0; i < nbValues - 1; ++i)
                                                            {
                                                                    GridPart part;
                                                                    part.x[0] = data.getTimes()[startIndex + i];
                                                                    part.x[1] = data.getTimes()[startIndex + i + 1];

                                                                    std::map<std::string, std::vector<double>> paramsTableData;
                                                                    for (std::map<std::string, std::string>::iterator it = pSauvaud.getTableParams().begin(); it != pSauvaud.getTableParams().end(); ++it)
                                                                    {
                                                                            ParameterData &tableData = (*_pParameterValues)[it->second];
                                                                            std::vector<double> paramTableValues;
                                                                            for (int j = 0; j < tableData.getDim1Size(); ++j)
                                                                            {
                                                                                    double *values = tableData.getValues(AMDA::Common::ParameterIndexComponent(j, -1), i);
                                                                                    paramTableValues.push_back((*values));
                                                                            }
                                                                            paramsTableData[it->first] = paramTableValues;
                                                                    }

                                                                    for (auto index : pSauvaud.getIndexesByIndex(spectroIndex, leftDim))
                                                                    {
                                                                            part.isColorIndex = false;
                                                                            part.value = data.getValues(index, startIndex)[i];

                                                                            if (rightDim == 0)
                                                                                    crtBound = rightTableSPtr->getBound(&_parameterManager, index.getDim1Index(), &paramsTableData);
                                                                            else
                                                                                    crtBound = rightTableSPtr->getBound(&_parameterManager, index.getDim2Index(), &paramsTableData);

                                                                            part.y[0] = crtBound.min;
                                                                            part.y[1] = crtBound.max;

                                                                            if (!std::isnan(crtBound.min) && !std::isnan(crtBound.max))
                                                                            {
                                                                                    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);
                                                                            }
                                                                    
                                                                    //draw sauvaud
                                                                    LOG4CXX_DEBUG(gLogger, "TimePlot::drawSauvaud - Draw data grid - " << matrixGrid.size());
                                                                    std::string normalization = pSauvaud.getNormalization();
                                                                    if (!normalization.empty())
                                                                            normalize(matrixGrid, normalization);
                                                                    drawMatrix(matrixGrid, pSauvaud.getMin(), pSauvaud.getMax(),
                                                                                       minValColor, maxValColor, lZAxis->_color._colorMapIndex, pSauvaud.getUseLog0AsMin());
                                                                    matrixGrid.clear();
                                                            }
                                                 }                   
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1708
		}
b0205fd9   Hacene SI HADJ MOHAND   plot ok reste que...
1709
                                     }
736a40f7   Hacene SI HADJ MOHAND   configureSauvaudAxis
1710
1711
1712
	}
        
        
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1713
1714
1715
1716
1717
1718

	void TimePlot::applyBackgroundSubtraction(MatrixGrid &matrixGrid, SpectroProperties &pSpectro, ParameterData &data)
	{
		//We get the background subtraction value given by the user
		const double backgroundSubValue = pSpectro.getBackgroundSubValue();

9e7f1f63   Menouard AZIB   Remplacer les str...
1719
1720
1721
		//If negative value then quit and do nothing
		if (backgroundSubValue < 0)
			return;
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1722
1723
1724

		const int len = matrixGrid.size();
		//Channel subtraction
9e7f1f63   Menouard AZIB   Remplacer les str...
1725
		if (pSpectro.getBackgroundSubType() == SpectroProperties::BackgroundSubType::BYCHANNEL)
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
		{
			int indexChannelDim1 = -1;
			int indexChannelDim2 = -1;

			//The selected dimension of the background subtraction
			if (pSpectro.getBackgroundSubDim() == 0)
				indexChannelDim1 = (int)backgroundSubValue;
			else
				indexChannelDim2 = (int)backgroundSubValue;

			//Get the values which corresponds to the selected channel
			double *values = data.getValues(AMDA::Common::ParameterIndexComponent(indexChannelDim1, indexChannelDim2), 0);
			//Apply the subtraction
			for (int i = 0; i < len; i++)
				matrixGrid[i].value -= values[i];
		}
		//Fixed value substraction
9e7f1f63   Menouard AZIB   Remplacer les str...
1743
		else if (pSpectro.getBackgroundSubType() == SpectroProperties::BackgroundSubType::FIXEDVALUE)
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1744
1745
1746
1747
1748
1749
1750
1751
		{
			for (int i = 0; i < len; i++)
				matrixGrid[i].value -= backgroundSubValue;
		}
		else
		{
			std::stringstream lError;
			lError << "Unknown background substracion type "
9e7f1f63   Menouard AZIB   Remplacer les str...
1752
				   << pSpectro.getBackgroundSubType();
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
			BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
		}

		return;
	}

	void TimePlot::normalize(MatrixGrid &matrixGrid, std::string normalizationType)
	{
		if (normalizationType == "none")
			return;
		double min = DBL_MAX;
		double max = DBL_MIN;
		int len = matrixGrid.size();
		if (normalizationType == "log")
		{
			for (auto val : matrixGrid)
			{
				if (val.value < min && val.value > 0)
					min = val.value;
				if (val.value > max)
					max = val.value;
			}
		}
		else
		{
			for (auto val : matrixGrid)
			{
				if (val.value < min)
					min = val.value;
				if (val.value > max)
					max = val.value;
			}
		}
		if (std::isnan(min) || std::isnan(max))
		{
			return;
		}
		else if (min == max)
		{
			for (int i = 0; i < len; i++)
				matrixGrid[i].value = matrixGrid[i].value / max;
		}
		else
		{
			if (normalizationType == "log")
			{
				for (int i = 0; i < len; i++)
					matrixGrid[i].value = (std::log10(matrixGrid[i].value) - std::log10(min)) / (std::log10(max) - std::log10(min));
				return;
			}
			else if (normalizationType == "linear")
			{
				for (int i = 0; i < len; i++)
					matrixGrid[i].value = (matrixGrid[i].value - min) / (max - min);
				return;
			}
			else
			{
				std::stringstream lError;
				lError << "Unknwon normalization " << normalizationType;
				BOOST_THROW_EXCEPTION(PanelPlotOutputException() << AMDA::ex_msg(lError.str()));
			}
		}
	}

	Color TimePlot::getStatusColor(AMDA::Info::ParamInfoSPtr &paramInfo, double value)
	{
		Color color;

		if ((paramInfo != nullptr) && !paramInfo->getStatusDef().empty())
		{
			for (int s = 0; s < (int)paramInfo->getStatusDef().size(); ++s)
			{
				if (value >= paramInfo->getStatusDef()[s].getMinValue() && value <= paramInfo->getStatusDef()[s].getMaxValue())
				{
					if (!paramInfo->getStatusDef()[s].getColor().empty())
					{
						std::string colorStr = paramInfo->getStatusDef()[s].getColor();
						createColor(color, colorStr);
						return color;
					}
677db865   Benjamin Renard   Draw intervals on...
1834
1835
1836
				}
			}
		}
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1837
1838

		return color;
677db865   Benjamin Renard   Draw intervals on...
1839
1840
	}

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1841
1842
1843
1844
1845
1846
	void TimePlot::drawOneInterval(double tmin, double tmax, Color color)
	{
		if (!color.isSet())
		{
			return;
		}
677db865   Benjamin Renard   Draw intervals on...
1847

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
		//Fill interval
		PanelPlotOutput::drawRectangle(tmin, tmax, 0., 1., color, 0.25);

		//Draw borders
		PLFLT x[2], y[2];
		x[0] = tmin;
		y[0] = 0.;
		x[1] = tmin;
		y[1] = 1.;
		PanelPlotOutput::drawLines(LineType::LINE, LineStyle::PLAIN, 2, color, 2, x, y);

		x[0] = tmax;
		y[0] = 0.;
		x[1] = tmax;
		y[1] = 1.;
		PanelPlotOutput::drawLines(LineType::LINE, LineStyle::PLAIN, 2, color, 2, x, y);
677db865   Benjamin Renard   Draw intervals on...
1864
1865
	}

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
	void TimePlot::drawIntervals(double startDate, double stopDate, std::string pParamId,
								 IntervalsProperties &pIntervals)
	{
		LOG4CXX_DEBUG(gLogger, "TimePlot::drawIntervals Drawing intervals for parameter " << pParamId);
		// This will configure window, draw axes (if needed) and legend of axes.
		PanelPlotOutput::drawIntervals(startDate, stopDate, pParamId, pIntervals);

		PlWindow lPlWindow = PlWindow(getTimeAxis()->getRange().getMin(), getTimeAxis()->getRange().getMax(), 0, 1);

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

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

		ParameterSPtr p = _parameterManager.getParameter(pIntervals.getParamId());
		AMDA::Info::ParamInfoSPtr paramInfo = AMDA::Info::ParamMgr::getInstance()->getParamInfoFromId(p->getInfoId());

		//get computed values
		int startIndex, nbData;
		data.getIntervalBounds(startDate, stopDate, startIndex, nbData);

		Color crtColor;

		// Draw intervals
		double crtVal = NAN;
		double tmin = 0, tmax = 0;
		for (int i = 0; i < nbData - 1; ++i)
		{
			double t1 = data.getTimes()[startIndex + i];
			double t2 = data.getTimes()[startIndex + i + 1];
			double v = *data.getValues(AMDA::Common::ParameterIndexComponent(-1, -1), startIndex + i);

			if (isNAN(crtVal))
			{
				tmin = t1;
				tmax = t2;
				crtVal = v;
				continue;
			}
			else if (crtVal == v)
			{
				tmax = t2;
				continue;
			}

			crtColor = getStatusColor(paramInfo, crtVal);

			drawOneInterval(tmin, tmax, crtColor);

			tmin = t1;
			tmax = t2;
			crtVal = v;
			crtColor = Color();
		}

		//Draw last interval if need
		if ((tmin != tmax) && !isNAN(crtVal))
		{
			crtColor = getStatusColor(paramInfo, crtVal);
			drawOneInterval(tmin, tmax, crtColor);
		}
4de2b52c   Benjamin Renard   Fix some tests + ...
1927
	}
e257cfb9   Benjamin Renard   First implementat...
1928

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1929
	/**
fbe3c2bb   Benjamin Renard   First commit
1930
1931
 * @brief Draw further information (for instance start date).
 */
fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1932
1933
1934
	void TimePlot::drawStartDate(TimeAxis *pXAxis, double startTime, double stopTime)
	{
		LOG4CXX_DEBUG(gLogger, "Drawing start date.");
fbe3c2bb   Benjamin Renard   First commit
1935

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1936
1937
		if (pXAxis->_showTickMark == false || !pXAxis->_drawn || !pXAxis->_visible)
			return;
fbe3c2bb   Benjamin Renard   First commit
1938

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1939
		// use panel font to draw start date.
fbe3c2bb   Benjamin Renard   First commit
1940

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1941
1942
		// If font of legend is not defined, use panel font.
		Font font(_panel->getFont());
fbe3c2bb   Benjamin Renard   First commit
1943

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
		// PlPlotUtil::setPlFont(font);
		//CharSize charsize = PlPlotUtil::getCharacterSizeInPlPage(_panel->_page);
		// panel bounds.
		Bounds lPanelBounds(_panel->getBoundsInPlPage());

		// plotting area bounds (i.e. current viewport dimensions)
		PLFLT lXMin, lXMax, lYMin, lYMax;
		_pls->gvpd(lXMin, lXMax, lYMin, lYMax);

		// 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);

		PLFLT mxmin, mxmax, mymin, mymax;
		plgspa(&mxmin, &mxmax, &mymin, &mymax);
		float x_subpage_per_mm = 1. / (mxmax - mxmin);

		LOG4CXX_DEBUG(gLogger, "Start date to draw : " << lTimeChr);

		// Set font
		PlPlotUtil::setPlFont(font);

		PLFLT dateWidthInMm;
		dateWidthInMm = plstrl(lTimeChr);

		// set viewport for start date :
		_pls->vpor(lXMin, lXMax, lPanelBounds._y, lPanelBounds._y + lPanelBounds._height);

		// Draw start date.
		if (pXAxis->_reverse)
		{
			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);
		}
		else
		{
			lPosition = 0.;
			if (dateWidthInMm * x_subpage_per_mm > lXMin - lPanelBounds._x)
				lPosition = (dateWidthInMm * x_subpage_per_mm - lXMin + lPanelBounds._x) / (lXMax - lXMin);
			_pls->mtex("b", disp, lPosition, 1., lTimeChr);
		}

		// restore viewport :
		_pls->vpor(lXMin, lXMax, lYMin, lYMax);
fbe3c2bb   Benjamin Renard   First commit
2006
2007
	}

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
	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.getYSeriePropertiesList().empty())
				return param.getYSeriePropertiesList().begin()->getXAxisId();
			//search time axis in spectro if exist
			if (param.getSpectroProperties() != nullptr)
				return param.getSpectroProperties()->getXAxisId();
		}
fbe3c2bb   Benjamin Renard   First commit
2021

fe6b6521   Menouard AZIB   J'ai ajouté le tr...
2022
2023
		return DefaultPlotConfiguration::TIME_DEFAULT_ID;
	}
fbe3c2bb   Benjamin Renard   First commit
2024
2025

} /* namespace plot */