-
Notifications
You must be signed in to change notification settings - Fork 0
/
zscore.cdl
34 lines (34 loc) · 1.07 KB
/
zscore.cdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
netcdf zscore {
dimensions:
lon = 9 ;
lat = 9 ;
time = UNLIMITED ;
variables:
float lon(lon) ;
lon:long_name = "longitude" ;
lon:units = "degrees_east" ;
lon:actual_range = 1755000.f, 1835000.f ;
float lat(lat) ;
lat:long_name = "latitude" ;
lat:units = "degrees_north" ;
lat:actual_range = 824999.8f, 905000.2f ;
int time(time) ;
time:long_name = "time" ;
time:units = "years since 1950-00-00 00:00" ;
float zscore_burnedf(time, lat, lon) ;
zscore_burnedf:long_name = "z-score of burned fraction" ;
zscore_burnedf:units = "z" ;
zscore_burnedf:_FillValue = -9999.f ;
zscore_burnedf:missing_value = -9999.f ;
zscore_burnedf:actual_range = 0.f,0.f ;
zscore_burnedf:_ChunkSizes = 500, 9, 9 ;
zscore_burnedf:_DeflateLevel = 1 ;
float zscore_acflux(time, lat, lon) ;
zscore_acflux:long_name = "z-score of fire carbon emissions" ;
zscore_acflux:units = "z" ;
zscore_acflux:_FillValue = -9999.f ;
zscore_acflux:missing_value = -9999.f ;
zscore_acflux:actual_range = 0.f,0.f ;
zscore_acflux:_ChunkSizes = 500, 9, 9 ;
zscore_acflux:_DeflateLevel = 1 ;
}