73. Query: Get Gridded Data with the Selected Buffer
Query to get girdded data from the datasets like "FieldSatelliteImage", "TopographyMap", "SoilDataset", "YieldDataset", "AsAppliedDataset", "VectorAnalysisMap" with the selected buffer.
Recommended retrieving only a single dataset with sourceDataUrl
per request.
NoBuffer
, PlusOnePixel
, PlusTwoPixels
, MinusOnePixel
, and MinusTwoPixels
are available as a buffer
.
sourceDataUrl
link is accessible for only 60 sec.
query GetRawVectorDataFromSatelliteImage {
getFarms (farmUuids: ["<placeholder_of_farm_uuid>"]){
uuid
name
fields (fieldUuids: ["<placeholder_of_field_uuid>"]) {
uuid
name
satelliteImages(satelliteImageUuids: ["<placeholder_of_satelliteimage_uuid>"]) {
sourceDataUrl(format: GEOJSON buffer: PlusTwoPixels)
}
}
}
}
Last updated
Was this helpful?