Schemas / BIM / OpenBIM
rig.bim.site
v0.31.0 · draft 3 fields 0 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
latitudeDegrees |
float | optional | Optional. Decimal degrees north; absent = unset |
longitudeDegrees |
float | optional | Optional. Decimal degrees east; absent = unset |
elevation |
float | optional | Optional. Site elevation in document units; absent = unset |
Site / plot marker (IfcSite). Format when present.
Compose rig.spatial.group when children nest under this site. Do not emit IFC’s DMS latitude/longitude triples - convert to decimal degrees at the host boundary.
JSON Schema
Resolves at https://rig.works/schemas/rig.bim.site.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.bim.site.schema.json",
"title": "rig.bim.site",
"type": "object",
"additionalProperties": false,
"properties": {
"latitudeDegrees": {
"$ref": "./_defs.schema.json#/$defs/float"
},
"longitudeDegrees": {
"$ref": "./_defs.schema.json#/$defs/float"
},
"elevation": {
"$ref": "./_defs.schema.json#/$defs/float"
}
}
}