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

MODIS landuse data support #617

Open
bfkg opened this issue Feb 2, 2017 · 0 comments
Open

MODIS landuse data support #617

bfkg opened this issue Feb 2, 2017 · 0 comments
Assignees

Comments

@bfkg
Copy link
Contributor

bfkg commented Feb 2, 2017

HYDRO_drv/module_HYDRO_drv.F subroutine lsm_input() does some reclassification of soiltype and vegtype fields where USGS classes are 16 for water. If one uses MODIS data instead, this reclassification is not taking care about MODIS data having different classes.
MMINLU information needs to be transferred to this subroutine to implement a conditional check whether USGS or MODIS classification is used.

            if(nlst_rt(did)%sys_cpl .eq. 2 ) then
              ! coupling with WRF
                if(present(soltyp0) ) then
                   where(soltyp0 == 14) VEGTYP0 = 16
                   where(VEGTYP0 == 16 ) soltyp0 = 14
                   soltyp = soltyp0
                   RT_DOMAIN(did)%VEGTYP = VEGTYP0
                endif
            endif

         where(soltyp == 14) RT_DOMAIN(did)%VEGTYP = 16
         where(RT_DOMAIN(did)%VEGTYP == 16 ) soltyp = 14
@rcabell rcabell transferred this issue from another repository May 6, 2022
@rcabell rcabell transferred this issue from another repository May 6, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants