Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected NLCD to BELD3 mapping for shrub/scrub and dwarf scrub #222

Merged
merged 1 commit into from
Dec 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions CCTM/src/emis/emis/lus_data_module.F
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
! to map dust categories from LUFRAC. **NOTE land use type
! with no mapped index has a dummy -999 value.**
! 31 Mar 2022 J. Willison Removed BELD as wbdust input
! 18 Sep 2024 C. Hogrefe Corrected erroneous mapping of NLCD40 and NLCD50
! shrub/scrub and dwarf scrub to BELD3 barren rather
! than BELD3 shrubland
!------------------------------------------------------------------------!

module lus_data_module
Expand Down Expand Up @@ -215,17 +218,17 @@ module lus_data_module
& (/ 0.50, ! shrubland
& 0.50, ! shrubland
& 0.75, ! barrenland
& 0.75, ! barrenland
& 0.75, ! barrenland
& 0.50, ! shrubland
& 0.50, ! shrubland
& 0.75, ! barrenland
& 0.75 /) ! barrenland

integer :: dmap_nlcd_modis( n_dlcat_nlcd_modis+1 ) = ! land use type desert map to BELD3
& (/ 1, ! shrubland
& 1, ! shrubland
& 3, ! barrenland
& 3, ! barrenland
& 3, ! barrenland
& 1, ! shrubland
& 1, ! shrubland
& 3, ! barrenland
& 3, ! barrenland
& 3 /) ! ag landuse surrogate
Expand Down Expand Up @@ -299,16 +302,16 @@ module lus_data_module
& (/ 0.50, ! shrubland
& 0.50, ! shrubland
& 0.75, ! barrenland
& 0.75, ! barrenland
& 0.75, ! barrenland
& 0.50, ! shrubland
& 0.50, ! shrubland
& 0.75 /) ! barrenland

integer :: dmap_nlcd40( n_dlcat_nlcd40+1 ) = ! land use type desert map to BELD3
& (/ 1, ! shrubland
& 1, ! shrubland
& 3, ! barrenland
& 3, ! barrenland
& 3, ! barrenland
& 1, ! shrubland
& 1, ! shrubland
& 3, ! barrenland
& 3 /) ! ag landuse surrogate

Expand Down