├── .gitignore ├── LICENSE ├── at013620.18.snr88 ├── at013620.18o.test ├── dpolint.f ├── gbm20335.sp3 ├── get_azel_sp3.f ├── gnssSNR.f ├── gwes0010.19o ├── gwes0010.snr ├── igs20342.sp3 ├── igs22121.sp3 ├── knut.txt ├── librariesSNRv3.f ├── local.inc ├── makefile ├── mchn1710.22o ├── mchn1710.snr ├── moving_sites.f ├── pick_9points.f ├── read_block_gnss.f ├── read_header_20obs.f ├── read_header_25obs.f ├── read_sp3_200sats.f ├── readme.txt ├── sc021500.22o ├── sc021500.snr ├── testit ├── unixlib.f ├── vlis1710.22o └── write_gnss_to_file.f /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.e 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/LICENSE -------------------------------------------------------------------------------- /at013620.18.snr88: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/at013620.18.snr88 -------------------------------------------------------------------------------- /at013620.18o.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/at013620.18o.test -------------------------------------------------------------------------------- /dpolint.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/dpolint.f -------------------------------------------------------------------------------- /gbm20335.sp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/gbm20335.sp3 -------------------------------------------------------------------------------- /get_azel_sp3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/get_azel_sp3.f -------------------------------------------------------------------------------- /gnssSNR.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/gnssSNR.f -------------------------------------------------------------------------------- /gwes0010.19o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/gwes0010.19o -------------------------------------------------------------------------------- /gwes0010.snr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/gwes0010.snr -------------------------------------------------------------------------------- /igs20342.sp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/igs20342.sp3 -------------------------------------------------------------------------------- /igs22121.sp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/igs22121.sp3 -------------------------------------------------------------------------------- /knut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/knut.txt -------------------------------------------------------------------------------- /librariesSNRv3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/librariesSNRv3.f -------------------------------------------------------------------------------- /local.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/local.inc -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/makefile -------------------------------------------------------------------------------- /mchn1710.22o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/mchn1710.22o -------------------------------------------------------------------------------- /mchn1710.snr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/mchn1710.snr -------------------------------------------------------------------------------- /moving_sites.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/moving_sites.f -------------------------------------------------------------------------------- /pick_9points.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/pick_9points.f -------------------------------------------------------------------------------- /read_block_gnss.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/read_block_gnss.f -------------------------------------------------------------------------------- /read_header_20obs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/read_header_20obs.f -------------------------------------------------------------------------------- /read_header_25obs.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/read_header_25obs.f -------------------------------------------------------------------------------- /read_sp3_200sats.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/read_sp3_200sats.f -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/readme.txt -------------------------------------------------------------------------------- /sc021500.22o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/sc021500.22o -------------------------------------------------------------------------------- /sc021500.snr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/sc021500.snr -------------------------------------------------------------------------------- /testit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/testit -------------------------------------------------------------------------------- /unixlib.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/unixlib.f -------------------------------------------------------------------------------- /vlis1710.22o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/vlis1710.22o -------------------------------------------------------------------------------- /write_gnss_to_file.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristinemlarson/gnssSNR/HEAD/write_gnss_to_file.f --------------------------------------------------------------------------------