Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

The following example of an Import Module Instance will import the time series as equidistant series for timezone GMT with a time step of 6 hours.

Code Block
xml
xml
titleImportLandsat.xmlxml
<timeSeriesImportRun ......">
  <import>
    <!--Meteo data-->
    <general>
      <importType>Landsat-HDF5</importType>
      <folder>$IMPORT_FOLDER_LANDSAT$</folder>
      <failedFolder>$IMPORT_FAILED_FOLDER_LANDSAT$</failedFolder>
      <backupFolder>$IMPORT_BACKUP_FOLDER_LANDSAT$</backupFolder>
      <idMapId>IdImportLandsat</idMapId>
      <unitConversionsId>ImportLandsatUnits</unitConversionsId>
      <!--radar is in GMT-->
      <importTimeZone>
        <timeZoneOffset>+00:00</timeZoneOffset>
      </importTimeZone>
      <dataFeedId>Landsat</dataFeedId>
    </general>
    <timeSeriesSet>
      <moduleInstanceId>ImportLandsat</moduleInstanceId>
      <valueType>grid</valueType>
      <parameterId>Snow-cover</parameterId>
      <locationId>Landsat-grid</locationId>
      <timeSeriesType>external historical</timeSeriesType>
      <timeStep unit="hour" multiplier="3" timeZone="GMT+1"/>
      <readWriteMode>add originals</readWriteMode>
      <synchLevel>6</synchLevel>
    </timeSeriesSet>
  </import>
</timeSeriesImportRun>

...

Info

Defines mappings between Landsat and FEWS parameters and locations.

Code Block
xml
xml
titlesample of IdImportLandsat.xmlxml
<idMap version="1.1" ......>
  <map internalParameter="Snowcover" internalLocation="Landsat-grid" externalParameter="SC"  externalLocation="Landsat-grid"/>
</idMap>

...

Info

Defines the definition of the Landsat grid. As not all this information is present in the Landsat files, it needs to be defined in this way.

Code Block
xml
xml
titlesample of Grids.xmlxml
<?xml version="1.0" encoding="UTF-8"?>
<grids ...........>
	<regular locationId="GridName">
		<rows>651</rows>
		<columns>1701</columns>
		<geostationarySatelliteView>
			<centralMeridian>0.0</centralMeridian>
		</geostationarySatelliteView>
		<firstCellCenter>
			<!-- First x must be -COFF*2**16/CFAC, first y must be (NR-LOFF)*2**16/LFAC as found in the HDF5 files
			     Cell sizes must be 2**16/CFAC and 2**16/LFAC -->
			<x>-1.4796</x>
			<y>8.6854</y>
		</firstCellCenter>
		<xCellSize>0.00480387</xCellSize>
		<yCellSize>0.00480387</yCellSize>
</grids>

...