MISR Toolkit  1.5.1
MISR Toolkit Documentation

Introduction

The MISR Toolkit is a simplified programming interface to access MISR L1B2, L2, and MISR-HR, conventional and ancillary data products. It is an interface built upon HDF-EOS that knows about MISR data products. It has the ability to:

Users Guide and Interface Documents

Function Summary

Architecture and Language Support

CentOS 7 or later (64-bit)

MacOS X 10.14.6 or later (Intel)

Windows 10 (64-bit)

Availability

Source code and Microsoft Windows dll's are available at Releases on the MISR Toolkit GitHub

Third Party Library Dependencies

The MISR Toolkit depends on the following libraries. Download links are provided for your reference, but it is highly recommended that you use the script "download_libraries" in the source bundle "scripts" directory. Python users will still need to download NumPy 1.15 or later and install it according to NumPy instructions.

Installation Instructions

Linux and MacOS X

The recommended location for the HDF-EOS/HDF libraries and the MISR Toolkit is /usr/local/hdfeoslibs and /usr/local/Mtk-1.5.X respectively, because this location provides convenient access for multiple user accounts. It is not necessary, however, to install in /usr/local. The MISR Toolkit and HDF-EOS can be installed anywhere. Of course installing in /usr/local requires root or sudo privileges. Use the sudo commands below if you are a sudoer or simply become root before installing the HDF-EOS/HDF libraries and before the "make install" step for the MISR Toolkit.

1) Create a working directory

2) Extract Mtk-src-1.5.X.tar.gz

3) Extract Mtk testdata (substitute Mtk-testdata-1.5.x with your version)

4) Download HDF-EOS/HDF, JPEG and ZLIB libraries

5) Install HDF-EOS/HDF, JPEG and ZLIB libraries (using the following script is necessary because it applies patches which are required for some systems, like Mac Universal Binaries, Linux and Linux64)

6) Build, test and install Mtk (substitute Mtk-src-1.5.X with your version)

7) To use Mtk

8) Optional - You may want to install the MisrToolkit into you Python site-packages directory

9) Optional - After installing the Mtk_tmp directory, it's contents is not needed, unless for reference and may be removed

Windows

See win32/README.txt in the source or binary bundle.

Documentation

Documentation Availability

HTML documentation for the supported interfaces is available in the doc directory.

Documentation Regeneration

The target to remake documentation is "make doc"
The C documentation, including this page, is created using doxygen. A doxygen config file template is at doc/Doxyfile.template

The Python documentation is generated using the python's mkhowto tool, which was removed from recent Python distributions and pdfTeX.
You must sepearely install pdfTeX (for example by installing the TeX Live distribution) before using make doc to rebuild python documentation.
Scripts have been provided to allow the download of a compatible distribution and extraction of the required files.

 
  $ cd $MTK_INSTALLDIR
  $ scripts/download_mkhowto
  $ scripts/install_mkhowto
  

You must then set PYDOCDIR environment variable (ex. ~/Mtk_tmp/Mtk_thirdparty/pythonDocTools)

You should then be able to make doc successfully.

Examples

How to use the command-line utilities

        $ source <HDFEOSDIR>/bin/<ARCH>/hdfeos_env.csh
        $ source $MTK_INSTALLDIR/bin/Mtk_c_env.csh
        $ MtkLatLonToPathList --dd=-75.345,169.89
          Lat/Lon: -75.345000 169.890000
        Path list: 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
        $ MtkOrbitToTimeRange 29058
        2005-06-04T17:41:17Z
        2005-06-04T19:20:10Z
        $ MtkMisrToEnvi --entire-file --hdffilename=../Mtk_testdata/in/MISR_AM1_GRP_ELLIPSOID_GM_P037_O029058_AA_F03_0024.hdf \
        > --gridname=BlueBand --fieldname="Blue Brf" --envifilename=out
        path = 37
        start block = 1
        end block = 140
        

How to build using core C MisrToolkit library

Compile, link and run (click foo.c, bar.c and biz.c for source code) or see examples/C/Makefile

        $ source <HDFEOSDIR>/bin/<ARCH>/hdfeos_env.csh
        $ source $MTK_INSTALLDIR/bin/Mtk_c_env.csh
        $ gcc $MTK_CFLAGS -c foo.c
        $ gcc $MTK_CFLAGS -c bar.c
        $ gcc $MTK_CFLAGS -c biz.c
        $ gcc -o baz foo.o bar.o biz.o $MTK_LDFLAGS
        $./baz
        Example 1:
        path = 37
        resolution = 275
        block, line, sample = 60,  256.0, 1024.0
        lat_dd, lon_dd = 38.130890, -110.848247
        lat deg, min, sec = 38:07:51.21
        lon deg, min, sec = -110:50:53.69
        b, l, s = 60,  256.0, 1024.0
        Example2:
        starttime = 2002-02-02T02:00:00Z
        endtime = 2002-05-02T02:00:00Z
        Pathlist = 35 36 37 38 39 
        Orbitlist for Path 35 = 11379 11612 11845 12078 12311 12544 
        Orbitlist for Path 36 = 11481 11714 11947 12180 12413 
        Orbitlist for Path 37 = 11350 11583 11816 12049 12282 12515 
        Orbitlist for Path 38 = 11452 11685 11918 12151 12384 
        Orbitlist for Path 39 = 11321 11554 11787 12020 12253 12486
        Example 3:
        region center lat/lon (dd) = (32.200000, -114.500000)
                 region extent (m) = (200000.000000, 100000.000000)
                      Reading file = /Users/ber/Development/Toolkit/Mtk/../Mtk_testdata/in/MISR_AM1_GRP_ELLIPSOID_GM_P037_O029058_AA_F03_0024.hdf
                      Reading grid = RedBand
                     Reading field = Red Brf
           number of lines/samples = (768, 384)
                input lat/lon (dd) = (32.200000, -114.500000)
                       line/sample = (383.293396, 191.933014)
                     Brf[383][192] = 0.357760
                 block/line/sample = (65, 210.292969, 413.932983)
                      lat/lon (dd) = (32.200000, -114.500000)
                     lat/lon (dms) = (32:11:59.999887, -114:30:0.000085)
                           SOM x/y = (16529918.187500, 307019.078125)
              pixel time[383][192] = 2005-06-04T18:21:45.415768Z
                      Reading file = /Users/ber/Development/Toolkit/Mtk/../Mtk_testdata/in/MISR_AM1_AS_LAND_P037_O029058_F06_0017.hdf
                      Reading grid = SubregParamsLnd
                     Reading field = LandHDRF[3][4]
           number of lines/samples = (192, 96)
                input lat/lon (dd) = (32.200000, -114.500000)
                       line/sample = (95.198349, 47.108253)
                      HDRF[95][47] = 0.208766
                 block/line/sample = (65, 52.198242, 103.108246)
                      lat/lon (dd) = (32.200000, -114.500000)
                     lat/lon (dms) = (32:11:59.999887, -114:30:0.000085)
                           SOM x/y = (16529918.184044, 307019.077821)
        Worked like champ!
        

See MISR Toolkit Routine Summary Table and MISR Toolkit Users Guide for more C examples

How to use the IDL MisrToolkit library

See examples/idl/filelist_by_timerange.pro

    $ source $MTK_INSTALLDIR/bin/Mtk_idl_env.sh
        $ idl
        IDL> help,/dlm
            ....
            MTK - MISR Toolkit (not loaded)
            Version: 1.2.0, Build Date: Nov 08 2006, Source: Jet Propulsion Laboratory
            ....
        IDL> filelist_by_timerange,'2005-01-01T00:00:00','2005-01-01T00:59:59'
              Start time = 2005-01-01T00:00:00
                End time = 2005-01-01T00:59:59
        Number of orbits =            2
              Orbit list =        26804       26805
               0
        orbit =        26804 path =           88
        MISR_AM1_GRP_ELLIPSOID_GM_P088_O026804_DA_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P088_O026804_CA_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P088_O026804_BA_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P088_O026804_AA_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P088_O026804_AN_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P088_O026804_AF_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P088_O026804_BF_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P088_O026804_CF_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P088_O026804_DF_F03_0023.hdf
        MISR_AM1_GP_GMP_P088_O026804_F03_0013.hdf
        MISR_AM1_TC_STEREO_P088_O026804_F07_0012.hdf
               1
        orbit =        26805 path =          104
        MISR_AM1_GRP_ELLIPSOID_GM_P104_O026805_DA_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P104_O026805_CA_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P104_O026805_BA_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P104_O026805_AA_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P104_O026805_AN_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P104_O026805_AF_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P104_O026805_BF_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P104_O026805_CF_F03_0023.hdf
        MISR_AM1_GRP_ELLIPSOID_GM_P104_O026805_DF_F03_0023.hdf
        MISR_AM1_GP_GMP_P104_O026805_F03_0013.hdf
        MISR_AM1_TC_STEREO_P104_O026805_F07_0012.hdf
        IDL> help,/dlm
            ....
            MTK - MISR Toolkit (loaded)
            Version: 1.2.0, Build Date: Nov 08 2006, Source: Jet Propulsion Laboratory
            ....
        

See MISR Toolkit IDL Function Index

How to use the Python MisrToolkit library

See examples/python/readmisr.py

    $ source $MTK_INSTALLDIR/bin/Mtk_python_env.sh
        $ python
        >>> import MisrToolkit as Mtk
        >>> import os
        >>> region = Mtk.MtkRegion(37,40,42)
        >>> filename = os.getenv('MTKHOME') + '/../Mtk_testdata/in/MISR_AM1_GRP_ELLIPSOID_GM_P037_O029058_AA_F03_0024.hdf'
        >>> gridname = 'RedBand'
        >>> fieldname = 'Red Brf'
        >>> d = Mtk.MtkFile(filename).grid(gridname).field(fieldname).read(region)
        >>> n = d.data()
        >>> n.shape
        >>> m = d.mapinfo()
        >>> type(d)
        >>> type(n)
        >>> type(m)
        >>> help(d)
        >>> help(n)
        >>> help(m)
        

See MISR Toolkit Python Interface

Known Problems


MISR Toolkit - Copyright © 2005 - 2020 Jet Propulsion Laboratory
Generated on Fri Jun 19 2020 22:49:54