75. म्यूटेशन: असिंक्रोनस रूप से "EquationMap" जनरेट करें

अवलोकन

"Field" के लिए असिंक्रोनस रूप से "EquationMap" जनरेट करें।

circle-info

असिंक्रोनस तरीका एक कार्य (Generate ") डालता हैgenerateEquationMap") को प्रक्रिया के लिए और सब्सक्रिप्शन प्रोसेसिंग समाप्त होते ही प्राप्त होगा।

समर्थित डेटा परतें

EquationMaps GeoPard में उपलब्ध किसी भी डेटा परत पर चलाए जा सकते हैं, जिसमें सैटेलाइट इमेजरी, मिट्टी के डेटासेट, उपज (Yield) डेटासेट, As-Applied डेटासेट, स्थलाकृति (Topography), जोन मैप और यहां तक कि अन्य EquationMaps भी शामिल हैं। का स्वरूप dataVariables इनपुट चुनी गई डेटा परत के आधार पर भिन्न होगा।

dataVariables: [
  # YieldDataset
  {
    variable: "yield_variable"
    yieldDatasetUuid: "<placeholder_of_yielddataset_uuid>"
    yieldAttribute: "<placeholder_of_yielddataset_attribute>"
  }, 
  
  # SoilDataset
  {
    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>"
  },
  
  # SatelliteImage
  {
    variable: "satelliteimage_variable"
    satelliteImageUuids: ["<placeholder_of_satelliteimage_uuid>"]
    index: "<placeholder_of_satelliteimage_vegetation_index>"
  },
  
  # TopographyMap
  {
    variable: "topography_variable"
    topographyMapUuid: "<placeholder_of_topographymap_uuid>"
    topographyAttribute: "<placeholder_of_topography_attribute>"
  },
  
  # EquationMap
  {
    variable: "equationmap_variable"
    equationMapUuid: "<placeholder_of_equationmap_uuid>"
  },
  
  # ZonesMap (VectorAnalysisMap)
  {
    variable: "zonesmap_variable"
    vectorAnalysisMapUuid: "<placeholder_of_zonesmap_uuid>"
  }
]

नमूना

Last updated

Was this helpful?