Skip to content

Commit 462804a

Browse files
committed
edited help text and white-space changes (GEOSldas_App/GEOSldas_LDAS.rc, GEOS_LdasGridComp.F90)
1 parent a92e3e6 commit 462804a

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

GEOS_LdasGridComp.F90

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ subroutine SetServices(gc, rc)
9797
type(TILECOORD_WRAP) :: tcwrap
9898

9999
type(ESMF_Config) :: CF
100-
integer :: LSM_CHOICE, NRA
100+
integer :: LSM_CHOICE, nra
101101
integer :: FIRST_ENS_ID
102102
logical :: isPresent
103103

@@ -160,16 +160,16 @@ subroutine SetServices(gc, rc)
160160
if (isPresent) then
161161
nra = ESMF_ConfigGetLen( CF, _RC)
162162
allocate(tile_types(nra))
163-
call ESMF_ConfigFindLabel( CF, LABEL="TILE_TYPES:", _RC)
164-
call ESMF_ConfigGetAttribute( CF, valueList=tile_types, count=NRA, _RC)
163+
call ESMF_ConfigFindLabel( CF, LABEL="TILE_TYPES:", _RC)
164+
call ESMF_ConfigGetAttribute( CF, valueList=tile_types, count=nra, _RC)
165165
else
166166
! default
167167
tile_types = [MAPL_LAND]
168168
endif
169169

170170
with_landice = .false.
171171
with_land = .false.
172-
! with_lake = .false.
172+
! with_lake = .false.
173173
do i = 1, size(tile_types)
174174
if (tile_types(i) == MAPL_LANDICE) with_landice = .true.
175175
if (tile_types(i) == MAPL_LAND) with_land = .true.

GEOSldas_App/GEOSldas_LDAS.rc

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,15 @@ LSM_CHOICE: 1
3939

4040
# ---- Choice of tile type(s)
4141
#
42-
# list of tile types to be included in simulation.
43-
# use blank space as seperator if there are more than one type
42+
# List of tile types to be included in simulation.
43+
# Use blank space as separator if there is more than one type.
4444
#
45-
# land tiles 100
46-
# landice tiles 20
47-
# lake tiles 29 (not yet implemented)
45+
# land : 100 (non-glaciated land)
46+
# landice : 20 ( glaciated land)
47+
# lake : 19 [not yet implemented]
48+
#
49+
# For example, include land and landice tiles as follows:
50+
# TILE_TYPES: 100 20
4851
#
4952
TILE_TYPES: 100
5053

0 commit comments

Comments
 (0)