75. Mutation: Generer "EquationMap" asynkront

Oversigt

Generer "EquationMap" for "Marken" asynkront.

circle-info

Den asynkrone tilgang lægger en opgave (Generer "generateEquationMap") til behandling, og abonnementet vil blive modtaget, så snart behandlingen er færdig.

Understøttede datalag

EquationMaps kan køres på ethvert datalag tilgængeligt i GeoPard, herunder Satellitbilleder, Jorddata, Høstdata, As-applied-data, Topografi, Zonekort og endda andre EquationMaps. Formatet af dataVariables input vil variere afhængigt af det valgte datalag.

dataVariables: [
  # HøstDataset
  {
    variable: "yield_variable"
    yieldDatasetUuid: "<placeholder_of_yielddataset_uuid>"
    yieldAttribute: "<placeholder_of_yielddataset_attribute>"
  }, 
  
  # JordDataset
  {
    variable: "soil_variable"
    soilDatasetUuid: "<placeholder_of_soildataset_uuid>"
    soilAttribute: "<placeholder_of_soildataset_attribute>"
  },
  
  # AsAppliedDataset
  {
    variable: "asapplied_variable"
    asAppliedDatasetUuid: "<placeholder_of_asapplieddataset_uuid>"
    asAppliedAttribute: "<placeholder_of_asapplieddataset_attribute>"
  },
  
  # Satellitbillede
  {
    variable: "satelliteimage_variable"
    satelliteImageUuids: ["<placeholder_of_satelliteimage_uuid>"]
    index: "<placeholder_of_satelliteimage_vegetation_index>"
  },
  
  # Topografikort
  {
    variable: "topography_variable"
    topographyMapUuid: "<placeholder_of_topographymap_uuid>"
    topographyAttribute: "<placeholder_of_topography_attribute>"
  },
  
  # EquationMap
  {
    variable: "equationmap_variable"
    equationMapUuid: "<placeholder_of_equationmap_uuid>"
  },
  
  # Zonekort (VectorAnalysisMap)
  {
    variable: "zonesmap_variable"
    vectorAnalysisMapUuid: "<placeholder_of_zonesmap_uuid>"
  }
]

Eksempel

Last updated

Was this helpful?