summaryrefslogtreecommitdiff
path: root/gpsrinex.c
Commit message (Collapse)AuthorAgeFilesLines
* gpsrinex: Fix some compiler warnings.Fred Wright2019-03-201-3/+2
| | | | | | | | | | | | | | | | There were two issues here: 1) The initializer for the obs_cnt array needs two levels of brace, since it's an array of structs. 2) The obs_cnts array was incorrectly typed as having obs_codes enums as its *values*, when they're actually only used for its index. This resulted in a warning about the apparently pointless comparison against 99999. TESTED: Ran "build-all check" on OSX 10.9, 10.13, and 10.5 (PPC), as well as Ubuntu 14.04.
* gpsrinex: Fix build on OpenBSD.Fred Wright2019-03-181-1/+2
| | | | | | | | | | | On OpenBSD, apparently _XOPEN_SOURCE 500 isn't good enough to get isfinite(). Changing it to 600 fixes it. TESTED: (With subsequent fix included) Ran "build-all check" on Mac Pro 10.9, Mac Pro 10.14, MacBook Pro 10.9, PowerBook 10.5, VMs for OSX 10.5-10.13, Ubuntu 14.04, CentOS 7, Fedora 25, FreeBSD 10.3, OpenBSD 5.6, OpenBSD 5.6 32-bit, NetBSD 6.1.5, and Beaglebone (arm) Debian 7.
* POSIX_C_SOURCE: Not just a linux define. 200112L is a minimum.Gary E. Miller2018-12-261-2/+2
| | | | Don't force _POSIX_C_SOURCE 200112L, just make it a minimum.
* gpsrinex: Don't report missing SNR.Gary E. Miller2018-11-301-1/+3
|
* gpsrines: Another take at 32/64-bit compatibilityGary E. Miller2018-11-261-1/+2
|
* gpsrinex: Fix a signed/unsigned complaint on 32-bit.Gary E. Miller2018-11-261-1/+2
|
* gpsrinex: Fix a 32bit printf() mismatch.Gary E. Miller2018-11-261-1/+1
|
* gpsrinex: Update comments on GNSS measurement types.Gary E. Miller2018-11-211-6/+18
|
* gpsrinex: Ubuntu needs to be told time is past 2001.Gary E. Miller2018-11-211-0/+8
|
* LICENSE: Update licenses for consistency. No functional changes.Gary E. Miller2018-11-191-3/+4
|
* gpsrinex: Fix a warning about improperly formatted comment.Gary E. Miller2018-11-161-4/+4
|
* gpsrinex: 2nd try at getting modulo right.Gary E. Miller2018-11-121-1/+1
|
* gpsrinex: OPUS is picky about sample epoch.Gary E. Miller2018-11-121-1/+5
|
* gpsrinex: Improve measurement descriptions.Gary E. Miller2018-11-121-15/+44
|
* gpsrinex: Add C2C, L2C support. Update regressions to match.Gary E. Miller2018-11-121-23/+39
|
* gpsrinex: fix gnssid/svid sort.Gary E. Miller2018-11-111-13/+12
|
* gpsrinex: Off by one error.Gary E. Miller2018-11-111-1/+1
|
* gpsrinex: Add a man page.Gary E. Miller2018-11-091-1/+1
|
* gpsrinex: A new tool to create RINEX 3 obs files.Gary E. Miller2018-11-091-0/+862