[Dart-dev] DART/branches Revision: 13115
dart at ucar.edu
dart at ucar.edu
Wed Apr 17 09:31:05 MDT 2019
nancy at ucar.edu
2019-04-17 09:31:05 -0600 (Wed, 17 Apr 2019)
361
add option to use ncep errors for temperature and
moisture obs instead of those that come with the files.
update to work with both versions 5 and 6 of the
airs obs files. update build mkmf file to use the
hdf-eos module if available. update instructions
for getting the EOS converter files and compatible
versions of hdf, etc needed to build this converter.
Modified: DART/branches/rma_trunk/observations/obs_converters/AIRS/AIRS.html
===================================================================
--- DART/branches/rma_trunk/observations/obs_converters/AIRS/AIRS.html 2019-04-16 22:08:50 UTC (rev 13114)
+++ DART/branches/rma_trunk/observations/obs_converters/AIRS/AIRS.html 2019-04-17 15:31:05 UTC (rev 13115)
@@ -254,11 +254,15 @@
<blockquote>
<pre>
-ftp edhs1.gsfc.nasa.gov
-# (log in as 'anonymous' and your email as the password)
-cd /edhs/hdfeos/latest_release
-mget *
-quit
+wget https://observer.gsfc.nasa.gov/ftp/edhs/hdfeos/latest_release/*
+
+# NOTE: direct ftp does not work for me anymore
+
+##ftp edhs1.gsfc.nasa.gov
+### (log in as 'anonymous' and your email as the password)
+##cd /edhs/hdfeos/latest_release
+##mget *
+##quit
# mar 2013, the dir contents:
#
@@ -272,7 +276,15 @@
#
# (i skipped a 'windows' dir).
#
-
+# mar 2019 contents:
+# HDF-EOS2.20v1.00.tar.Z 08-Jan-2018 15:21 7.3M
+# HDF-EOS2.20v1.00_Tes..> 08-Jan-2018 15:21 9.5M
+# HDF-EOS_REF.pdf 07-Nov-2018 13:45 695K
+# HDF-EOS_UG.pdf 08-Jan-2018 15:28 429K
+# hdf-4.2.13.tar.gz 08-Jan-2018 15:14 4.3M
+# jpegsrc.v9b.tar.gz 09-Jan-2018 13:44 1.0M
+# zlib-1.2.11.tar.gz 08-Jan-2018 15:22 593K
+#
for i in *.tar.gz
do
tar -zxvf $i
@@ -285,7 +297,7 @@
echo zlib:
-cd zlib-1.2.5
+cd zlib-1.2.11
./configure --prefix=/glade/p/work/nancy
make
make test
@@ -293,7 +305,7 @@
echo jpeg:
-cd jpeg-6b
+cd jpeg-9b
./configure --prefix=/glade/p/work/nancy
make
make test
@@ -305,7 +317,7 @@
echo hdf:
-cd hdf-4.2.6
+cd hdf-4.2.13
./configure --prefix=/glade/p/work/nancy
# (it found zlib and jpeg, from the install prefix i guess)
make
@@ -329,18 +341,10 @@
echo edit mkmf_convert_airs_L2 to have all the base paths
echo be /glade/p/work/nancy instead of whatever. make it look like:
echo ' '
-echo 'set JPGDIR = /glade/p/work/nancy'
-echo 'set JPGLIB = ${JPGDIR}/lib'
-echo 'set JPGINC = ${JPGDIR}/include'
+echo 'set JPGDIR = /glade/work/nancy'
+echo 'set HDFDIR = /glade/work/nancy'
+echo 'set EOSDIR = /glade/work/nancy'
echo ' '
-echo 'set HDFDIR = /glade/p/work/nancy'
-echo 'set HDFLIB = ${HDFDIR}/lib'
-echo 'set HDFINC = ${HDFDIR}/include'
-echo ' '
-echo 'set EOSDIR = /glade/p/work/nancy'
-echo 'set EOSLIB = ${EOSDIR}/lib'
-echo 'set EOSINC = ${EOSDIR}/include'
-echo ' '
./quickbuild.csh
Modified: DART/branches/rma_trunk/observations/obs_converters/AIRS/airs_JPL_mod.f90
===================================================================
--- DART/branches/rma_trunk/observations/obs_converters/AIRS/airs_JPL_mod.f90 2019-04-16 22:08:50 UTC (rev 13114)
+++ DART/branches/rma_trunk/observations/obs_converters/AIRS/airs_JPL_mod.f90 2019-04-17 15:31:05 UTC (rev 13115)
@@ -2,6 +2,12 @@
! DART $Id$
! adapted from original JPL code, example AIRS readers
+!
More information about the Dart-dev
mailing list