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

Update mksurfdata_map to include glaciers outside of pft landmask #564

Merged
merged 2 commits into from
May 1, 2020

Commits on Nov 8, 2018

  1. The logic of mksurfdata_map has been updated to include the glaciers …

    …as well as lakes and wetlands outside of the landmask
    
    with new code:
    
    <        ! Assume wetland, glacier and/or lake when dataset landmask implies ocean
    
    <           if (pctgla(n) < 1.e-6_r8) then
    <               pctwet(n)    = 100._r8 - pctlak(n)
    <               pctgla(n)    = 0._r8
    <           else
    <               pctwet(n)    = 100._r8 - pctgla(n) - pctlak(n)
    <           end if
    
    from
    
    >        ! Assume wetland and/or lake when dataset landmask implies ocean
    
    >           pctwet(n)        = 100._r8 - pctlak(n)
    >           pctgla(n)        = 0._r8
    Peter Lawrence committed Nov 8, 2018
    Configuration menu
    Copy the full SHA
    15d0cbe View commit details
    Browse the repository at this point in the history

Commits on May 1, 2020

  1. Configuration menu
    Copy the full SHA
    20c8c8e View commit details
    Browse the repository at this point in the history