generated from internetofwater/gwtc2022-workshop
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhydrologic-location.jsonld
37 lines (37 loc) · 1.24 KB
/
hydrologic-location.jsonld
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
35
36
37
{
"@context": [
{
"schema": "https://schema.org/",
"skos": "http://www.w3.org/2004/02/skos/core#",
"hyf": "https://www.opengis.net/def/schema/hy_features/hyf/",
"name": "schema:name",
"gsp": "http://www.opengis.net/ont/geosparql#",
"sameAs": "schema:sameAs",
"related": "skos:related",
"description": "schema:description",
"image": {
"@id": "schema:image",
"@type": "@id"
}
}
],
"@id": "{{ data["@id"] }}",
"@type": [
"https://www.opengis.net/def/schema/hy_features/hyf/HY_HydrometricFeature",
"https://www.opengis.net/def/schema/hy_features/hyf/HY_HydroLocation"
],
"name": "{{ data.PROGRAM_SITE_ID }}",
"description": "{{ data.SITE_TYPE }} at {{ data.LOCATION_DESCRIPTION }}",
"schema:provider": "{{ data.PROGRAM_NAME }}",
"hyf:HY_HydroLocationType": "hydrometricStation",
"sosa:isFeatureOfInterestOf": {
"schema:url": "{{ data.URL_SITE }}",
"@type": "sosa:ObservationCollection",
"schema:format": [
"application/json"
]
},
"schema:geoWithin": "https://geoconnex.us/ref/states/06",
"geo": {{ data['schema:geo'] | to_json | safe }},
"gsp:hasGeometry": {{ data['gsp:hasGeometry'] | to_json }}
}