46. म्यूटेशन: मल्टि-लेयर "ZonesMap" असिंक्रोनस रूप से जनरेट करें

असिंक्रोनस तरीके से कई परतों के आधार पर "ZonesMap" उत्पन्न करें।

circle-info

असिंक्रोनस दृष्टिकोण एक कार्य (Generate "generateVectorAnalysisMap") उत्पन्न करता है जिसे संसाधित किया जाएगा और प्रक्रिया समाप्त होते ही सब्सक्रिप्शन प्राप्त होगा।

एट्रिब्यूट dataLayers परिणाम "ZonesMap" में उपयोग के लिए प्रत्येक डेटा लेयर के आवश्यक जानकारी को शामिल करता है। गुण factor का प्रतिनिधित्व करता है weight डेटा लेयर का।

mutation GenerateMultiLayerZonesMapAsync {
  generateMultiLayersVectorAnalysisMapAsync(input: {
    fieldUuid: "<placeholder_of_field_uuid>"
    numberOfZones:7
    name: "MultiYear f1.0 + LIDAR Slope f-0.5 + OM f0.5 + VolDr f0.2"
    dataLayers: [{
      factor: 1.0
      satelliteImageUuids: [
        "<placeholder_of_satelliteimage_uuid_1>",
	"<placeholder_of_satelliteimage_uuid_2>",
        "<placeholder_of_satelliteimage_uuid_3>",
        "<placeholder_of_satelliteimage_uuid_4>",
        "<placeholder_of_satelliteimage_uuid_5>",
        "<placeholder_of_satelliteimage_uuid_6>",
        "<placeholder_of_satelliteimage_uuid_7>",
        "<placeholder_of_satelliteimage_uuid_8>",
        "<placeholder_of_satelliteimage_uuid_9>",
        "<placeholder_of_satelliteimage_uuid_10>"
      ]
    	index: EVI2
    }, {
      factor: -0.5
      topographyMapUuid: "<placeholder_of_topographymap_uuid>"
    	topographyAttribute: slope
    }, {
      factor: 0.5
      soilDatasetUuid: "<placeholder_of_soildataset_uuid>"
      soilAttribute: "Soil_OM___"
    }, {
      factor: 0.2
      yieldDatasetUuid: "<placeholder_of_yielddataset_uuid>"
      yieldAttribute: vol_d
    }]
  }) {    
    uuid 
    fieldUuid
    statusCode  
  }
}

Last updated

Was this helpful?