EcohydroLib  1.29
Variables
GenerateSoilPropertyRastersFromSSURGO Namespace Reference

Rasterize soil attributes associated with SSURGO mapunit features. More...

Variables

tuple parser = argparse.ArgumentParser(description="Get SSURGO features for a bounding box. The following attributes will be rasterized: %s. Features with null values for a particular attribute will receive a raster value of 0." % (rasterize.RASTER_ATTRIBUTES,) )
 
string help = 'The configuration file'
 
tuple args = parser.parse_args()
 
tuple cmdline = GenericMetadata.getCommandLine()
 
 configFile = None
 
tuple context = Context(args.projectDir, configFile)
 
list ssurgoProvenance = [i for i in GenericMetadata.readAssetProvenanceObjects(context) if i.name == 'soil_features']
 
tuple manifest = GenericMetadata.readManifestEntries(context)
 
list shpFilename = manifest['soil_features']
 
tuple layerName = os.path.splitext(shpFilename)
 
tuple studyArea = GenericMetadata.readStudyAreaEntries(context)
 
list outputrasterresolutionX = studyArea['dem_res_x']
 
list outputrasterresolutionY = studyArea['dem_res_y']
 
list attrList = [elem[:10] for elem in rasterize.RASTER_ATTRIBUTES]
 
tuple rasterFiles
 
tuple asset = AssetProvenance(GenericMetadata.MANIFEST_SECTION)
 

Detailed Description

Rasterize soil attributes associated with SSURGO mapunit features.

This software is provided free of charge under the New BSD License. Please see the following license information:

Copyright (c) 2013, University of North Carolina at Chapel Hill All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Author
Brian Miles brian.nosp@m._mil.nosp@m.es@un.nosp@m.c.ed.nosp@m.u

Pre conditions

  1. Configuration file must define the following sections and values: 'GDAL/OGR', 'PATH_OF_GDAL_RASTERIZE'
  2. The following metadata entry(ies) must be present in the manifest section of the metadata associated with the project directory: soil_features [the name of the vector file containing the soil features]
  3. The following metadata entry(ies) must be present in the study area section of the metadata associated with the project directory: dem_res_x dem_res_y

Post conditions

  1. Will write the following entry(ies) to the manifest section of metadata associated with the project directory: soil_raster_<attr> [the name of the raster file for each soil property raster]

Usage:

1 GenerateSoilPropertyRastersFromSSURGO.py -p /path/to/project_dir
Note
EcohydroLib configuration file must be specified by environmental variable 'ECOHYDROWORKFLOW_CFG', or -i option must be specified.

Variable Documentation

tuple GenerateSoilPropertyRastersFromSSURGO.args = parser.parse_args()
tuple GenerateSoilPropertyRastersFromSSURGO.asset = AssetProvenance(GenericMetadata.MANIFEST_SECTION)
list GenerateSoilPropertyRastersFromSSURGO.attrList = [elem[:10] for elem in rasterize.RASTER_ATTRIBUTES]
tuple GenerateSoilPropertyRastersFromSSURGO.cmdline = GenericMetadata.getCommandLine()
GenerateSoilPropertyRastersFromSSURGO.configFile = None
tuple GenerateSoilPropertyRastersFromSSURGO.context = Context(args.projectDir, configFile)
string GenerateSoilPropertyRastersFromSSURGO.help = 'The configuration file'
tuple GenerateSoilPropertyRastersFromSSURGO.layerName = os.path.splitext(shpFilename)
tuple GenerateSoilPropertyRastersFromSSURGO.manifest = GenericMetadata.readManifestEntries(context)
list GenerateSoilPropertyRastersFromSSURGO.outputrasterresolutionX = studyArea['dem_res_x']
list GenerateSoilPropertyRastersFromSSURGO.outputrasterresolutionY = studyArea['dem_res_y']
tuple GenerateSoilPropertyRastersFromSSURGO.parser = argparse.ArgumentParser(description="Get SSURGO features for a bounding box. The following attributes will be rasterized: %s. Features with null values for a particular attribute will receive a raster value of 0." % (rasterize.RASTER_ATTRIBUTES,) )
tuple GenerateSoilPropertyRastersFromSSURGO.rasterFiles
Initial value:
1 = rasterize.rasterizeSSURGOFeatures(config=context.config, outputDir=context.projectDir, featureFilename=shpFilename, featureLayername=layerName, \
2  featureAttrList=attrList, \
3  rasterResolutionX=outputrasterresolutionX, rasterResolutionY=outputrasterresolutionY)
list GenerateSoilPropertyRastersFromSSURGO.shpFilename = manifest['soil_features']
list GenerateSoilPropertyRastersFromSSURGO.ssurgoProvenance = [i for i in GenericMetadata.readAssetProvenanceObjects(context) if i.name == 'soil_features']
tuple GenerateSoilPropertyRastersFromSSURGO.studyArea = GenericMetadata.readStudyAreaEntries(context)