72. Query: Ottieni dati grigliati come GeoJSON o GeoTIFF

Query per ottenere dati a griglia dai dataset come "FieldSatelliteImage", "TopographyMap", "SoilDataset", "YieldDataset", "AsAppliedDataset", "VectorAnalysisMap" come GEOJSON con punti o GEOTIFF.

triangle-exclamation

GEOTIFF e GEOJSON sono disponibili come formati.

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

Ultimo aggiornamento

È stato utile?