-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
specify yaml loader (PyYAML yaml.load(input) Deprecation)
GFZ RL06 GRFO still requires the regex for removing colons
- Loading branch information
1 parent
0f55b66
commit b716fb9
Showing
3 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from read_GRACE_harmonics import read_GRACE_harmonics | ||
from read_GRACE_harmonics.read_GRACE_harmonics import read_GRACE_harmonics |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from setuptools import setup, find_packages | ||
setup( | ||
name='read-GRACE-harmonics', | ||
version='1.0.0.5', | ||
description='Reads Level-2 spherical harmonic coefficients from the NASA/DLR Gravity Recovery and Climate Experiment (GRACE) mission', | ||
version='1.0.0.6', | ||
description='Reads Level-2 spherical harmonic coefficients from the NASA/DLR GRACE and NASA/GFZ GRACE Follow-on missions', | ||
url='https://github.com/tsutterley/read-GRACE-harmonics', | ||
author='Tyler Sutterley', | ||
author_email='[email protected]', | ||
|
@@ -15,7 +15,7 @@ | |
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
], | ||
keywords='GRACE Gravity Spherical Harmonics', | ||
keywords='GRACE, GRACE-FO, Gravity, satellite geodesy, spherical harmonics', | ||
packages=find_packages(), | ||
install_requires=['numpy','pyyaml'], | ||
) |