Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Wiki Markup
{scrollbar}

What

nameofinstance.xml

Description

Configuration for import module

schema location

http://fews.wldelft.nl/schemas/version1.0/timeSeriesImportRun.xsd

Entry in ModuleDescriptors

<moduleDescriptor id="TimeSeriesImportRun">
<description>Import module to import timeseries from the various grid-formats ie GRIB format</description>
<className>nl.wldelft.fews.system.plugin.dataImport.TimeSeriesImport</className>
</moduleDescriptor>

...

Example: Import of Meteosat images as time-series

...

Meteosat Images are generally imported as images in _\[filename\].png_ format. The Meteosat images constitute a time series of png images, that are geo-referenced by means of a specific world file. Each image needs its own world file, which in case of PNG carries the extension _\[[filename\].pgw_ .
Import of images in another format, such as JPEG is also possible. The corresponding world file for a JPEG file has the extension _\[filename\].jpg_ .
The images are imported via a common time series import, for which a specific image parameter needs to be specified in a _parameterGroup_ via the parameter id _image_ .

Code Block
xml
xml
<parameterGroup id="image">
       <parameterType>instantaneous</parameterType>
       <unit>-</unit>
       <valueResolution>8</valueResolution>
       <parameter id="image">
       <shortName>image</shortName>
       </parameter>
</parameterGroup>

...