Skip to content

Commit 4faafe4

Browse files
committed
v2.7.0
1 parent 03849c7 commit 4faafe4

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
See also [CHANGES.md](rnxcmp/docs/CHANGES.md) of the original RNXCMP software package.
44

5+
## [2.7.0] - 2022-01-27
6+
7+
- Updated RNXCMP to version 4.1.0:
8+
- RINEX 4.xx files are now accepted as inputs.
9+
- Fixed bugs:
10+
+ Error in case the number of special records exceeds 99
11+
in RINEX ver. 2 files.
12+
+ Error in case the clock offset is padded with spaces in RINEX ver. 3 or 4 files.
13+
+ Error in case a bad GNSS type is detected even if option -s
14+
is specified with RNX2CRX.
15+
516
## [2.6.0] - 2022-01-21
617

718
- Added `strict` parameter to decompression methods, which defaults to False.
@@ -52,6 +63,7 @@ First release.
5263
- Provide Hatanaka decompression / compression support via `crx2rnx` and `rnx2crx` functions.
5364
- Install `crx2rnx` and `rnx2crx` as command line executables.
5465

66+
[2.7.0]: https://github.com/valgur/hatanaka/compare/v2.6.0...v2.7.0
5567
[2.6.0]: https://github.com/valgur/hatanaka/compare/v2.5.0...v2.6.0
5668
[2.5.0]: https://github.com/valgur/hatanaka/compare/v2.4.0...v2.5.0
5769
[2.4.0]: https://github.com/valgur/hatanaka/compare/v2.3.0...v2.4.0

LICENSE

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
RNXCMP SOFTWARE
2-
Copyright (c) 2007, 2009, 2012, 2014, 2016, 2019 Geospatial
3-
Information Authority of Japan All rights reserved.
2+
Copyright (c) 2007 Geospatial Information Authority of Japan All rights reserved.
43

54
This is the license document of the RNXCMP software (Technical
65
Reports of the Geospatial Information Authority of Japan H1-No.6 "The

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Effortless compression / decompression of RINEX files in Python and on the command line.
44

5-
Supports all compression formats allowed by the RINEX 2 and 3 standards:
5+
Supports all compression formats allowed by the RINEX 2, 3 and 4 standards:
66

77
* Hatanaka compression for Observation Data Files,
88
* LZW (.Z), gzip (.gz), bzip2 (.bz2) and .zip.

hatanaka/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .general_compression import *
22
from .hatanaka import *
33

4-
__version__ = '2.6.0'
4+
__version__ = '2.7.0'
55
rnxcmp_version = '4.1.0'

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = hatanaka
3-
version = 2.6.0
3+
version = 2.7.0
44
author = Martin Valgur
55
author_email = [email protected]
66
url = https://github.com/valgur/hatanaka

0 commit comments

Comments
 (0)