Skip to content
Snippets Groups Projects
Commit 661e1d30 authored by Bruce Flynn's avatar Bruce Flynn
Browse files

Release 0.3.2

parent 6e8fac73
Branches
No related tags found
No related merge requests found
OrbNav API Python Client
Requirements
------------
* Python 2.7+
Install
-------
The easiest way to install is using ``pip`` and the Gitlab URL directly::
pip install git+https://gitlab.ssec.wisc.edu/sips/OrbNavClient.git@master
If you prefer to be more explicit regarding what version you install::
pip install git+https://gitlab.ssec.wisc.edu/sips/OrbNavClient.git@0.3.2
Example Usage
-------------
::
from datetime import datetime
from orbnav_client import Client
orbnav = Client()
result = orbnav.swathcirc(
sat='SUOMI NPP', start=datetime(2016, 1, 1), end=datetime(2016, 1, 2),
loc=(43, -89), radius=100, scanangle=56)
There is minimal documentation available directly in the client, the majority
of the documentation is maintained at::
http://sips.ssec.wisc.edu/orbnav/api/v1
from setuptools import setup, find_packages
setup(
name='OrbNavClient',
version=':pygittools:',
setup_requires=['PyGitTools>=0.1.2'],
pygitmeta=True,
version='0.3.2',
packages=find_packages(),
include_package_data=True,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment