Skip to content

Commit

Permalink
Merge pull request #4 from emit-sds/develop
Browse files Browse the repository at this point in the history
Merge develop into main for v1.3.4
  • Loading branch information
winstonolson authored Sep 1, 2023
2 parents 845155e + cdc256f commit 313d737
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v1.3.4](https://github.com/emit-sds/emit-sds-l0/compare/v1.3.3...v1.3.4)

> 1 August 2023
- Check for gps time > 0 when getting start/stop times [`5ab2052`](https://github.com/emit-sds/emit-sds-l0/commit/5ab2052c17498264ab25570395ff5fcc432c6e11)

#### [v1.3.3](https://github.com/emit-sds/emit-sds-l0/compare/v1.3.2...v1.3.3)

> 17 November 2022
- Merge develop into main for v1.3.3 [`#3`](https://github.com/emit-sds/emit-sds-l0/pull/3)
- Update change log [`759c2a7`](https://github.com/emit-sds/emit-sds-l0/commit/759c2a7bd854383ad8fef9cde2e4ded849fdea7c)
- Update version to 1.3.3 [`20a0966`](https://github.com/emit-sds/emit-sds-l0/commit/20a09664022ffd2bc8f13d8180a5ad2ab6177423)
- Work with .sto files with additional rows [`0b02ff4`](https://github.com/emit-sds/emit-sds-l0/commit/0b02ff437d680581715780f7fb684a47d86734b0)

Expand Down
2 changes: 1 addition & 1 deletion get_bad_start_stop_times.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def main():
if index is None:
raise RuntimeError("Unable to find coarse time column (LADP06MD2378W) in data")

gps_times = [float(row[index]) for row in rows if len(row) > index]
gps_times = [float(row[index]) for row in rows if len(row) > index and float(row[index]) > 0]

start_time = get_utc_time_from_gps(min(gps_times))
stop_time = get_utc_time_from_gps(max(gps_times))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="emit_sds_l0",
version="1.3.3",
version="1.3.4",
author="Winston Olson-Duvall",
author_email="[email protected]",
description="""
Expand Down

0 comments on commit 313d737

Please sign in to comment.