biopal.fh.main_FH.CoreProcessingFH#

class biopal.fh.main_FH.CoreProcessingFH(configuration_file)#

CoreProcessingFH APP

CoreProcessingFH APP is the second of the two sub-APPs called by AboveGroundBiomass processor.

It performs merging ascending with descending processed stacks and mosaiking together differtent processed tiles of the output grid

See also

biopal.dataset_query.dataset_query.dataset_query

it’s the first APP to be called in the manual sequence

StackBasedProcessingFH

it’s the APP which prepares the input for this APP

Examples

Manual FH chain execution

>>> from biopal.dataset_query.dataset_query import dataset_query
>>> from biopal.fh.main_FH import StackBasedProcessingFH
>>> dq_obj = dataset_query()
>>> input_file_up1 = dq_obj.run( input_file )
>>> sbp_obj = StackBasedProcessingFH( config_file )
>>> input_file_up2 = sbp_obj.run( input_file_up1 )
>>> fhp_obj = CoreProcessingFH( config_file )
>>> fhp_obj.run( input_file_up2 )
  • input_file: path of the BioPAL input file

  • input_file_up1: same of input_file with also the “stack_based_processing” section

  • input_file_up2: same of input_file_up1 with also the “core_processing_fh” section

  • config_file: path of the BioPAL configuration file

Attributes:
configuration_filestr

path of the Configuration_File.xml file

Methods

run( input_file_path )

run the CoreProcessingFH APP

name

(str) name of the APP

__init__(configuration_file)#

Methods

__init__(configuration_file)

name()

run(input_file_xml)