You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Overview

Imports time series data (grids) ArcInfoAscii files. The time and parameter information are encoded in the filename. Example:

Rain_20071010231500.asc (parameterId_YYYYMMDDHHMMSS.extension)

parameterId = Rain

year = 2007

month = 10

day = 10

hours = 23

min = 15

sec = 00

This import always used the locationid ARC_INFO_LOC as the external location.

Configuring the Import

The reader is named ArcInfoAsciiGrid which should be configured in the general section of the import: <importType>ArcInfoAsciiGrid</importType>.
Example:

<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSPY v2004 rel. 3 U (http://www.xmlspy.com) by tacoma (WL | Delft Hydraulics) -->
<!--Sample XML file generated by XMLSPY v2004 rel. 3 U (http://www.xmlspy.com)-->
<timeSeriesImportRun xmlns="http://www.wldelft.nl/fews" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wldelft.nl/fews
http://fews.wldelft.nl/schemas/version1.0/timeSeriesImportRun.xsd">
	<import>
		<general>
			<importType>ArcInfoAsciiGrid</importType>
			<folder>//wl06602/myf/ttt</folder>
			<idMapId>IdImportSidbAsc</idMapId>
 		</general>
 	        <timeSeriesSet>
			<moduleInstanceId>ImportSidbAsc</moduleInstanceId>
			<valueType>grid</valueType>
			<parameterId>P.radar.actual</parameterId>
			<locationId>ARC_INFO_LOC</locationId>
			<timeSeriesType>external historical</timeSeriesType>
			<timeStep unit="minute" multiplier="15"/>
                        <readWriteMode>add originals</readWriteMode>
		</timeSeriesSet>
        </import>
</timeSeriesImportRun>

The IdMapping file should always refer to the external location ARC_INFO_LOC.
Example:

<?xml version="1.0" encoding="UTF-8"?>
<idMap version="1.1" xmlns="http://www.wldelft.nl/fews" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wldelft.nl/fews http://fews.wldelft.nl/schemas/version1.0/idMap.xsd">
	<parameter external="CEH" internal="P.radar.actual"/>
	<location external="ARC_INFO_LOC" internal="ARC_INFO_LOC"/>
</idMap>

The file format

Introduction

ARC ASCIIGRID refers to a specifc interchange format developed for ARC/INFO rasters in ASCII format. The format consists of a header that specifies the geographic domain and resolution, followed by the actual grid cell values. Usually the file extension is .asc.

ncols 157
nrows 171
xllcorner -156.08749650000
yllcorner 18.870890200000
cellsize 0.00833300
0 0 1 1 1 2 3 3 5 6 8 9 12 14 18 21 25 30 35 41 47 53
59 66 73 79 86 92 97 102 106 109 112 113 113 113 111 109 106
103 98 94 89 83 78 72 67 61 56 51 46 41 37 32 29 25 22 19
etc...

Geographic header

Coordinates may be in decimal or integer format.
ncols xxxxx

ncols refers to the number of columns in the grid and xxxxx is the numerical value
nrows xxxxx

nrows refers to the number of rows in the grid and xxxxx is the numerical value
xllcorner xxxxx

xllcorner refers to the western edge of the grid and xxxxx is the numerical value
yllcorner xxxxx

yllcorner refers to the southern edge of the grid and xxxxx is the numerical value
cellsize xxxxx

cellsize refers to the resolution of the grid and xxxxx is the numerical value
nodata_value xxxxx

nodata_value refers to the value that represents missing data and xxxxx is the numerical value. The default is -9999.

  • No labels