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

75. Mutation: Skapa ekvationskarta asynkront

Översikt

Generera "EquationMap" för "Fältet" asynkront.

Den asynkrona metoden lägger en uppgift (Generera "generateEquationMap") för bearbetning och prenumerationen kommer att tas emot så snart bearbetningen är klar.

Stödda datalager

EquationMaps kan köras på vilket datalager som helst som finns i GeoPard, inklusive satellitbilder, jordartsdatasätt, skördeuppsättningar, As-Applied-datasätt, topografi, zonkartor och till och med andra EquationMaps. Formatet på dataVariables inmatning kommer att variera beroende på det valda datalagret.

dataVariables: [
  # SkördeDataset
  {
    variabel: "yield_variable"
    yieldDatasetUuid: "<placeholder_of_yielddataset_uuid>"
    yieldAttribute: "<placeholder_of_yielddataset_attribute>"
  }, 
  
  # JordDataset
  {
    variabel: "soil_variable"
    soilDatasetUuid: "<placeholder_of_soildataset_uuid>"
    soilAttribute: "<placeholder_of_soildataset_attribute>"
  },
  
  # AsAppliedDataset
  {
    variabel: "asapplied_variable"
    asAppliedDatasetUuid: "<placeholder_of_asapplieddataset_uuid>"
    asAppliedAttribute: "<placeholder_of_asapplieddataset_attribute>"
  },
  
  # SatellitBild
  {
    variabel: "satelliteimage_variable"
    satelliteImageUuids: ["<placeholder_of_satelliteimage_uuid>"]
    index: "<placeholder_of_satelliteimage_vegetation_index>"
  },
  
  # Topografikarta
  {
    variabel: "topography_variable"
    topographyMapUuid: "<placeholder_of_topographymap_uuid>"
    topographyAttribute: "<placeholder_of_topography_attribute>"
  },
  
  # EquationMap
  {
    variabel: "equationmap_variable"
    equationMapUuid: "<placeholder_of_equationmap_uuid>"
  },
  
  # ZonesMap (VectorAnalysisMap)
  {
    variabel: "zonesmap_variable"
    vectorAnalysisMapUuid: "<placeholder_of_zonesmap_uuid>"
  }
]

Exempel

Senast uppdaterad

Var detta till hjälp?