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.
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.