72. क्वेरी: ग्रिडेड डेटा GeoJSON या GeoTIFF के रूप में प्राप्त करें

"FieldSatelliteImage", "TopographyMap", "SoilDataset", "YieldDataset", "AsAppliedDataset", "VectorAnalysisMap" जैसे डेटासेट्स से ग्रिडेड डेटा पाने के लिए क्वेरी, जैसे GEOJSON बिंदुओं के साथ या GEOTIFF.

triangle-exclamation

GEOTIFF और GEOJSON उपलब्ध हैं रूप में फॉर्मैट.

triangle-exclamation
query GetRawVectorDataFromSatelliteImage {
  getFarms (farmUuids: ["<placeholder_of_farm_uuid>"]){
    uuid
    name
    fields (fieldUuids: ["<placeholder_of_field_uuid>"]) {
      uuid
      name
      satelliteImages(satelliteImageUuids: ["<placeholder_of_satelliteimage_uuid>"]) {
        uuid
        sourceDataUrl(format: GEOTIFF)
      }
    }
  }
}

Last updated

Was this helpful?