diff --git a/CHANGELOG.md b/CHANGELOG.md index c65fb62da..329d47e73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 2.5.0 + +Did some changes to how files (EGM96, station position database) were loaded so that they could be +more easily installed with the docker. Currently they were being +downloaded from github when they were already available locally in the source code area. +They were not being installed as I thought from the Dockerfile. + +Makan Karegar changed the elevation angle limits in refl_zones + ## 2.4.0 Made quickplt faster with large datasets. I was using numpy append when i should have used a list and converted at the end. diff --git a/README.md b/README.md index 8710b6b32..43b7dc8ef 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # gnssrefl -**Version: 2.4.0** +**Version: 2.5.0** [![PyPI Version](https://img.shields.io/pypi/v/gnssrefl.svg)](https://pypi.python.org/pypi/gnssrefl) @@ -8,11 +8,6 @@ [![Documentation Status](https://readthedocs.org/projects/gnssrefl/badge/?version=latest)](https://gnssrefl.readthedocs.io/en/latest/?badge=latest) -2024 January 4: subdaily now allows multiple years of results. An orthometric height correction can also be applied. - -**For those of you trying to convert RINEX 3 files to RINEX 2.11, be careful. There are a lot of things going -on in that translation. It is better to let gnssrefl to do that conversion for you. rinex2snr allows RINEX 3 -files!** Documentation: @@ -22,15 +17,6 @@ Documentation: See documentation for [gnssir_input](https://gnssrefl.readthedocs.io/en/latest/api/gnssrefl.gnssir_input.html) for new refraction models. -August 2, 2023: Updated azimuth outputs for gnssir and quickLook so that the azimuth of the -rising or setting part of the arc is reported rather than the average azimuth, as was done in the older versions. - -July 7, 2023: The newarcs option had a bug in it: the refraction correction was not being applied. -While the refraction correction is not very important for some applications (snow, soil moisture), using it sometimes and not -using it other times IS NOT GOOD. You will see a bias in time series when you switched. This bug is fixed as of version 1.4.1 -If you were using the newarcs option in the last month, you need to rerun gnssir and any downstream codes (subdaily, daily_avg etc). This bug has -no impact on the data translation codes (rinex2snr, nmea2snr). - How do you find out which version are you running? Type pip list | grep gnssrefl If you want to sign up for the GNSS-IR email list, please contact Kristine Larson. diff --git a/setup.py b/setup.py index fad5e923d..3f57ca602 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ ] setup( name="gnssrefl", - version="2.4.0", + version="2.5.0", author="Kristine Larson", author_email="kristinem.larson@gmail.com", description="A GNSS reflectometry software package ",