Skip to content

Commit

Permalink
v 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kristinemlarson committed Jan 17, 2024
1 parent 1f67139 commit f7f1d3e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
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.0.1

trying to fix readthedocs formatting

## 2.0.0
January 4, 2024

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gnssrefl

**github version: 2.0.0** [![PyPI Version](https://img.shields.io/pypi/v/gnssrefl.svg)](https://pypi.python.org/pypi/gnssrefl) [![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.5601495.svg)](http://dx.doi.org/10.5281/zenodo.5601495) [![Documentation Status](https://readthedocs.org/projects/gnssrefl/badge/?version=latest)](https://gnssrefl.readthedocs.io/en/latest/?badge=latest)
**github version: 2.0.1** [![PyPI Version](https://img.shields.io/pypi/v/gnssrefl.svg)](https://pypi.python.org/pypi/gnssrefl) [![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.5601495.svg)](http://dx.doi.org/10.5281/zenodo.5601495) [![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 data. An orthometric height correction can also be applied.

Expand Down
11 changes: 3 additions & 8 deletions gnssrefl/gnssir_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,9 @@ def make_gnssir_input(station: str, lat: float=0, lon: float=0, height: float=0,
Latitude, longitude, and height are assumed to be stored in the UNR database. If they are not, you should
set them manually.
Example of a json file that has both the old and new ways. The arrays within the json file are called azval and azval2.
https://morefunwithgps.com/public_html/sc02.json
Refraction
----------
Originally we had refraction as a boolean, i.e. on or off. This was stored in the gnssir analysis json. The code however,
uses an integer 1 (for a simple non-time-varying Bennett correction) and integer 0 for no correction.
Originally we had refraction as a boolean, i.e. on or off. This was stored in the gnssir
analysis json. The code however, uses an integer 1 (for a simple non-time-varying
Bennett correction) and integer 0 for no correction.
From version 1.8.4 we begin to implement more refraction models. 1 (and Bennett) will continue to be
the default. The "1" is written to the LSP results file so that people can keep track easily of whether
they are inadvertently mixing files with different strategies. And that is why it is an integer, because
Expand Down Expand Up @@ -108,7 +104,6 @@ def make_gnssir_input(station: str, lat: float=0, lon: float=0, height: float=0,
gnssir_input p041 -h1 0.5 -h2 10 -e1 5 -e2 25
uses UNR database, only GPS data between elevation angles of 5-25 degrees and reflector heights of 0.5-10 meters
gnssir_input p041 -ediff 1
uses UNR database, only GPS data, default station coordinates, enforces elevation angles to be
within 1 degrees of default elevation angle limits (5-25)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
]
setup(
name="gnssrefl",
version="2.0.0",
version="2.0.1",
author="Kristine Larson",
author_email="[email protected]",
description="A GNSS reflectometry software package ",
Expand Down

0 comments on commit f7f1d3e

Please sign in to comment.