72. Zapytanie: Pobierz dane w siatce jako GeoJSON lub GeoTIFF

Zapytanie pobierające dane zgriddowane z zestawów danych takich jak "FieldSatelliteImage", "TopographyMap", "SoilDataset", "YieldDataset", "AsAppliedDataset", "VectorAnalysisMap" jako GEOJSON z punktami lub GEOTIFF.

triangle-exclamation

GEOTIFF i GEOJSON są dostępne jako formaty.

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

Last updated

Was this helpful?