pfLandCoverResource
Description
Represents land-covers and their classifications.
The pfLandCoverResource schema inherits from landCoverResource.
Properties
Name | Description | Required | Type |
---|---|---|---|
SpatialFeature | The geojson feature, with its geometry | No | geoJsonFeature |
Centroid | The centroid of the spatial resource. If the spatial feature is not convex, the centroid may lie outside the bounds of the spatial feature | No | geoJsonPoint |
LandCoverClass | Defines the class of land cover object (e.g., scheme: 'nz.lcdb.5.classes', primary: 'helipad_pnt'). | No | classificationType |
SpeciesPresent | An array of species that have been observed at this feature (this is a summary, not individual observations). | No | Array of speciesPresenceType |
Eligibility | Classification under a compliance or funding programme. | No | complianceEligibilityType |
Classifications | A set of hierarchical classifications for the Site. | No | Array of classificationType |
Activities | A set of land use activities for this Site. | No | Array of landUseActivityType |
TotalArea | If the feature is a polygon, the total area (default is in square metres - MTK) | No | areaMeasureType |
TotalLength | If the feature is linear, the total length. If a polygon, the perimeter (default is in metres - MTR) | No | lengthMeasureType |
ParentFeature | Identifies the parent of this spatial resource by name, identifier and uri. | No | featureReferenceType |
Id | Unique identifier (UUID) used within the current server to identify the resource. | Yes | string |
Identifiers | Identifiers for the resource (see well-known/schemes... for example identity schemes). | No | Array of identifierType |
Links | Linked resources that are related to the current resource. | No | Array of relationType |
Meta | Meta-data for the resource. Mandatory if you wish to support synchronisation. | Yes | metaDataType |
Name | A user-readable name for the resource. | No | string |
Self | Uniform resource identifier (URI) of the resource (rel=self). | No | string |
Examples
Example 1
{
"resourceType": "pfLandCoverResource",
"id": "0e952cd8-dffd-4fb5-b4fa-8a245c06c6d9",
"name": "Bayer Hill Farm, Bakkers Block land cover 21/03/2024",
"meta": {
"sourceId": {
"scheme": "com.farmapp.cover",
"id": "BHF4739"
},
"modified": "2024-03-24T08:00:00Z"
},
"totalArea": {
"measurement": 23000,
"units": "MTK"
},
"classifications": [
{
"scheme": "nz.rural.classification",
"primary": "rural",
"secondary": "cropping"
},
{
"scheme": "nz.rural.classification",
"primary": "rural",
"secondary": "grazing"
}
],
"activities": [
{
"id": {
"id": "98765",
"scheme": "nz.rural.activities"
},
"isPrimary": true,
"name": "Maize",
"productiveArea": {
"measurement": 14100,
"units": "MTK"
}
},
{
"id": {
"id": "75492",
"scheme": "nz.rural.activities"
},
"isPrimary": false,
"name": "Grazing",
"productiveArea": {
"measurement": 8300,
"units": "MTK"
}
}
],
"eligibility": {
"scheme": "nz.regcouncil.compliance",
"eligible": "Partial"
},
"landCoverClass": {
"scheme": "nz.xxxxxx.landcover",
"primary": "Cultivated and Managed Terrestrial Areas"
},
"speciesPresent": [
{
"name": "Maize X4783",
"taxonomicName": "Zea mays",
"abundance": "Dominant"
},
{
"name": "Perennial ryegrass",
"taxonomicName": "Lolium perenne",
"abundance": "Dominant"
},
{
"name": "White clover",
"taxonomicName": "Trifolium repens",
"abundance": "Abundant"
}
],
"spatialFeature": {
"geometry": {
"coordinates": [
[
[
175.36789819531776,
-37.74521332738721
],
[
175.36432165382598,
-37.74747616457623
],
[
175.36847864019472,
-37.75157825727582
],
[
175.37224789227093,
-37.74920317795343
],
[
175.36789819531776,
-37.74521332738721
]
]
]
}
}
}