MDCS is an acronym for Mosaic Dataset Configuration Script and is the entry point to a collection of Python classes/libraries that could be consumed by a Python client application to complete a given workflow for creating a mosaic dataset, populating it with data, and setting all required/desired parameters.
Apache License 2.0
64
stars
29
forks
source link
Update Set Mosaic Dataset Properties .py file #141
Two new node have been introduced in the latest version of ArcPro
product_definition , product_band_definitions
These needed to be added to
1.setProperty() function
args.append(self.getInternalPropValue(mdName, 'product_definition'))
args.append(self.getInternalPropValue(mdName, 'product_band_definitions'))
inside propertyDict{} under mosaicProperty() function
"product_definition": "productDefinition",
"product_band_definitions": "productBandDefinitions"
Two new node have been introduced in the latest version of ArcPro product_definition , product_band_definitions
These needed to be added to 1.setProperty() function args.append(self.getInternalPropValue(mdName, 'product_definition')) args.append(self.getInternalPropValue(mdName, 'product_band_definitions'))