-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from NEONScience/NC_updates
Nc updates
- Loading branch information
Showing
18 changed files
with
772 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
{ | ||
"type": "record", | ||
"name": "aquatroll200_log_data", | ||
"namespace": "org.neonscience.schema.dp0p", | ||
"doc": "Log data for the Aqua Troll 520 sensor", | ||
"__version": "1.0", | ||
"__neon_parts": [ | ||
"0317730000" | ||
], | ||
"fields": [ | ||
{ | ||
"name": "source_id", | ||
"type": "string", | ||
"doc": "Source serial number or MAC address" | ||
}, | ||
{ | ||
"name": "site_id", | ||
"type": [ | ||
"null", | ||
"string" | ||
], | ||
"doc": "NEON site identifier" | ||
}, | ||
{ | ||
"name": "readout_time", | ||
"type": { | ||
"type": "long", | ||
"logicalType": "timestamp-millis" | ||
}, | ||
"doc": "Timestamp of readout expressed in milliseconds since epoch", | ||
"__neon_units": "millisecond" | ||
}, | ||
{ | ||
"name": "pressure", | ||
"type": [ | ||
"null", | ||
"float" | ||
], | ||
"default": null, | ||
"doc": "Raw pressure of water", | ||
"__neon_units": "psi", | ||
"__neon_stream_id": "0" | ||
}, | ||
{ | ||
"name": "pressure_data_quality", | ||
"type": [ | ||
"null", | ||
"uint16" | ||
], | ||
"default": null, | ||
"doc": "Data quality id from sensor for pressure represented by a 16 bit unsigned integer", | ||
"__neon_stream_id": "1" | ||
}, | ||
{ | ||
"name": "temperature", | ||
"type": [ | ||
"null", | ||
"float" | ||
], | ||
"default": null, | ||
"doc": "Raw temperature in water", | ||
"__neon_units": "celsius", | ||
"__neon_stream_id": "2" | ||
}, | ||
{ | ||
"name": "temperature_data_quality", | ||
"type": [ | ||
"null", | ||
"uint16" | ||
], | ||
"default": null, | ||
"doc": "Data quality code from sensor for temperature represented by a 16 bit unsigned integer", | ||
"__neon_stream_id": "3" | ||
}, | ||
{ | ||
"name": "conductivity", | ||
"type": [ | ||
"null", | ||
"float" | ||
], | ||
"default": null, | ||
"doc": "Raw specific conductance in water", | ||
"__neon_units": "microsiemensPerCentimeter", | ||
"__neon_stream_id": "4" | ||
}, | ||
{ | ||
"name": "conductivity_data_quality", | ||
"type": [ | ||
"null", | ||
"uint16" | ||
], | ||
"default": null, | ||
"doc": "Data quality code from sensor for conductivity represented by a 16 bit unsigned integer", | ||
"__neon_stream_id": "5" | ||
}, | ||
{ | ||
"name": "internal_battery", | ||
"type": [ | ||
"null", | ||
"uint16" | ||
], | ||
"default": null, | ||
"doc": "Internal battery voltage in millivolts represented by a 16 bit unsigned integer", | ||
"__neon_units": "millivolt", | ||
"__neon_stream_id": "6" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"type": "record", | ||
"name": "aquatroll200_log_flags", | ||
"namespace": "org.neonscience.schema.dp0p", | ||
"doc": "Log data flags for the Aqua Troll 200 sensor", | ||
"__version": "1.0", | ||
"__neon_parts": [ | ||
"0317730000" | ||
], | ||
"fields": [ | ||
{ | ||
"name": "readout_time", | ||
"type": { | ||
"type": "long", | ||
"logicalType": "timestamp-millis" | ||
}, | ||
"doc": "Timestamp of readout expressed in milliseconds since epoch", | ||
"__neon_units": "millisecond" | ||
}, | ||
{ | ||
"name": "pressureLogDataQF", | ||
"type": [ | ||
"null", | ||
"int8" | ||
], | ||
"default": null, | ||
"doc": "Quality flag for the pressure log data (1=fail, 0=pass, -1=NA (i.e., could not be run))", | ||
"__neon_units": "NA" | ||
}, | ||
{ | ||
"name": "logDataDateQF", | ||
"type": [ | ||
"null", | ||
"int8" | ||
], | ||
"default": null, | ||
"doc": "Quality flag for edited log data readout time (1=fail, 0=pass, -1=NA (i.e., could not be run))", | ||
"__neon_units": "NA" | ||
}, | ||
{ | ||
"name": "temperatureLogDataQF", | ||
"type": [ | ||
"null", | ||
"int8" | ||
], | ||
"default": null, | ||
"doc": "Quality flag for the temperature log data (1=fail, 0=pass, -1=NA (i.e., could not be run))", | ||
"__neon_units": "NA" | ||
}, | ||
{ | ||
"name": "conductivityLogDataQF", | ||
"type": [ | ||
"null", | ||
"int8" | ||
], | ||
"default": null, | ||
"doc": "Quality flag for the conductivity log data (1=fail, 0=pass, -1=NA (i.e., could not be run))", | ||
"__neon_units": "NA" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.