Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

data uploaded with 2 files.
upload.yml

upload.yml specification

waterdata.csv

location: coordinates: x: float y: float
Code Block
languageyaml
text
location, lat, lon, location_description, thing, thing_description,sensor, sensor_description, phenomenonTime, result, datastream, datastream_description, observed_property, observed_property_description
foo, 34.13, -105.54, well, water level, water level description, transducer, diver sensor, 2010-01-01T01:00:00.000Z, 10, dbs, depth below surface, bgs, calculated water depth below ground surface
foo, 34.13, -105.54, well, water level, water level description, transducer, diver sensor, 2010-01-01T11:00:00.000Z, 11, dbs, depth below surface, bgs, calculated water depth below ground surface
foo, 34.13, -105.54, well, water level, water level description, transducer, diver sensor, 2010-01-01T12:00:00.000Z, 12, dbs, depth below surface, bgs, calculated water depth below ground surface
foo, 34.13, -105.54, well, water level, water level description, transducer, diver sensor, 2010-01-01T01:00:00.000Z, 10, dbs, depth below surface, bgs, calculated water depth below ground surface
bar, 34.53, -103.64, well, water level, water level description, transducer, diver sensor, 2010-01-01T11:00:00.000Z, 11, dbs, depth below surface, bgs, calculated water depth below ground surface
bar, 34.53, -103.64, well, water level, water level description, transducer, diver sensor, 2010-01-01T12:00:00.000Z, 12, dbs, depth below surface, bgs, calculated water depth below ground surface

waterdata.yml specification

Code Block
languageyaml
location:
  geometry: Geojson_geometry
  name: float
  description: str
sensor:
  name: str
  description: str
  metadata: str
thing:
  name: str
  description: str
  properties: YAML object
observed_property: 
  name: str
  description: str
  definition: str
datastream:
  name: str
  unitOfMeasurement: CV_str
  description: str
  observationType: CV_str
observations:
  - isotimestamp, float|bool|str

...

Code Block
languageyaml
location:
  name: NM-0000
  geometry:
    type: Point
    corrdinates: 
   x:  - -106.76
     y:- 34.52
  description: WELL
sensor:
  name: DO-131d-31324
  description: Diver pressure transducer
  metadata: http://diver.com/link_to_transducer.pdf
thing:
  name: GroundWaterLevel
  description: NMBGR Groundwater Monitoring Network
observed_property:
  name: Depth below ground surface
  description: continuous pressure transducer measurement of groundwater head
datastream:
  name: Depth Below Surface
  description: calculated depth below ground surface. calibrated to manual measurements
  unitOfMeasurement: foot
  observationType: double
observations:
  - 2020-01-10T00:00:00.000Z,  10.0
  - 2020-01-10T01:00:00.000Z,  11.0
  - 2020-01-10T02:00:00.000Z,  10.4

...