From aa58e3f9db9a711570966105a04282beee96e3b7 Mon Sep 17 00:00:00 2001 From: cheginit Date: Sat, 31 Jul 2021 00:41:47 -0500 Subject: [PATCH] DOC: Add async_retriever to the hyriver table --- README.rst | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/README.rst b/README.rst index e3f3102..7dd9fe0 100644 --- a/README.rst +++ b/README.rst @@ -33,18 +33,24 @@ :target: https://github.com/cheginit/pydaymet/actions/workflows/test.yml :alt: Github Actions -=========== ==================================================================== ============ -Package Description Status -=========== ==================================================================== ============ -PyNHD_ Navigate and subset NHDPlus (MR and HR) using web services |pynhd| -Py3DEP_ Access topographic data through National Map's 3DEP web service |py3dep| -PyGeoHydro_ Access NWIS, NID, HCDN 2009, NLCD, and SSEBop databases |pygeohydro| -PyDaymet_ Access Daymet for daily climate data both single pixel and gridded |pydaymet| -PyGeoOGC_ Send queries to any ArcGIS RESTful-, WMS-, and WFS-based services |pygeoogc| -PyGeoUtils_ Convert responses from PyGeoOGC's supported web services to datasets |pygeoutils| -=========== ==================================================================== ============ +.. |async| image:: https://github.com/cheginit/async_retriever/actions/workflows/test.yml/badge.svg + :target: https://github.com/cheginit/async_retriever/actions/workflows/test.yml + :alt: Github Actions + +=============== ==================================================================== ============ +Package Description Status +=============== ==================================================================== ============ +PyNHD_ Navigate and subset NHDPlus (MR and HR) using web services |pynhd| +Py3DEP_ Access topographic data through National Map's 3DEP web service |py3dep| +PyGeoHydro_ Access NWIS, NID, HCDN 2009, NLCD, and SSEBop databases |pygeohydro| +PyDaymet_ Access Daymet for daily climate data both single pixel and gridded |pydaymet| +AsyncRetriever_ High-level API for asynchronous requests with persistent caching |async| +PyGeoOGC_ Send queries to any ArcGIS RESTful-, WMS-, and WFS-based services |pygeoogc| +PyGeoUtils_ Convert responses from PyGeoOGC's supported web services to datasets |pygeoutils| +=============== ==================================================================== ============ .. _PyGeoHydro: https://github.com/cheginit/pygeohydro +.. _AsyncRetriever: https://github.com/cheginit/async_retriever .. _PyGeoOGC: https://github.com/cheginit/pygeoogc .. _PyGeoUtils: https://github.com/cheginit/pygeoutils .. _PyNHD: https://github.com/cheginit/pynhd @@ -102,10 +108,11 @@ is designed to aid in watershed analysis through web services. This package prov utilities for manipulating (Geo)JSON and (Geo)TIFF responses from web services. These utilities are: -- ``json2geodf``: For converting (Geo)JSON objects to GroPandas dataframe. -- ``arcgis2geojson``: For converting ESRIGeoJSON objects to standard GeoJSON format. -- ``gtiff2xarray``: For converting (Geo)TIFF objects to `xarray `__ +- ``json2geodf``: For converting (Geo)JSON objects to GeoPandas dataframe. +- ``arcgis2geojson``: For converting ESRIGeoJSON to the standard GeoJSON format. +- ``gtiff2xarray``: For converting (Geo)TIFF objects to `xarray `__. datasets. +- ``xarray_geomask``: For masking a ``xarray.Dataset`` or ``xarray.DataArray`` using a polygon. All these functions handle all necessary CRS transformations.