SlideRule's Python client makes it easier to interact with SlideRule from a Python script.
Detailed documentation on installing and using this client can be found at slideruleearth.io.
conda install -c conda-forge sliderule
For alternate methods to install SlideRule, including options for developers, please see the installation instructions.
Basic functionality of sliderule-python depends on requests
and numpy
. But if you intend on running the example notebooks, please refer to the package requirements listed in environment.yml
for a full list of recommended python libraries.
SlideRule is a C++/Lua framework for on-demand data processing. It is a science data processing service that runs in the cloud and responds to REST API calls to process and return science results.
While SlideRule can be accessed by any http client (e.g. curl) by making GET and POST requests to the SlideRule service, the python packages in this repository provide higher level access by hiding the GET and POST requests inside python function calls that accept and return python variable types.
Example usage:
# import
from sliderule import icesat2
# initialize
icesat2.init("slideruleearth.io", verbose=False)
# region of interest
region = [ {"lon":-105.82971551223244, "lat": 39.81983728534918},
{"lon":-105.30742121965137, "lat": 39.81983728534918},
{"lon":-105.30742121965137, "lat": 40.164048017973755},
{"lon":-105.82971551223244, "lat": 40.164048017973755},
{"lon":-105.82971551223244, "lat": 39.81983728534918} ]
# request parameters
parms = {
"poly": region,
"srt": icesat2.SRT_LAND,
"cnf": icesat2.CNF_SURFACE_HIGH,
"len": 40.0,
"res": 20.0,
"maxi": 1
}
# make request
rsps = icesat2.atl06p(parms, "nsidc-s3")
print(f"{rsps}")
More extensive examples in the form of Jupyter Notebooks can be found in the examples folder.
Please see our documentation page for reference and user's guide material.
SlideRule is licensed under the 3-clause BSD license found in the LICENSE file at the root of this source tree.
The following sliderule-python software components include code sourced from and/or based off of third party software that is distributed under various open source licenses. The appropriate copyright notices are included in the corresponding source files.
sliderule/icesat2.py
: subsetting code sourced from NSIDC download script (Regents of the University of Colorado)