Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

CLM: landmask not on dataset

CESM1.2.2in the lnd log i get: Opened existing file
 /project/projectdirs/ccsm1/inputdata/share/domains/domain.clm/domain.lnd.T42_US
 GS.111004.nc      458752
 lat/lon grid flag (isgrid2d) is  T
 ncd_inqvid: variable LANDMASK is not on dataset
 decompInit_lnd(): Number of clumps exceeds number of land grid cells
           4           1
 ENDRUN: called without a message stringIf I inquire the input file i get:
        int mask(nj, ni) ;
                mask:long_name = "land domain mask" ;
                mask:coordinate = "xc yc" ;
                mask:note = "unitless" ;
                mask:comment = "0=ocean and 1=land, 0 indicates that cell is not active" ;

Which one is right?
 

erik

Erik Kluzek
CSEG and Liaisons
Staff member
The first "error" is just a warning. It checks for the name "LANDMASK", doesn't find it and prints a warning. But then it checks for "mask", and finds it and is happy. But, what is causing it to die is this error:  decompInit_lnd(): Number of clumps exceeds number of land grid cells           4           1
So you are running for a single point -- but asking for four threads. For one point, you need to run with only 1 task and 1 thread.
 
Top