Table of Contents

landCoverResource

Description

Representation of a land cover of some sort, from hedges and helipads to forests and swamps.

The landCoverResource schema inherits from landUseResourceType.

Properties

Name Description Required Type
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
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": "grazing"
    }
  ],
  "activities": [
    {
      "id": {
        "id": "75492",
        "scheme": "nz.rural.activities"
      },
      "isPrimary": false,
      "name": "Grazing",
      "productiveArea": {
        "measurement": 8300,
        "units": "MTK"
      }
    }
  ],
  "eligibility": {
    "scheme": "nz.govt.mpi.onebilliontrees",
    "primary": "Mānuka/Kānuka Planting",
    "eligible": "Eligible"
  },
  "landCoverClass": {
    "scheme": "nz.org.lawa.landcover",
    "primary": "Grassland/other herbaceous vegetation",
    "secondary": "Exotic Grassland",
    "tertiary": "Low Producing Grassland"
  },
  "speciesPresent": [
    {
      "name": "Perennial ryegrass",
      "taxonomicName": "Lolium perenne",
      "abundance": "Dominant"
    },
    {
      "name": "White clover",
      "taxonomicName": "Trifolium repens",
      "abundance": "Abundant"
    }
  ]
}