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

quick question about the total land area in CLM

fenghe@wisc_edu

New Member
Hi CLM users,

I'm puzzled by the total land area in CLM, which is 167 million km[SUP]2[/SUP], and over 10% more than the true value (150 million km[SUP]2[/SUP]).

http://hypertextbook.com/facts/2001/DanielChen.shtml

I attached the variable "area" in CCSM4 CLM below.

To unzip:
mv area.nc.zip area.nc.gz
gunzip area.nc.gz

Here is the ncl script to get the total area:

begin
f = addfile("area.nc","r")
d = f->area
print(sum(d))
end


Any thoughts?
Thank you for your attention.
 
Top