Crop Status

The crop status is provided in form of two metrics: 1) the absolute fractional cover per parcel in hectares, i.e. area within the parcel with active/green/healthy vegetation and 2) the relative fractional cover per parcel in percent, i.e. the ratio of the area of active/green/healthy vegetation to the total parcel area.

HTTP Request: GET https://geocledian.com/agknow/api/v3/parcels/<parcel-id>/status?key=kkk&sdate=ddd

Path Parameters

 parcel-id id of parcel
 product_name valid value: „status“

Required parameters

 key registered user key to authorize user
 default: „“
 sdate sdate defines the nearest sensing date of the observation
 in ANSI format: YYYY-MM-DD or YYYMMDD, e.g. 2015-03-20   or 20150320

Response parameters

 sensing_date the actual sensing date of the observation
 fcover_area  area of green vegetation within observed parcel (in ha)
 fcover_percent area of green vegetation within observed parcel (in %)

Response:

{
   "crop_status":{
      "fcover_percent":0.9611632727716132,
      "fcover_area":15.4125,
      "sensing_date":"2018-09-18"
   },
   "summary":{
      "enddate":"2019-12-31",
      "name":"test",
      "area":19036.1853792965,
      "startdate":"2017-09-01",
      "parcel_id":3001,
      "crop":"test",
      "entity":"test",
      "centroid":{
         "type":"Point",
         "coordinates":[
            14.0549861912874,
            48.2569428590701
         ]
      }
   }
}



Example:

GET https://geocledian.com/agknow/api/v3/parcels/4483/status?key=39553fb7-7f6f-4945-9b84-a4c8745bdbec&sdate=20180808

Response:

{
   "crop_status":{
      "fcover_percent":{
         "Number"
      },
      "fcover_area":{
         "Number"
      },
      "sensing_date":{
         "String"
      }
   },
   "summary":{
      "enddate":{
         "String"
      },
      "name":{
         "String"
      },
      "area":{
         "Number"
      },
      "startdate":{
         "String"
      },
      "parcel_id":{
         "Number"
      },
      "crop":{
         "String"
      },
      "entity":{
         "String"
      },
      "centroid":{
         "type":"Point",
         "coordinates":[
            {
               "Number"
            },
            {
               "Number"
            }
         ]
      }
   }
}