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

80. Query: Get Original Data

Query to get the copy of the uploaded original data of "SoilDataset", "YieldDataset", "AsAppliedDataset".

GEOTIFF and GEOJSON are available as formats. But only GEOJSON is now supported.

1. Sample for SoilDataset

query GetOriginalDataOfSoilDataset {
  getFarms (farmUuids: ["<placeholder_of_farm_uuid>"]){
    uuid
    fields (fieldUuids: ["<placeholder_of_field_uuid>"]) {
      uuid
      soilDatasets(soilDatasetUuids: ["<placeholder_of_dataset_uuid>"]) {
        uuid
        originDataUrl(format: GEOJSON)
      }
    }
  }
}

2. Sample for YieldDataset

3. Sample for AsAppliedDataset

4. Download the generated file

After the successful preparation of the file, it is possible to download it using curl or a similar approach.

Last updated

Was this helpful?