1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
.. title:: ulmo readers (API)
ulmo Readers
============
ulmo readers / api's.
.. _dates-and-times:
note on dates and times
=======================
Dates and times can provided a few different ways, depending on what is
convenient. They can either be a string representation or as instances of date
and datetime objects from python's datetime standard library module. For
strings, the ISO 8061 format ('YYYY-mm-dd HH:MM:SS' or some abbreviated version)
is accepted, as well dates in 'mm/dd/YYYY' format.
.. _api:
Readers for Global to USA-national data
=======================================
Climate Prediction Center (CPC) Weekly Drought
----------------------------------------------
.. automodule:: ulmo.cpc.drought
:members: get_data
CUAHSI Hydrologic Information System (HIS)
------------------------------------------
CUAHSI HIS Central
^^^^^^^^^^^^^^^^^^
.. automodule:: ulmo.cuahsi.his_central
:members: get_services
CUAHSI WaterOneFlow (WOF)
^^^^^^^^^^^^^^^^^^^^^^^^^
.. automodule:: ulmo.cuahsi.wof
:members: get_sites, get_site_info, get_values, get_variable_info
NASA ORNL Daymet weather data services
--------------------------------------
.. automodule:: ulmo.nasa.daymet
:members: get_variables, get_daymet_singlepixel
National Climatic Data Center (NCDC)
------------------------------------
NCDC Climate Index Reference Sequential (CIRS)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. automodule:: ulmo.ncdc.cirs
:members: get_data
NCDC Global Historical Climate Network (GHCN) Daily
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. automodule:: ulmo.ncdc.ghcn_daily
:members: get_data, get_stations
NCDC Global Summary of the Day (GSoD)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. automodule:: ulmo.ncdc.gsod
:members: get_data, get_stations
NOAA GOES Data Collection System (DCS) services
-----------------------------------------------
.. automodule:: ulmo.noaa.goes
:members: get_data, decode
USGS National Water Information System (NWIS)
---------------------------------------------
.. automodule:: ulmo.usgs.nwis
:members: get_sites, get_site_data
.. automodule:: ulmo.usgs.nwis.hdf5
:members:
USGS National Elevation Dataset (NED) raster services
-----------------------------------------------------
.. automodule:: ulmo.usgs.ned
:members: get_available_layers, get_raster, get_raster_availability
Readers for USA regional (sub-national) data
============================================
California Department of Water Resources Historical Data
--------------------------------------------------------
.. automodule:: ulmo.cdec.historical
:members: get_stations, get_sensors, get_station_sensors, get_data
Lower Colorado River Authority (LCRA)
-------------------------------------
.. automodule:: ulmo.lcra.hydromet
:members: get_sites_by_type, get_site_data, get_all_sites, get_current_data
.. automodule:: ulmo.lcra.waterquality
:members: get_sites, get_historical_data, get_recent_data, get_site_info
Texas Weather Connection Daily Keetch-Byram Drought Index (KBDI)
----------------------------------------------------------------
.. automodule:: ulmo.twc.kbdi
:members: get_data
US Army Corps of Engineers (USACE) - Tulsa District Water Control
-----------------------------------------------------------------
.. automodule:: ulmo.usace.swtwc
:members: get_stations, get_station_data
|