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

Compare with Current View Page History

« Previous Version 8 Current »

Overview

This export is available in DELFT-FEWS versions after 28-10-2009 (FEWS version 2009.02)

Exports data to NetCDF files which comply to the CF 1.4 standard.
More information about the cf standards can be found at: http://cfconventions.org/

There are six types of NetCDF-CF exports which can be defined:

Configuring the export

An example of the NETCDF-CF_TIMESERIES_MATROOS export can be found at NETCDF-CF_TIMESERIES. The only difference is that the exportType must be changed to NETCDF-CF_TIMESERIES_MATROOS.

The structure of the netCDF file which is created is shown below.

200601010000_example.nc
netcdf 200601010000_example {
dimensions:
	time = UNLIMITED ; // (1152 currently)
	stations = 20 ;
	char_leng_id = 10 ;
	char_leng_name = 30 ;
variables:
	float time(time) ;
		time:standard_name = "time" ;
		time:long_name = "time" ;
		time:units = "minutes since 1970-01-01 00:00:00.0 +0000" ;
		time:axis = "T" ;
	float lat(stations) ;
		lat:long_name = "Station coordinates, latitude" ;
		lat:units = "degrees_north" ;
		lat:axis = "y" ;
	float lon(stations) ;
		lon:long_name = "Station coordinates, longitude" ;
		lon:units = "degrees_east" ;
		lon:axis = "x" ;
	float y(stations) ;
		y:standard_name = "projection_y_coordinate" ;
		y:long_name = "y coordinate in local grid" ;
		y:axis = "Y" ;
		y:_FillValue = 9.96921e+036f ;
	float x(stations) ;
		x:standard_name = "projection_x_coordinate" ;
		x:long_name = "x coordinate in local grid" ;
		x:axis = "X" ;
		x:_FillValue = 9.96921e+036f ;
	char node_id(stations, char_leng_id) ;
		node_id:long_name = "station identification code" ;
	char nodenames(stations, char_leng_name) ;
		nodenames:long_name = "station name" ;
	float waterstandendm_knopen(time, stations) ;
		waterstandendm_knopen:long_name = "WaterstandenDM_Knopen" ;
		waterstandendm_knopen:units = "m" ;
		waterstandendm_knopen:_FillValue = -999.f ;

// global attributes:
		:title = "Netcdf data" ;
		:institution = "Deltares" ;
		:source = "export NETCDF-CF_TIMESERIES_MATROOS from FEWS" ;
		:history = "Created at Wed Oct 14 11:57:24 GMT 2009" ;
		:references = "http://www.deltares.nl" ;
		:Conventions = "CF-1.4" ;
		:coordinate_system = "RD" ;
  • No labels