3.0.0-dev1
EDK
External drift kriging.
Loading...
Searching...
No Matches
edk.nml
Go to the documentation of this file.
1!> \file edk.nml
2!> \brief EDK-Grid **Main configuration file for Precipitation for GER**
3
4&mainvars ! namelist mainpaths
5! -------------------------------------------------------------------
6! ----------------- INPUT SPECIFICATIONS ----------------------------
7!
8! DataPathIn contains the path to the meteorological input files
9! it can be a netcdf file, then a 3-dim field is expected and
10! further coordinate and variable names are expected
11datapathin = "check/pre_data/"
12!
13! value in the meteorological input files that is used as missing value
14nodatavalue = -9
15! Specifications of variable and coordinate names in case DataPathIn
16! is a netcdf file
17ncin_variable_name = "pre"
18ncin_dem_variable_name = "dem"
19! name of coordinates, these must be in [m]
20ncin_ycoord_name = "northing"
21ncin_xcoord_name = "easting"
22!
23! Correct interpolated negative values to zero
24! (set for precipitation to true !)
25correctneg = .true.
26!
27! Set values further away than the distance threshold to zero
28distzero = .true.
29!
30fnamedem = "check/dem.asc"
31cellfactor = 40
32! name of coordinates (northing and easting) in [m]
33ncout_dem_ycoord_name = "northing"
34ncout_dem_xcoord_name = "easting"
35! name of coordinates (latitude and longitude) in deg
36ncout_dem_latitude = "latitude"
37ncout_dem_longitude = "longitude"
38! name of the DEM variable in the netcdf file
39ncout_dem_variable_name = "dem"
40
41!
42datapathout = "output/"
43fileout = "edk.nc"
44!
45! Name of Look Up Table of Station data
46fnamesta = "check/pre_data/Stations_in_study_domain.txt"
47
48! The value that should be multiplied to the data in the netcdf file
49dataconvertfactor = 1.0e-1
50! The value that should be added to the data in the netcdf file
51offset = 0
52![FINAL VALUE = NETCDF VALUE * DataConvertFactor + OffSet]
53
54!
55! -------------------------------------------------------------------
56! ------------ PROCESSING PERIOD ------------------------------------
57ystart = 1990
58mstart = 1
59dstart = 1
60yend = 1990
61mend = 12
62dend = 31
63! Number of Time Buffering Days (Divides the EDK processing into chunks accross the time dimension)
64tbuffer = 10
65!
66! -------------------------------------------------------------------
67! ------------ INTERPOLATION METHOD ---------------------------------
68!
69! InterMth = 2 -> EDK
70! InterMth = 1 -> OK
71! InterMth = 0 -> No interpolation
72intermth = 2
73! maximum search distance for interpolation [m]
74maxdist = 1.5e5
75!
76! -------------------------------------------------------------------
77! ----------------- VARIOGRAM ESTIMATION ----------------------------
78flagvario = .false.
79!
80! number of variogram parameters
81nparam = 3
82! type of theoretical variogramm (1=spherical, 2 = exponential)
83vtype = 2
84!
85! file name where to store the variogram parameters
86! (if flagVario is false, variogram parameters )
87! (for interpolation are read in here: )
88fnamevario = "check/var_param_de_pre.txt"
89dh = 1.0e3 ! binsize for variogram [m]
90hmax = 1.5e5 ! max distance h for variogram estimation [m]
91! -------------------------------------------------------------------
92! --------------- NC OUTPUT SPECIFICATION ----------------------------
93! global attributes:
94originator = 'XXXX'
95contact = 'firstname.surname@ufz.de'
96crs = 'EPSG:4326 '
97title = '' ! Any text
98! source: Represents the source and method used
99! to produce the original data. For data
100! generated by models, the model name
101! and version should be listed here
102source = ''
103institution = 'Helmholtz Center for Environmental Research'
104!
105! invert latitude: (set True if working with mHM input data!)
106invert_y = .true.
107!
108! variable attributes:
109variable_name = 'pr'
110variable_unit = 'mm/d'
111variable_long_name = 'Precipitation'
112variable_standard_name = 'precipitation_flux'
113variable_calendar_type = 'proleptic_gregorian'
114! -------------------------------------------------------------------
115! -------------------------------------------------------------------
116/ !END*******Main Config***********