For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

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

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

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)
      }
    }
  }
}

अंतिम अपडेट

क्या यह उपयोगी था?