Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OrbNavClient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SIPS
OrbNavClient
Commits
661e1d30
Commit
661e1d30
authored
Mar 29, 2016
by
Bruce Flynn
Browse files
Options
Downloads
Patches
Plain Diff
Release 0.3.2
parent
6e8fac73
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.rst
+36
-0
36 additions, 0 deletions
README.rst
setup.py
+1
-3
1 addition, 3 deletions
setup.py
with
37 additions
and
3 deletions
README.rst
0 → 100644
+
36
−
0
View file @
661e1d30
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
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
3
View file @
661e1d30
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
,
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment