Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

By specifying a red, green and blue time series sets that provide values between 0..255 you can store and show true color satellite images as a grid time series. There is no need to configure classbreaks. You can change the brightness and contrast for each color channel separately. The incrementer changes the brightness and the multiplier the contrast of the color channel. When the incrementer + multiplier * value exceeds 255 it is it set to 255, when the result is negative the color channel is set to 0. Since the 2020.02 it is possible to display a true color image and a normal grid with a legend at the same time.

Code Block
languagexml
titleValue/Direction with arrows
<gridPlot id="RGB">
	<dataLayer>
		<redTimeSeriesSet>
			<moduleInstanceId>InterpolateSentinel2</moduleInstanceId>
			<valueType>grid</valueType>
			<parameterId>Intensity_B4</parameterId>
			<locationId>A21</locationId>
			<timeSeriesType>external historical</timeSeriesType>
			<timeStep unit="nonequidistant"/>
			<relativeViewPeriod unit="week" end="52" start="-52"/>
			<readWriteMode>read only</readWriteMode>
			<multiplier>1000</multiplier> <!--red contrast-->
			<incrementer>20</incrementer> <!--red brightness-->
		</redTimeSeriesSet>
		<greenTimeSeriesSet>
			<moduleInstanceId>InterpolateSentinel2</moduleInstanceId>
			<valueType>grid</valueType>
			<parameterId>Intensity_B3</parameterId>
			<locationId>A21</locationId>
			<timeSeriesType>external historical</timeSeriesType>
			<timeStep unit="nonequidistant"/>
			<relativeViewPeriod unit="week" end="52" start="-52"/>
			<readWriteMode>read only</readWriteMode>
			<multiplier>1000</multiplier> <!--green contrast-->
			<incrementer>20</incrementer> <!--green brightness-->
		</greenTimeSeriesSet>
		<blueTimeSeriesSet>
			<moduleInstanceId>InterpolateSentinel2</moduleInstanceId>
			<valueType>grid</valueType>
			<parameterId>Intensity_B2</parameterId>
			<locationId>A21</locationId>
			<timeSeriesType>external historical</timeSeriesType>
			<timeStep unit="nonequidistant"/>
			<relativeViewPeriod unit="week" end="52" start="-52"/>
			<readWriteMode>read only</readWriteMode>
			<multiplier>1000</multiplier> <!--blue contrast-->
			<incrementer>20</incrementer><!--blue brightness-->
		</blueTimeSeriesSet>
	</dataLayer>
</gridPlot>

...