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

75. Mutation: Gleichungskarte asynchron erzeugen

Übersicht

Erzeuge "EquationMap" für das "Feld" asynchron.

Der asynchrone Ansatz legt eine Aufgabe (Erzeuge "generateEquationMap") zur Verarbeitung ab und die Subscription wird empfangen, sobald die Verarbeitung abgeschlossen ist.

Unterstützte Datenschichten

EquationMaps können auf jeder in GeoPard verfügbaren Datenschicht ausgeführt werden, einschließlich Satellitenbildern, Bodendatensätzen, Ertragsdatensätzen, As-Applied-Datensätzen, Topographie, Zonenkarten und sogar anderen EquationMaps. Das Format der dataVariables Eingabe variiert je nach ausgewählter Datenschicht.

dataVariables: [
  # Ertragsdatensatz
  {
    variable: "yield_variable"
    yieldDatasetUuid: "<placeholder_of_yielddataset_uuid>"
    yieldAttribute: "<placeholder_of_yielddataset_attribute>"
  }, 
  
  # Bodendatensatz
  {
    variable: "soil_variable"
    soilDatasetUuid: "<placeholder_of_soildataset_uuid>"
    soilAttribute: "<placeholder_of_soildataset_attribute>"
  },
  
  # As-Applied-Datensatz
  {
    variable: "asapplied_variable"
    asAppliedDatasetUuid: "<placeholder_of_asapplieddataset_uuid>"
    asAppliedAttribute: "<placeholder_of_asapplieddataset_attribute>"
  },
  
  # Satellitenbild
  {
    variable: "satelliteimage_variable"
    satelliteImageUuids: ["<placeholder_of_satelliteimage_uuid>"]
    index: "<placeholder_of_satelliteimage_vegetation_index>"
  },
  
  # Topographiekarte
  {
    variable: "topography_variable"
    topographyMapUuid: "<placeholder_of_topographymap_uuid>"
    topographyAttribute: "<placeholder_of_topography_attribute>"
  },
  
  # EquationMap
  {
    variable: "equationmap_variable"
    equationMapUuid: "<placeholder_of_equationmap_uuid>"
  },
  
  # Zonenkarte (VectorAnalysisMap)
  {
    variable: "zonesmap_variable"
    vectorAnalysisMapUuid: "<placeholder_of_zonesmap_uuid>"
  }
]

Beispiel

Zuletzt aktualisiert

War das hilfreich?