base-spatial-data-properties
The base-spatial-data-properties component extends base-object-properties with
fields required by all spatial data objects. Most object schemas compose this component via allOf.
In addition to the inherited fields (name, uuid, description, etc.), it adds:
bounding_box— The geographic bounding box of the spatial data.coordinate_reference_system— The coordinate reference system in which the object's spatial data is defined.
Axis order is defined by the CRS. The order, direction, and meaning of the coordinate axes
(x/y/z, min_x/min_y/min_z, …) are determined by the object's
coordinate_reference_system, following the axis order declared in the CRS (its WKT2 / EPSG
definition). The labels x, y, and z denote the first, second, and third CRS axes — they do
not imply easting, northing, and elevation. See
Coordinate reference systems and axis order.
Used by: Most object schemas.
Properties
base-spatial-data-properties (v1.1.0)
Properties common to all types of Geoscience spatial data such as name, unique identifier, and bounding box
| Property | Type | Description | Flags |
|---|---|---|---|
| name | String | Name of the object. | ⬆️ ✅ |
| uuid | base-object-properties | Identifier of the object. | ⬆️ ✅ |
| description | String | Optional field for adding additional description to uniquely identify this object. | ⬆️ |
| extensions | Object | Extended properties that may be associated to the object, but not specified in the schema | ⬆️ |
| tags | Object | Key-value pairs of user-defined metadata | ⬆️ |
| lineage | lineage | Information about the history of the object | ⬆️ |
| bounding_box | bounding-box | Bounding box of the spatial data. | ✅ |
| coordinate_reference_system | crs | Coordinate system of the spatial data | ✅ |
Legend
| Flag | Description |
|---|---|
| ⬆️ | Inherited property |
| ✅ | Required property |