GET v2/plantings/{plantingId}/irrigation-events/details.{ext}

Returns detailed irrigation data for a planting, including reference ET, canopy cover, average canopy.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
plantingId

Planting ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of AdditionalWaterModel
NameDescriptionTypeAdditional information
AverageReferenceET

Average reference ET

decimal number

None.

ReferenceET

Reference ET

decimal number

None.

AvailableSoilMoisture

Available soil moisture

decimal number

None.

CanopyCover

Canopy cover

decimal number

None.

AvgCanopy

Average canopy

decimal number

None.

CropCoefficient

Crop Coefficient

decimal number

None.

TotalCropET

Total crop ET

decimal number

None.

CropStage

Crop stage name

string

None.

CummulativeWaterAppliedAndRainfall

Cumulative water applied and rainfall

decimal number

None.

EventDate

Event date

string

None.

IsOnWetDate

If true, event is on planting wet date. False otherwise

boolean

None.

Id

Event ID

integer

None.

IrrigationInterval

Irrigation interval

string

None.

IrrigationMethod

Irrigation method name

string

None.

Rainfall

rainfall amount, in inches

decimal number

None.

ContributingRainfall

Contributing rainfall amount, in inches

decimal number

None.

Ratio

Ratio, used for unit conversion

decimal number

None.

WaterApplied

Water applied

decimal number

None.

PlantingId

Planting ID

integer

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "AverageReferenceET": 1.0,
    "ReferenceET": 2.0,
    "AvailableSoilMoisture": 3.0,
    "CanopyCover": 4.0,
    "AvgCanopy": 5.0,
    "CropCoefficient": 6.0,
    "TotalCropET": 7.0,
    "CropStage": "sample string 8",
    "CummulativeWaterAppliedAndRainfall": 9.0,
    "EventDate": "sample string 10",
    "IsOnWetDate": true,
    "Id": 12,
    "IrrigationInterval": "sample string 13",
    "IrrigationMethod": "sample string 14",
    "Rainfall": 15.0,
    "ContributingRainfall": 16.0,
    "Ratio": 17.0,
    "WaterApplied": 1.0,
    "PlantingId": 18
  },
  {
    "AverageReferenceET": 1.0,
    "ReferenceET": 2.0,
    "AvailableSoilMoisture": 3.0,
    "CanopyCover": 4.0,
    "AvgCanopy": 5.0,
    "CropCoefficient": 6.0,
    "TotalCropET": 7.0,
    "CropStage": "sample string 8",
    "CummulativeWaterAppliedAndRainfall": 9.0,
    "EventDate": "sample string 10",
    "IsOnWetDate": true,
    "Id": 12,
    "IrrigationInterval": "sample string 13",
    "IrrigationMethod": "sample string 14",
    "Rainfall": 15.0,
    "ContributingRainfall": 16.0,
    "Ratio": 17.0,
    "WaterApplied": 1.0,
    "PlantingId": 18
  }
]

application/xml, text/xml

Sample:
<ArrayOfAdditionalWaterModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <AdditionalWaterModel>
    <AverageReferenceET>1</AverageReferenceET>
    <ReferenceET>2</ReferenceET>
    <AvailableSoilMoisture>3</AvailableSoilMoisture>
    <CanopyCover>4</CanopyCover>
    <AvgCanopy>5</AvgCanopy>
    <CropCoefficient>6</CropCoefficient>
    <TotalCropET>7</TotalCropET>
    <CropStage>sample string 8</CropStage>
    <CummulativeWaterAppliedAndRainfall>9</CummulativeWaterAppliedAndRainfall>
    <EventDate>sample string 10</EventDate>
    <IsOnWetDate>true</IsOnWetDate>
    <Id>12</Id>
    <IrrigationInterval>sample string 13</IrrigationInterval>
    <IrrigationMethod>sample string 14</IrrigationMethod>
    <Rainfall>15</Rainfall>
    <ContributingRainfall>16</ContributingRainfall>
    <Ratio>17</Ratio>
    <WaterApplied>1</WaterApplied>
    <PlantingId>18</PlantingId>
  </AdditionalWaterModel>
  <AdditionalWaterModel>
    <AverageReferenceET>1</AverageReferenceET>
    <ReferenceET>2</ReferenceET>
    <AvailableSoilMoisture>3</AvailableSoilMoisture>
    <CanopyCover>4</CanopyCover>
    <AvgCanopy>5</AvgCanopy>
    <CropCoefficient>6</CropCoefficient>
    <TotalCropET>7</TotalCropET>
    <CropStage>sample string 8</CropStage>
    <CummulativeWaterAppliedAndRainfall>9</CummulativeWaterAppliedAndRainfall>
    <EventDate>sample string 10</EventDate>
    <IsOnWetDate>true</IsOnWetDate>
    <Id>12</Id>
    <IrrigationInterval>sample string 13</IrrigationInterval>
    <IrrigationMethod>sample string 14</IrrigationMethod>
    <Rainfall>15</Rainfall>
    <ContributingRainfall>16</ContributingRainfall>
    <Ratio>17</Ratio>
    <WaterApplied>1</WaterApplied>
    <PlantingId>18</PlantingId>
  </AdditionalWaterModel>
</ArrayOfAdditionalWaterModel>