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

72. Zapytanie: Pobierz dane siatkowe 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.

GEOTIFF i GEOJSON są dostępne jako formaty.

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

Ostatnia aktualizacja

Czy to było pomocne?