Metadata-Version: 1.1
Name: nasadap
Version: 1.3.1
Summary: Class and functions for downloading NASA data into xarray
Home-page: https://github.com/mullenkamp/nasadap
Author: Mike Kittridge
Author-email: mullenkamp1@gmail.com
License: Apache
Description: nasadap - A Python package for downloading NASA data using DAP

        =======================================================================

        

        The nasadap package contains a class and associated methods/functions to download NASA satellite data products and convert them to `xarray <http://xarray.pydata.org>`_ datasets. It uses the python package `pydap <https://pydap.readthedocs.io>`_ to access the NASA `Hyrax <https://docs.opendap.org/index.php/Hyrax>`_ OPeNDAP servers.

        

        At the moment, nasadap can only download the satellite precipitation data from the TRMM and GPM missions.

        

        The official list of precipitation products can be found `here <https://pmm.nasa.gov/data-access/downloads/>`_.

        The products available via nasadap are described below.

        

        New users must register an account with `Earthdata <https://urs.earthdata.nasa.gov/users/new>`_ to get a username and password to access any NASA data. Then `register <https://disc.gsfc.nasa.gov/earthdata-login>`_ "apps" once logged in. These "apps" are: NASA GESDISC DATA ARCHIVE, GES DISC, and Pydap. More details on general data access can be found on the `Eathdata wiki <https://wiki.earthdata.nasa.gov/display/EL/Earthdata+Login+Knowledge+Base>`_.

        

        Installation

        ------------

        nasadap can be installed via pip or conda::

        

          pip install nasadap

        

        or::

        

          conda install -c mullenkamp nasadap

        

        The core dependencies are `xarray <http://xarray.pydata.org>`_, `pydap <https://pydap.readthedocs.io>`_, and `requests <http://docs.python-requests.org/en/master/>`_.

        

        Mission and product descriptions

        --------------------------------

        Tropical Rainfall Measuring Mission (TRMM)

        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

        A full description and documentation of the TRMM can be found on the `NASA TRMM site <https://doi.org/10.5067/TRMM/TMPA/3H/7>`_ [1].

        "This dataset is the output from the TMPA (TRMM Multi-satellite Precipitation) Algorithm, and provides precipitation estimates in the TRMM regions that have the (nearly-zero) bias of the ”TRMM Combined Instrument” precipitation estimate and the dense sampling of high-quality microwave data with fill-in using microwave-calibrated infrared estimates. The granule size is 3 hours."

        

        This dataset has been deprecated since NASA has processed the TRMM data using the GPM algorithm, which means GPM data is available back until 2000.

        

        .. [1] Tropical Rainfall Measuring Mission (TRMM) (2011), TRMM (TMPA) Rainfall Estimate L3 3 hour 0.25 degree x 0.25 degree V7, Greenbelt, MD, Goddard Earth Sciences Data and Information Services Center (GES DISC), Accessed: 2018-12-28, `10.5067/TRMM/TMPA/3H/7 <https://doi.org/10.5067/TRMM/TMPA/3H/7>`_

        

        Global Precipitation Mission (GPM)

        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

        A full description and documentation of the GPM can be found on the `NASA GPM site <https://doi.org/10.5067/GPM/IMERG/3B-HH/05>`_ [2].

        "The Integrated Multi-satellitE Retrievals for GPM (IMERG) is the unified U.S. algorithm that provides the Day-1 multi-satellite precipitation product for the U.S. GPM team.

        

        The precipitation estimates from the various precipitation-relevant satellite passive microwave (PMW) sensors comprising the GPM constellation are computed using the 2014 version of the Goddard Profiling Algorithm (GPROF2014), then gridded, intercalibrated to the GPM Combined Instrument product, and combined into half-hourly 10x10 km fields."

        

        This dataset has three downloadable products.

        The core product set has a temporal resolution of 30 minutes and have three different "runs": Early (3IMERGHHE), Late (3IMERGHHL), and Final (3IMERGHH). Early is 4 hours behind real-time, Late is 12 hours behind real-time, and Late has been rain-gauge calibrated and is several months behind. A more thorough description can be found at the link above.

        The daily products have been deprecated as it is better to download the finer temporal resolution products and aggregate them as needed due to time zone issues that might arise when only using the daily products.

        

        The dataset that most people would want is called "precipitationCal".

        

        **NOTE:** According to the `official TRMM docs <https://docserver.gesdisc.eosdis.nasa.gov/public/project/GPM/README.TRMM.pdf>`_ under B-9, NASA will be reprocessing the TRMM data back until 2000 using the GPM IMERG V05 algorithm for consistency across the two mission's products. This will be integrated into nasadap once it's up.

        **Update** They have done it! GPM data back until 2000 has been integrated into nasadap. It has currently been processed for the 3IMERGHH product and has been given a new version number (6).

        

        .. [2] George Huffman (2017), GPM IMERG Final Precipitation L3 Half Hourly 0.1 degree x 0.1 degree V05, Greenbelt, MD, Goddard Earth Sciences Data and Information Services Center (GES DISC), Accessed: 2018-12-28, `10.5067/GPM/IMERG/3B-HH/05 <https://doi.org/10.5067/GPM/IMERG/3B-HH/05>`_

        

        Usage Examples

        --------------

        At the moment, there is a single class called NASA that provides access to the data. It's highly recommended to use a cache directory as NASA's Hyrax server is a bit slow.

        

        .. code-block:: python

        

          from nasadap import Nasa, parse_nasa_catalog

        

          ###############################

          ### Parameters

        

          username = '' # Need to change!

          password = '' # Need to change!

          mission = 'gpm'

          product = '3IMERGHH'

          version = 6

          from_date = '2019-03-28'

          to_date = '2019-03-29'

          dataset_type = 'precipitationCal'

          min_lat=-49

          max_lat=-33

          min_lon=165

          max_lon=180

          cache_dir = 'nasa/cache/nz'

        

          ###############################

          ### Examples

        

          min_max1 = parse_nasa_catalog(mission, product, version, min_max=True) # Will give you the min and max available dates for products

        

          ge1 = Nasa(username, password, mission, cache_dir)

        

          products = ge1.get_products()

        

          datasets = ge1.get_dataset_types(products[0])

        

          ds1 = ge1.get_data(product, version, dataset_type, from_date, to_date, min_lat,

                              max_lat, min_lon, max_lon)

          ge1.close()

        

        Once you've got the cached data, you might want to aggregate the netcdf files by year or month to make it more accessible outside of nasadap. The time_combine function under the agg module provides a way to aggregate all of the many netcdf files together and will update the files as new data is added to NASA's server. It will also shift the time to the appropriate time zone (since the NASA data is in UTC+00).

        

        .. code-block:: python

        

          from nasadap import agg

        

          ###############################

          ### Parameters

        

          cache_dir = 'nasa/cache/nz'

          save_dir = 'nasa/precip'

        

          username = '' # Need to change!

          password = '' # Need to change!

        

          mission = 'gpm'

          freq = 'M'

          product = '3IMERGHH'

          version = 6

          datasets = ['precipitationCal']

        

          min_lat=-49

          max_lat=-33

          min_lon=165

          max_lon=180

          dl_sim_count = 50

          tz_hour_gmt = 12

        

          agg.time_combine(mission, product, version, datasets, save_dir, username, password,

                            cache_dir, tz_hour_gmt, freq, min_lat, max_lat, min_lon,

                            max_lon, dl_sim_count)

        
Keywords: nasa data
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
