Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Add Coordinate transformations from pysat #6

Merged
merged 60 commits into from
Aug 17, 2020
Merged
Show file tree
Hide file tree
Changes from 47 commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
6f7f7df
utils restructure - #124
jklenzing Feb 13, 2019
c6870ed
restructure
jklenzing Feb 13, 2019
49a3894
longitude functions to coords
jklenzing Feb 13, 2019
2e74182
rename test files and tidy
jklenzing Feb 20, 2019
8046231
test_utils_coords structure
jklenzing Feb 20, 2019
9129d13
move local time to coords
jklenzing Feb 20, 2019
c7da44e
unit tests for solar local time
jklenzing Feb 20, 2019
e292e42
more coord tests + style
jklenzing Feb 20, 2019
99e196f
test_calc_solar_local_time
jklenzing Feb 21, 2019
1ec067c
loosen tolerance on test_calc_solar_local_time
jklenzing Feb 21, 2019
d27d4a7
updated targets
jklenzing Feb 22, 2019
a6f27ea
test
jklenzing Feb 22, 2019
62ddd17
opposite test
jklenzing Feb 22, 2019
76a68d8
review round 1
jklenzing Feb 22, 2019
086a200
setitem fix
jklenzing Feb 22, 2019
0e33e06
test
jklenzing Feb 22, 2019
dadd14a
typo
jklenzing Feb 22, 2019
5bf8a8b
switch to mod
jklenzing Feb 22, 2019
862af2f
restore travis tests
jklenzing Feb 22, 2019
44f068c
added unit test
jklenzing Feb 22, 2019
c4bbba7
add unit testing
jklenzing Feb 22, 2019
9573c5f
fix for #171
jklenzing Feb 22, 2019
173fa32
Merge branch 'develop' into documentation
jklenzing Mar 1, 2019
08b25d1
Merge branch 'develop' into documentation
jklenzing Mar 2, 2019
583c843
Merge pull request #175 from rstoneback/documentation
jklenzing Mar 2, 2019
fad618a
tidy up imports
jklenzing Mar 6, 2019
9f3eb95
Merge pull request #192 from rstoneback/more_testing
jklenzing Mar 19, 2019
706241e
Update coords.py
aburrell Jul 17, 2019
bf17f58
Update coords.py
aburrell Jul 17, 2019
5bfded5
Update test_utils_coords.py
aburrell Jul 17, 2019
14e4495
Update test_utils_coords.py
aburrell Jul 25, 2019
b73f2d2
move scale_units to utils._core
jklenzing Aug 28, 2019
fa4e18e
bugfix
jklenzing Aug 28, 2019
6dcfd1f
BUG: restore functions and add deprecationwarnings
jklenzing Sep 28, 2019
306abc3
TST: add test for deprecation
jklenzing Sep 28, 2019
67fab4e
BUG: stacklevel for all DeprecationWarnings
jklenzing Oct 21, 2019
a0290d6
Merged
rstoneback Oct 27, 2019
48bee2d
Merge pull request #318 from pysat/asher_meta_merge
rstoneback Oct 31, 2019
2ba02af
STY: Updated variable name and imports.
rstoneback Nov 8, 2019
4dcc7f8
Merge pull request #321 from pysat/develop
rstoneback Nov 18, 2019
01b846e
Merge branch 'master' of https://github.com/jklenzing/temprepo into c…
jklenzing Jul 3, 2020
3b7684f
ENH: Add coord transformations for JRO
jklenzing Jul 3, 2020
38003ab
DOC: add changelog
jklenzing Jul 3, 2020
74f7149
STY: flake8 updates
jklenzing Jul 3, 2020
e442808
STY: put coords under utils
jklenzing Jul 6, 2020
25ad97b
TST: update max-line-length
jklenzing Jul 6, 2020
49e460a
TST: restructure coords tests
jklenzing Jul 6, 2020
b12b90d
BUG: downstream changes
aburrell Jul 13, 2020
40fce95
TST: modernize geod to geoc tests
jklenzing Jul 13, 2020
85ab450
Merge branch 'coords' of https://github.com/pysat/pysatMadrigal into …
jklenzing Jul 13, 2020
52f8eaa
Merge branch 'develop' into coords
jklenzing Jul 23, 2020
4bbb9c4
TST: make sure both ndarray and float are tested
jklenzing Jul 23, 2020
fae4012
BUG: test for float
jklenzing Jul 23, 2020
ce2cc0b
TST: rewrite using hydrid style
jklenzing Aug 15, 2020
3281bf3
STY: use x and y
jklenzing Aug 15, 2020
18752a7
Merge branch 'develop' into coords
jklenzing Aug 15, 2020
8cf12df
STY: whitespace
jklenzing Aug 15, 2020
9e6cff9
STY: minimize local variables in tests
jklenzing Aug 17, 2020
0d422b5
Merge branch 'develop' into coords
jklenzing Aug 17, 2020
91a8cd2
STY: compact tests
jklenzing Aug 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.?.?] - 2020-07-03
- Added coords from pysat.utils

## [0.0.3] - 2020-06-15
- pypi compatibility

## [0.0.2] - 2020-05-13
- zenodo link

## [0.0.1] - 2020-05-13
- Alpha release
1 change: 1 addition & 0 deletions pysatMadrigal/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
from pysatMadrigal import instruments # noqa F401
from pysatMadrigal import utils # noqa F401
Loading