├── .gitignore ├── README.md ├── examples ├── P325_noeq_noseasons_lssq_unr_NA_ts.png ├── P325_noseasons_lssq_cwu_NA_ts.png ├── P503_noeq_noseasons_lssq_unr_NA_ts.png ├── configs │ ├── config.txt │ ├── cwu_config.txt │ ├── unr_config.txt │ └── usgs_config.txt ├── example_driver_eq_offsets.py ├── example_driver_find_within_radius.py ├── example_driver_process_and_write.py ├── example_driver_remove_offsets.py ├── example_driver_single_plot.py ├── example_driver_stack.py └── example_pngs │ ├── NBay_-122.0_38.0_40_TS_noeq.png │ ├── NBay_-122.0_38.0_40_map.png │ ├── P511_noseasons_lssq_cwu_NA_ts.jpg │ └── P595_view_ts.png ├── gnss_timeseries_viewers ├── getting_gnss_data │ ├── get_earthscope_data.sh │ ├── get_lsdm_data.py │ ├── get_unr_time_series.py │ ├── get_usgs_data.py │ ├── gnss_centers_metadata.txt │ └── update_data_holdings.sh └── gps_tools │ ├── __init__.py │ ├── advanced_applications │ ├── Mend_map_accel.py │ ├── common_mode.py │ ├── euler_pole_rotation.py │ ├── homemade_velo_map.py │ ├── movie_tool.py │ ├── rainbow_vector.py │ ├── reference_map_gps.gmt │ ├── remove_ets_events.py │ └── velocity_profiles.py │ ├── downsample.py │ ├── file_io │ ├── __init__.py │ ├── config_io.py │ ├── gps_input_pipeline.py │ ├── io_creepmeter.py │ ├── io_hector.py │ ├── io_magnet_unr.py │ ├── io_nota.py │ ├── io_other.py │ └── io_usgs.py │ ├── gps_seasonal_removals.py │ ├── gps_stack.py │ ├── gps_ts_functions.py │ ├── grace_ts_functions.py │ ├── helmert.py │ ├── load_gnss.py │ ├── lssq_model_errors.py │ ├── math_functions.py │ ├── notch_filter.py │ ├── offsets.py │ ├── outputs_gps_stacks.py │ ├── pygmt_plots.py │ ├── remove_postseismic.py │ ├── sidereal_filter.py │ ├── single_station_tsplot.py │ ├── utilities.py │ └── vel_functions.py ├── pyproject.toml ├── requirements.yml └── test ├── __init__.py └── test_read_files.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/README.md -------------------------------------------------------------------------------- /examples/P325_noeq_noseasons_lssq_unr_NA_ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/P325_noeq_noseasons_lssq_unr_NA_ts.png -------------------------------------------------------------------------------- /examples/P325_noseasons_lssq_cwu_NA_ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/P325_noseasons_lssq_cwu_NA_ts.png -------------------------------------------------------------------------------- /examples/P503_noeq_noseasons_lssq_unr_NA_ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/P503_noeq_noseasons_lssq_unr_NA_ts.png -------------------------------------------------------------------------------- /examples/configs/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/configs/config.txt -------------------------------------------------------------------------------- /examples/configs/cwu_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/configs/cwu_config.txt -------------------------------------------------------------------------------- /examples/configs/unr_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/configs/unr_config.txt -------------------------------------------------------------------------------- /examples/configs/usgs_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/configs/usgs_config.txt -------------------------------------------------------------------------------- /examples/example_driver_eq_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_driver_eq_offsets.py -------------------------------------------------------------------------------- /examples/example_driver_find_within_radius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_driver_find_within_radius.py -------------------------------------------------------------------------------- /examples/example_driver_process_and_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_driver_process_and_write.py -------------------------------------------------------------------------------- /examples/example_driver_remove_offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_driver_remove_offsets.py -------------------------------------------------------------------------------- /examples/example_driver_single_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_driver_single_plot.py -------------------------------------------------------------------------------- /examples/example_driver_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_driver_stack.py -------------------------------------------------------------------------------- /examples/example_pngs/NBay_-122.0_38.0_40_TS_noeq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_pngs/NBay_-122.0_38.0_40_TS_noeq.png -------------------------------------------------------------------------------- /examples/example_pngs/NBay_-122.0_38.0_40_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_pngs/NBay_-122.0_38.0_40_map.png -------------------------------------------------------------------------------- /examples/example_pngs/P511_noseasons_lssq_cwu_NA_ts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_pngs/P511_noseasons_lssq_cwu_NA_ts.jpg -------------------------------------------------------------------------------- /examples/example_pngs/P595_view_ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/examples/example_pngs/P595_view_ts.png -------------------------------------------------------------------------------- /gnss_timeseries_viewers/getting_gnss_data/get_earthscope_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/getting_gnss_data/get_earthscope_data.sh -------------------------------------------------------------------------------- /gnss_timeseries_viewers/getting_gnss_data/get_lsdm_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/getting_gnss_data/get_lsdm_data.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/getting_gnss_data/get_unr_time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/getting_gnss_data/get_unr_time_series.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/getting_gnss_data/get_usgs_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/getting_gnss_data/get_usgs_data.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/getting_gnss_data/gnss_centers_metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/getting_gnss_data/gnss_centers_metadata.txt -------------------------------------------------------------------------------- /gnss_timeseries_viewers/getting_gnss_data/update_data_holdings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/getting_gnss_data/update_data_holdings.sh -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/advanced_applications/Mend_map_accel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/advanced_applications/Mend_map_accel.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/advanced_applications/common_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/advanced_applications/common_mode.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/advanced_applications/euler_pole_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/advanced_applications/euler_pole_rotation.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/advanced_applications/homemade_velo_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/advanced_applications/homemade_velo_map.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/advanced_applications/movie_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/advanced_applications/movie_tool.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/advanced_applications/rainbow_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/advanced_applications/rainbow_vector.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/advanced_applications/reference_map_gps.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/advanced_applications/reference_map_gps.gmt -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/advanced_applications/remove_ets_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/advanced_applications/remove_ets_events.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/advanced_applications/velocity_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/advanced_applications/velocity_profiles.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/downsample.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/file_io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/file_io/config_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/file_io/config_io.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/file_io/gps_input_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/file_io/gps_input_pipeline.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/file_io/io_creepmeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/file_io/io_creepmeter.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/file_io/io_hector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/file_io/io_hector.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/file_io/io_magnet_unr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/file_io/io_magnet_unr.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/file_io/io_nota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/file_io/io_nota.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/file_io/io_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/file_io/io_other.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/file_io/io_usgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/file_io/io_usgs.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/gps_seasonal_removals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/gps_seasonal_removals.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/gps_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/gps_stack.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/gps_ts_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/gps_ts_functions.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/grace_ts_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/grace_ts_functions.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/helmert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/helmert.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/load_gnss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/load_gnss.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/lssq_model_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/lssq_model_errors.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/math_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/math_functions.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/notch_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/notch_filter.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/offsets.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/outputs_gps_stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/outputs_gps_stacks.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/pygmt_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/pygmt_plots.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/remove_postseismic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/remove_postseismic.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/sidereal_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/sidereal_filter.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/single_station_tsplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/single_station_tsplot.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/utilities.py -------------------------------------------------------------------------------- /gnss_timeseries_viewers/gps_tools/vel_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/gnss_timeseries_viewers/gps_tools/vel_functions.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/requirements.yml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_read_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmaterna/gnss_timeseries_viewers/HEAD/test/test_read_files.py --------------------------------------------------------------------------------