Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add unit property #291

Merged
merged 3 commits into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion camtrap-dp-profile.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Camera Trap Data Package",
"description": "Data exchange format for camera trap data. https://tdwg.github.io/camtrap-dp/",
"description": "Data exchange format for camera trap data. <https://tdwg.github.io/camtrap-dp/>",
"type": "object",
"$defs": {
"version": {
Expand Down
7 changes: 6 additions & 1 deletion deployments-table-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,14 @@
},
{
"name": "coordinateUncertainty",
"description": "Horizontal distance in meters from the given `latitude` and `longitude` describing the smallest circle containing the deployment location. Especially relevant when coordinates are rounded to protect sensitive species.",
"description": "Horizontal distance from the given `latitude` and `longitude` describing the smallest circle containing the deployment location. Expressed in meters. Especially relevant when coordinates are rounded to protect sensitive species.",
"skos:exactMatch": "http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters",
"type": "integer",
"constraints": {
"required": false,
"minimum": 1
},
"unit": "m",
"example": 100
},
{
Expand Down Expand Up @@ -137,6 +138,7 @@
"required": false,
"minimum": 0
},
"unit": "m",
"example": 1.2
},
{
Expand All @@ -148,6 +150,7 @@
"minimum": -90,
"maximum": 90
},
"unit": "°",
"example": -90
},
{
Expand All @@ -159,6 +162,7 @@
"minimum": 0,
"maximum": 360
},
"unit": "°",
"example": 225
},
{
Expand All @@ -169,6 +173,7 @@
"required": false,
"minimum": 0
},
"unit": "m",
"example": 9.5
},
{
Expand Down