Schemas / Place (civic / postal)
rig.place.geo
v0.31.0 · draft 3 fields 2 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
latitudeDegrees |
number-90 – 90 | required | Geodetic latitude, −90...90 |
longitudeDegrees |
number-180 – 180 | required | Geodetic longitude, −180...180 |
altitudeMetres |
float | optional | Optional. Ellipsoidal height in metres |
WGS84 geodetic pin. Format when present.
A map coordinate for a place - not a postal address and not scene pose. Compose beside rig.place.address when a site has both a civic identity and a pin. A plant standing here composes this with rig.plant.taxon / rig.plant.occurrence.
Datum is WGS84. Do not put projected site-plan metres here - those belong on rig.spatial.transform inside the drawing. Geocoding and CRS conversion are fulfillment.
JSON Schema
Resolves at https://rig.works/schemas/rig.place.geo.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.place.geo.schema.json",
"title": "rig.place.geo",
"type": "object",
"additionalProperties": false,
"properties": {
"latitudeDegrees": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"longitudeDegrees": {
"type": "number",
"minimum": -180,
"maximum": 180
},
"altitudeMetres": {
"$ref": "./_defs.schema.json#/$defs/float"
}
},
"required": [
"latitudeDegrees",
"longitudeDegrees"
],
"description": "WGS84 geodetic pin. Not a postal address and not scene pose."
}