README version:
---------------------------------------------
CONTACT: Jason E.
Box,
---------------------------------------------
DATA
CITATION: Box, J.E., D. H. Bromwich, L-S Bai, 2004:
sheet
surface mass balance for 1991-2000: application of Polar MM5
mesoscale model and
in-situ data, J. Geophys. Res., Vol. 109, No. D16, D16105,
10.1029/2003JD004451.
---------------------------------------------
information from: http://polarmet.mps.ohio-state.edu/jbox/data/
The Polar MM5
regional climate model was run over
Here, we make
available annually-resolved grids of accumulation rate, surface mass balance
(net accumulation), freshwater discharge (runoff) following this link. Data are
provided on a 24 km horizontal resolution grid with 55 E-W direction and 101 in
the N-S direction, i.e. 55 x 101 grid. Both ASCII and binary data formats are
provided. Latitude, longitude, and elevation grids are also provided. More
information is available in the README file. We anticipate users of this data
can find more errors than we did and we ask only that the data are cited when
used in publications. We recommend contacting us for further insight into our
model.
---------------------------------------------
GENERAL
INFORMATION:
Directory contains
compressed (gzipped) Tape ARchive (TAR) files that contain annual total surface
mass balance (smb), freshwater discharge (runoff), and accumulation rate (C)
data for 10 individual years spanning 1991-2000. The gzipped TAR files can be
opened in windows, e.g. using Winzip or using the following UNIX command
examples…
gunzip
smb_binary.tar.gz
tar xvf
smb_binary.tar
ASCII and binary
data formats are provided, '*.asc' and '*.bin' file suffixes, respectively.
Latitude, longitude, and elevation grids are also included. Each 24 km
horizontal resolution grid has dimensions of 55 x 101.
Read the JGR paper
cited above to learn how the data were created and for a sense of the data
accuracy. Please cite the paper and consult the authors of the data before
publishing results based on these data. The authors can provide insight to
ensure the data are not misinterpreted.
---------------------------------------------
Units: The units of the data are meters water
equivalence per year.
---------------------------------------------
READING IN DATA:
Below
is an example in the IDL language of reading into memory binary data arrays…
inpath='/greenland/data/'
; defining local location of data
year=['1991','1992','1993']
; defining array of 4-character 'string'-type data corresponding to year
yy=0
; refering to 1st element in year array: '1991'
ni=55
; array i (approx. E-W) dimensions
nj=101
; array j (approx. N-S) dimensions
SMB=fltarr(ni,nj)
openr,1,inpath+year(yy)+'_E.dat'
readu,1,E
close,1
tvscl,congrid(E,ni*4.nj*4) ;
makes image plot with color scaled to values in array
end