[Python-modules-commits] [python-pysolar] branch master updated (819d2f4 -> 0e4a030)
Wolfgang Borgert
debacle at moszumanska.debian.org
Thu Aug 10 18:49:54 UTC 2017
This is an automated email from the git hooks/post-receive script.
debacle pushed a change to branch master
in repository python-pysolar.
from 819d2f4 Fixed VCS URL (https)
new 0dba59d remove .git-dpm
new b1db180 move to debhelper >= 10
new a5d9ccc bump to standards version 4.0.1
new 28cf1a1 import version 0.7+gite32d755, latest version from authors homepage, debian/ directory removed
new dcb3af9 Merge tag 'upstream/0.7+gite32d755+dfsg'
new 04459af remove obsolete patch
new a28f454 remove Python 2, because not supported by upstream anymore
new 0e4a030 prepare 0.7+gite32d755+dfsg-1
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 6 +-
.travis.yml | 7 +
CONTRIBUTORS.markdown | 9 +-
Pysolar.egg-info/PKG-INFO | 12 -
Pysolar.egg-info/SOURCES.txt | 17 -
Pysolar.egg-info/dependency_links.txt | 1 -
Pysolar.egg-info/top_level.txt | 1 -
Pysolar/__init__.py | 1 -
Pysolar/constants.py | 402 --
Pysolar/elevation.py | 62 -
Pysolar/julian.py | 63 -
Pysolar/radiation.py | 49 -
Pysolar/rest.py | 229 -
Pysolar/simulate.py | 67 -
Pysolar/solar.py | 359 --
Pysolar/testsolar.py | 151 -
Pysolar/util.py | 656 --
README.markdown | 59 +-
debian/.git-dpm | 11 -
debian/changelog | 12 +-
debian/compat | 2 +-
debian/control | 18 +-
debian/dirs | 2 -
debian/patches/0001-Use-print-as-function.patch | 24 -
debian/patches/series | 1 -
debian/rules | 2 +-
development-notes.md | 13 +-
dist/Pysolar-0.5.tar.gz | Bin 21144 -> 0 bytes
dist/Pysolar-0.6-alpha.tar.gz | Bin 21164 -> 0 bytes
doc/Makefile | 171 +-
doc/conf.py | 244 +-
.../chart_Pysolar_error_v_altitude_2008-07-21.png | Bin 0 -> 60569 bytes
.../chart_Pysolar_error_v_altitude_2014-12-13.png | Bin 0 -> 42380 bytes
.../chart_Pysolar_error_v_altitude_2015-04-17.png | Bin 0 -> 35809 bytes
.../chart_Pysolar_error_v_azimuth_2008-07-21.png | Bin 0 -> 62970 bytes
.../chart_Pysolar_error_v_azimuth_2014-12-13.png | Bin 0 -> 43644 bytes
.../chart_Pysolar_error_v_azimuth_2015-04-17.png | Bin 0 -> 45255 bytes
.../chart_Pysolar_error_v_latitude_2008-07-21.png | Bin 0 -> 99268 bytes
.../chart_Pysolar_error_v_latitude_2014-12-13.png | Bin 0 -> 59782 bytes
.../chart_Pysolar_error_v_latitude_2015-04-17.png | Bin 0 -> 53716 bytes
.../chart_Pysolar_error_v_longitude_2008-07-21.png | Bin 0 -> 135309 bytes
.../chart_Pysolar_error_v_longitude_2014-12-13.png | Bin 0 -> 96718 bytes
.../chart_Pysolar_error_v_longitude_2015-04-17.png | Bin 0 -> 70428 bytes
.../img/reference_frame.png | Bin
doc/index.rst | 249 +-
images/spherical.jpg | Bin 844711 -> 0 bytes
images/sun_path_2009-03-19.jpg | Bin 444611 -> 0 bytes
images/sun_path_2009-03-19_800x400.jpg | Bin 67494 -> 0 bytes
pysolar.org/all.css | 54 -
pysolar.org/gradient.png | Bin 497 -> 0 bytes
pysolar.org/index.html | 107 -
pysolar.org/logo.png | Bin 8078 -> 0 bytes
pysolar/__init__.py | 6 +
pysolar/constants.py | 445 ++
pysolar/elevation.py | 78 +
pysolar/radiation.py | 52 +
pysolar/rest.py | 300 +
pysolar/rest2-validation.ipynb | 98 +
pysolar/simulate.py | 64 +
pysolar/solar.py | 388 ++
pysolar/solartime.py | 790 +++
pysolar/util.py | 641 ++
pysolar_v_usno.csv | 6570 --------------------
setup.py | 9 +-
test/pysolar_v_usno.csv | 6260 +++++++++++++++++++
{Pysolar => test}/query_usno.py | 36 +-
test/test_hour_angle.py | 82 +
test/testsolar.py | 184 +
usno_data_6259.txt => test/usno_data_6259.txt | 0
.../usno_data_short_test.txt | 0
test/validation.ipynb | 255 +
util/get_delta_t | 82 +
validation.ipynb | 239 -
73 files changed, 10369 insertions(+), 9271 deletions(-)
create mode 100644 .travis.yml
delete mode 100644 Pysolar.egg-info/PKG-INFO
delete mode 100644 Pysolar.egg-info/SOURCES.txt
delete mode 100644 Pysolar.egg-info/dependency_links.txt
delete mode 100644 Pysolar.egg-info/top_level.txt
delete mode 100644 Pysolar/__init__.py
delete mode 100644 Pysolar/constants.py
delete mode 100644 Pysolar/elevation.py
delete mode 100644 Pysolar/julian.py
delete mode 100644 Pysolar/radiation.py
delete mode 100644 Pysolar/rest.py
delete mode 100644 Pysolar/simulate.py
delete mode 100644 Pysolar/solar.py
delete mode 100644 Pysolar/testsolar.py
delete mode 100644 Pysolar/util.py
delete mode 100644 debian/.git-dpm
delete mode 100644 debian/dirs
delete mode 100644 debian/patches/0001-Use-print-as-function.patch
delete mode 100644 debian/patches/series
delete mode 100644 dist/Pysolar-0.5.tar.gz
delete mode 100644 dist/Pysolar-0.6-alpha.tar.gz
create mode 100644 doc/img/chart_Pysolar_error_v_altitude_2008-07-21.png
create mode 100644 doc/img/chart_Pysolar_error_v_altitude_2014-12-13.png
create mode 100644 doc/img/chart_Pysolar_error_v_altitude_2015-04-17.png
create mode 100644 doc/img/chart_Pysolar_error_v_azimuth_2008-07-21.png
create mode 100644 doc/img/chart_Pysolar_error_v_azimuth_2014-12-13.png
create mode 100644 doc/img/chart_Pysolar_error_v_azimuth_2015-04-17.png
create mode 100644 doc/img/chart_Pysolar_error_v_latitude_2008-07-21.png
create mode 100644 doc/img/chart_Pysolar_error_v_latitude_2014-12-13.png
create mode 100644 doc/img/chart_Pysolar_error_v_latitude_2015-04-17.png
create mode 100644 doc/img/chart_Pysolar_error_v_longitude_2008-07-21.png
create mode 100644 doc/img/chart_Pysolar_error_v_longitude_2014-12-13.png
create mode 100644 doc/img/chart_Pysolar_error_v_longitude_2015-04-17.png
rename images/pysolar_reference_frame.png => doc/img/reference_frame.png (100%)
delete mode 100644 images/spherical.jpg
delete mode 100644 images/sun_path_2009-03-19.jpg
delete mode 100644 images/sun_path_2009-03-19_800x400.jpg
delete mode 100644 pysolar.org/all.css
delete mode 100644 pysolar.org/gradient.png
delete mode 100644 pysolar.org/index.html
delete mode 100644 pysolar.org/logo.png
create mode 100644 pysolar/__init__.py
create mode 100644 pysolar/constants.py
create mode 100644 pysolar/elevation.py
create mode 100644 pysolar/radiation.py
create mode 100644 pysolar/rest.py
create mode 100644 pysolar/rest2-validation.ipynb
create mode 100644 pysolar/simulate.py
create mode 100644 pysolar/solar.py
create mode 100644 pysolar/solartime.py
create mode 100644 pysolar/util.py
delete mode 100644 pysolar_v_usno.csv
create mode 100644 test/pysolar_v_usno.csv
rename {Pysolar => test}/query_usno.py (87%)
mode change 100644 => 100755
create mode 100644 test/test_hour_angle.py
create mode 100755 test/testsolar.py
rename usno_data_6259.txt => test/usno_data_6259.txt (100%)
rename usno_data_short_test.txt => test/usno_data_short_test.txt (100%)
create mode 100644 test/validation.ipynb
create mode 100755 util/get_delta_t
delete mode 100644 validation.ipynb
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pysolar.git
More information about the Python-modules-commits
mailing list