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

72. Query: ottieni dati su griglia 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.

GEOTIFF e GEOJSON sono disponibili come formati.

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?