1. Home
  2. /
  3. Resource Types
  4. /
  5. Crops
  6. /
  7. Pasture Cover Event

Resource Type: Crops – Pasture Cover Event


URLs

Get all Pasture Cover events that you have access to.

GET /data/crops/pasture-cover-events

Get a single Pasture Cover event, specified by it’s ID.

GET /data/crops/pasture-cover-events/{pastureCoverEventId}

Get all Pasture Cover events for a given holding.

GET /data/holdings/{HoldingId}/crops/pasture-cover-events

Get a single Pasture Cover event, specified by its Holding ID and ID.

GET /data/holdings/{HoldingId}/crops/pasture-cover-events/{PastureCoverEventId}

Response Structure

A call to the Pasture Cover Event endpoints returns the following fields:

{
    "id": "string",
    "meta": {...},
    "identifiers": [...],
    "name": "string",
    "observationDate": "2022-10-03T00:00:00Z",
    "feature": {...},
    "holding": {...},
    "phenomenonStartTime": "2022-03-03T09:40:00Z",
    "phenomenonEndTime": "2022-04-03T08:00:00Z",
    "responsible": "string",
    "remark": "string",
    "methodUsed": "string",
    "dryMatter": {...},
    "pastureHeight": {...},
    "pastureArea": {...},
    "equationIntercept": 826,
    "equationSlope": 158,
    "metabolisableEnergy": 10.6,
    "device": {...},
}
Response Item Description Data Type
Id The Pure Farming Id of this Pasture Cover event. UUID
Meta Meta data for the resource. Metadata
Identifiers Any identifiers for this Pasture Cover event. Array of Identifiers
Name A user-readable name for the Pasture Cover Event. String
Observation Date UTC date and time the event was observed. DateTime
Feature The feature that this event occurred on Feature
Holding The holding where the event was recorded. Feature
Phenomenon Start Time UTC date and time when the Pasture Cover event started. DateTime
Phenomenon End Time UTC date and time for when the Pasture Cover event ended. DateTime
Responsible Use if an observation is manually recorded, or an event is carried out or authorised by a person. String
Remark A comment or remark field for additional user-specified information about the event. String
Method Used Method used to determine pasture cover.
(Valid values: Visual, PlateMeter, PastureProbe, SwardStick, C-Dax)
Enumeration
Dry Matter Pasture dry matter yield calculated or estimated. Dry Matter Measure Type
Pasture Height Average pasture height of the feature. Length Measure Type
Pasture Area Area of the feature in pasture. Area Measurement Type
Equation Intercept Intercept in linear equation to calculate DM from pasture height. Number
Equation Slope Slope in linear equation to calculate DM from pasture height. Number
Metabolisable Energy Metabolisable energy specified as Megajoules per unit of dry matter (i.e. MJ/kgDM). Number
Device Device used to determine pasture cover. Device

Dry Matter Measure Type

Specifies the dry matter yield in terms of a mass measurement and a spatialMetric.

{
    "measure": {...},
    "areaMetric": {...},
}
Response Item Description Data Type
Measure The dry matter in mass units. Mass Measurement Type
Area Metric The area in area units. Area Measurement Type

Mass Measurement Type

Specifies a mass, including units (default is kilogram – KGM).

{
    "measurement": 1635,
    "resolution": 5,
    "units": "string",
}
Response Item Description Data Type
Measurement The total measurement. Number
Resolution The smallest measurement difference (in units) that can be discriminated given the current device settings. Number
Units Defines the unit of measure for weight quantities.
Prefered units are KGM (UN-CEFACT for kilogram).
(Valid values: KGM, GRM, LBR, TNE, LTN, MC, ONZ, PN)
Enumeration

Area Measurement Type

Specifies an area, including units (default is square meter – MTK).

{
    "measurement": 1,
    "resolution": 0.01,
    "units": "string",
}
Response Item Description Data Type
Measurement The total measurement. Number
Resolution The smallest measurement difference (in units) that can be discriminated given the current device settings. Number
Units Defines the unit of measure for the area.
Prefered units are MTK (UN-CEFACT for square metre).
(Valid values: MTK, KMTK, HAR, FTK, YDK, MIK, ACR)
Enumeration

Length Measure Type

Specifies a length or perimeter, including units (default is metre – MTR).

{
    "measurement": 6.1,
    "resolution": 0.1,
    "units": "string",
}
Response Item Description Data Type
Measurement The total measurement. Number
Resolution The smallest measurement difference (in units) that can be discriminated given the current device settings. Number
Units Defines the unit of measure for the length.
Prefered units are MTR (UN-CEFACT metre).
(Valid values: KMT, MTR, CMT, MMT, SMI, YRD, FOT, INH, LY)
Enumeration

Device

Optional information about the device used for the measurement.

Device object returns the following properties:

{
    "id": "string",
    "serial": "string",
    "name": "string",
    "description": "string",
    "softwareVersion": "string",
    "hardwareVersion": "string",
    "manufacturer": "string",
    "deviceCategory": "string",
}
Response Item Description Data Type
Id The identifier of the individual device according to the supplier of the device data URI
Serial The serial number of the device. String
Name The name of the device. String
Description Description of the device. String
Software Version Version of the software installed on the device. String
Hardware Version Version of the hardware installed in the device. String
Manufacturer Unique id of the manufacturer using DNS notation. String
Device Category The category of device. String