Replies: 4 comments 5 replies
-
Looking at the Birdhouse software ecosystemAt #282 (reply in thread), we found interesting pieces of software centered around the OGC Web Processing Service (WPS) Interface Standard, mainly conceived by the @geopython, @bird-house, @roocs and @Ouranosinc communities. About
Details
References
With kind regards, |
Beta Was this translation helpful? Give feedback.
-
Looking at DAP4Upstream says that the Data Access Protocol (DAP) is widely used, especially in Earth science. The protocol is layered on HTTP and its current specification is DAP4. DAP is intended to enable remote, selective data-retrieval as an easily invoked Web service. OPeNDAP is the Open-source Project for a Network Data Access Protocol. OPeNDAP, Inc. develops and maintains zero-cost (reference) implementations of the DAP protocol in both server-side and client-side software.
@mhaberler made us aware about pydap. It is:
|
Beta Was this translation helpful? Give feedback.
-
I've set up a pyndap sandbox server at https://pydap.mah.priv.at/ Here's a remote access example: import xarray as xr
ds_url = 'https://pydap.mah.priv.at/all.nc'
ds = xr.open_dataset(ds_url)
print(ds) Test drive:
code updated as per @amotl 's suggestion |
Beta Was this translation helpful? Give feedback.
-
I asked and was advised caution, for instance this issue Juan recommended to use https://github.com/OPENDAP/hyrax-docker instead which is at least a way to encapsulate Java-related insanities |
Beta Was this translation helpful? Give feedback.
-
Hi there,
just recently, we became aware about different technologies which delegate data processing to server side components instead of having to download and process individual resources completely. This topic is dedicated to collect information about different implementations and discuss eventual evaluations.
With kind regards,
Andreas.
Beta Was this translation helpful? Give feedback.
All reactions