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

72. Query: gerasterde gegevens ophalen als GeoJSON of GeoTIFF

Query om gegridde gegevens uit datasets zoals "FieldSatelliteImage", "TopographyMap", "SoilDataset", "YieldDataset", "AsAppliedDataset", "VectorAnalysisMap" op te halen als GEOJSON met punten of GEOTIFF.

GEOTIFF en GEOJSON zijn beschikbaar als formaten.

query GetRawVectorDataFromSatelliteImage {
  getFarms (farmUuids: ["<placeholder_of_farm_uuid>"]){
    uuid
    naam
    fields (fieldUuids: ["<placeholder_of_field_uuid>"]) {
      uuid
      naam
      satelliteImages(satelliteImageUuids: ["<placeholder_of_satelliteimage_uuid>"]) {
        uuid
        sourceDataUrl(formaat: GEOTIFF)
      }
    }
  }
}

Laatst bijgewerkt

Was dit nuttig?