Skip to content

Commit 0a815d4

Browse files
committed
Adding examples from the poster/netcdf-ld landing page
1 parent 003e14e commit 0a815d4

File tree

3 files changed

+182
-0
lines changed

3 files changed

+182
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
netcdf avhrr-only-v2.19810901_a {
2+
dimensions:
3+
time = 1 ;
4+
zlev = 1 ;
5+
lat = 720 ;
6+
lon = 1440 ;
7+
variables:
8+
float time(time) ;
9+
time:long_name = "Center time of the day" ;
10+
time:units = "days since 1978-01-01 00:00:00" ;
11+
time:standard_name = "time" ;
12+
time:axis = "T" ;
13+
time:calendar = "gregorian" ;
14+
float zlev(zlev) ;
15+
zlev:long_name = "Sea surface height" ;
16+
zlev:units = "meters" ;
17+
zlev:actual_range = "0, 0" ;
18+
zlev:standard_name = "height" ;
19+
zlev:axis = "Z" ;
20+
float lat(lat) ;
21+
lat:long_name = "Latitude" ;
22+
lat:units = "degrees_north" ;
23+
lat:grids = "Uniform grid from -89.875 to 89.875 by 0.25" ;
24+
lat:standard_name = "latitude" ;
25+
lat:axis = "Y" ;
26+
float lon(lon) ;
27+
lon:long_name = "Longitude" ;
28+
lon:units = "degrees_east" ;
29+
lon:grids = "Uniform grid from 0.125 to 359.875 by 0.25" ;
30+
lon:standard_name = "longitude" ;
31+
lon:axis = "X" ;
32+
short sst(time, zlev, lat, lon) ;
33+
sst:long_name = "Daily sea surface temperature" ;
34+
sst:units = "degrees_C" ;
35+
sst:_FillValue = -999s ;
36+
sst:add_offset = 0.f ;
37+
sst:scale_factor = 0.01f ;
38+
sst:valid_min = -300s ;
39+
sst:valid_max = 4500s ;
40+
sst:standard_name = "sea_surface_temperature" ;
41+
short anom(time, zlev, lat, lon) ;
42+
anom:long_name = "Daily sea surface temperature anomalies" ;
43+
anom:units = "degrees C" ;
44+
anom:_FillValue = -999s ;
45+
anom:add_offset = 0.f ;
46+
anom:scale_factor = 0.01f ;
47+
anom:valid_min = -1200s ;
48+
anom:valid_max = 1200s ;
49+
short err(time, zlev, lat, lon) ;
50+
err:long_name = "Estimated error standard deviation of analysed_sst" ;
51+
err:units = "degrees C" ;
52+
err:_FillValue = -999s ;
53+
err:add_offset = 0.f ;
54+
err:scale_factor = 0.01f ;
55+
err:valid_min = 0s ;
56+
err:valid_max = 1000s ;
57+
short ice(time, zlev, lat, lon) ;
58+
ice:long_name = "Sea ice concentration" ;
59+
ice:units = "percentage" ;
60+
ice:_FillValue = -999s ;
61+
ice:add_offset = 0.f ;
62+
ice:scale_factor = 0.01f ;
63+
ice:valid_min = 0s ;
64+
ice:valid_max = 100s ;
65+
66+
// global attributes:
67+
:Conventions = "CF-1.0" ;
68+
:title = "Daily-OI-V2, final, Data (Ship, Buoy, AVHRR, GSFC-ice)" ;
69+
:History = "Version 2.0" ;
70+
:creation_date = "2011-05-04" ;
71+
:Source = "NOAA/National Climatic Data Center" ;
72+
:Contact = "Dick Reynolds, email: Richard.W.Reynolds@noaa.gov & Chunying Liu, email: Chunying.liu@noaa.gov" ;
73+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"@context": {
3+
"dc": "http://purl.org/dc/elements/1.1/",
4+
"ex": "http://example.org/vocab#",
5+
"xsd": "http://www.w3.org/2001/XMLSchema#",
6+
"ncld": "http://binary-array-ld.net/latest/",
7+
"cf": "http://cf-conventions.org/def/1.6.0/",
8+
"acdd": "http://www.unidata.ucar.edu/netcdf/def/acdd/1.0/"
9+
},
10+
"@graph": [
11+
{
12+
"@type": "ncld:Container",
13+
"ncld:contains": [
14+
{
15+
"@id": "_:sst"
16+
},
17+
{
18+
"@id": "_:anom"
19+
},
20+
{
21+
"@id": "_:err"
22+
},
23+
{
24+
"@id": "_:ice"
25+
}
26+
],
27+
"acdd:Conventions": "CF-1.0",
28+
"acdd:title": "Daily-OI-V2, final, Data (Ship, Buoy, AVHRR, GSFC-ice)"
29+
},
30+
{
31+
"@id": "_:sst",
32+
"@type": "ncld:Array",
33+
"cf:long_name": "Daily sea surface temperature",
34+
"cf:standard_name": {
35+
"@id": "http://mmisw.org/ont/cf/parameter/sea_surface_temperature"
36+
},
37+
"cf:units": "degrees_C",
38+
"cf:valid_max": "4500s",
39+
"cf:valid_min": "-300s",
40+
"http://www.w3.org/2000/01/rdf-schema#label": "Daily sea surface temperature"
41+
},
42+
{
43+
"@id": "_:anom",
44+
"@type": "ncld:Array",
45+
"cf:long_name": "Daily sea surface temperature anomalies",
46+
"cf:units": "degrees C",
47+
"cf:valid_max": "1200s",
48+
"cf:valid_min": "-1200s"
49+
},
50+
{
51+
"@id": "_:err",
52+
"@type": "ncld:Array",
53+
"cf:long_name": "Estimated error standard deviation of analysed_sst",
54+
"cf:units": "degrees C",
55+
"cf:valid_max": "1000s",
56+
"cf:valid_min": "0s"
57+
},
58+
{
59+
"@id": "_:ice",
60+
"@type": "ncld:Array",
61+
"cf:long_name": "Sea ice concentration",
62+
"cf:units": "percentage",
63+
"cf:valid_max": "100s",
64+
"cf:valid_min": "0s"
65+
}
66+
]
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
2+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
3+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
4+
@prefix cf: <http://cf-conventions.org/def/1.6.0/> .
5+
@prefix acdd: <http://www.unidata.ucar.edu/netcdf/def/acdd/1.0/> .
6+
@prefix ncld: <http://binary-array-ld.net/latest/> .
7+
@prefix cf-parameter: <http://mmisw.org/ont/cf/parameter/> .
8+
9+
10+
_:avhrr-only-v2.19810901_a.nc a ncld:Container ;
11+
acdd:Conventions "CF-1.0" ;
12+
acdd:title "Daily-OI-V2, final, Data (Ship, Buoy, AVHRR, GSFC-ice)" ;
13+
ncld:contains _:sst, _:anom, _:err, _:ice .
14+
15+
16+
_:sst a ncld:Array ;
17+
rdfs:label "Daily sea surface temperature" ;
18+
cf:long_name "Daily sea surface temperature" ;
19+
cf:units "degrees_C" ;
20+
cf:valid_min "-300s" ;
21+
cf:valid_max "4500s" ;
22+
cf:standard_name cf-parameter:sea_surface_temperature .
23+
24+
25+
_:anom a ncld:Array ;
26+
cf:long_name "Daily sea surface temperature anomalies" ;
27+
cf:units "degrees C" ;
28+
cf:valid_min "-1200s" ;
29+
cf:valid_max "1200s" .
30+
31+
32+
_:err a ncld:Array ;
33+
cf:long_name "Estimated error standard deviation of analysed_sst" ;
34+
cf:units "degrees C" ;
35+
cf:valid_min "0s" ;
36+
cf:valid_max "1000s" .
37+
38+
_:ice a ncld:Array;
39+
cf:long_name "Sea ice concentration" ;
40+
cf:units "percentage" ;
41+
cf:valid_min "0s" ;
42+
cf:valid_max "100s" .

0 commit comments

Comments
 (0)