nasa-nccs-hpda/modis_water: release/4.1.0

release/4.1.0 Purpose Add antarctic seven class and ancillary data with post-processing update. Seven-class generation will no longer be filled with no-data values for antarctic tiles 4.1.0 Changelog Removed exception which filled seven class with no-data values in antarctic tiles Changed QA no-data...

Full description

Bibliographic Details
Main Author: Caleb Spradlin
Format: Other/Unknown Material
Language:unknown
Published: Zenodo 2023
Subjects:
Online Access:https://doi.org/10.5281/zenodo.8284314
Description
Summary:release/4.1.0 Purpose Add antarctic seven class and ancillary data with post-processing update. Seven-class generation will no longer be filled with no-data values for antarctic tiles 4.1.0 Changelog Removed exception which filled seven class with no-data values in antarctic tiles Changed QA no-data from 250 to 10 Log files will no longer have irregular filenames due to direct usage of the set of sensors From 4.0.0 Changelog (still important) GMTED/DEM products and Static Seven Class products are no longer supported. Instead a single post-processing product is required. See the "Staged data products" section for more information on the post-processing product. NO LONGER NEEDED: <code>MODIS_GMTED_DEM_slope, MODIS_Seven_Class_maxextent</code> <code>/explore/nobackup/projects/ilab/data/MODIS/ancillary/MODIS_GMTED_DEM_slope /explore/nobackup/projects/ilab/data/MODIS/ancillary/MODIS_Seven_Class_maxextent </code> NOW NEEDED: <code>postprocessing_dir</code> <code>/explore/nobackup/projects/ilab/data/MODIS/ancillary/postprocess_dir </code> RF algorithm is no longer meant to be used. Simple algorithm is the algorithm to use in production. This is a simple switch of the <code>--classifier</code> command-line argument from <code>rf</code> to <code>simple</code>. OLD (DO NOT USE THIS) <code class="lang-shell">$ python /modis_water/view/EndToEndModisWaterCLV.py \ --classifier rf \ -t h09v05 \ -y 2006 \ -sensor MOD \ -static /path/to/static/seven_class \ -dem /path/to/gmted/dem/slope \ -mod /path/modis/Collection6.1/L2G \ -burn /path/modis/Collection6/L3/MCD64A1-BurnArea \ -o /path/to/output/directory </code> NEW (USE THIS INSTEAD) <code class="lang-shell">$ python /modis_water/view/EndToEndModisWaterCLV.py \ --classifier simple \ -t h09v05 \ -y 2006 \ -sensor MOD \ -postprocessing /path/to/postprocessing_dir/ \ -mod /path/modis/Collection6.1/L2G \ -burn /path/modis/Collection6/L3/MCD64A1-BurnArea \ -o ...