A comprehensive Python framework for automated GNSS data processing, analysis, and management. GeoDE integrates multiple geodetic software packages (GAMIT/GLOBK, GPSPACE, and soon M-PAGES) with PostgreSQL database management and web-based visualization tools.
GeoDE (Geodesy Database Engine) provides a complete solution for processing and managing large-scale GNSS datasets for geodetic applications. Originally developed by Demian Gomez and contributors, GeoDE handles the entire workflow from raw data ingestion to time series analysis, offering parallelized processing capabilities, robust metadata tracking, and comprehensive quality control tools.
- π Parallel Processing - Distribute geodetic processing jobs across multiple compute nodes for maximum throughput
- ποΈ PostgreSQL Integration - Centralized storage and management of RINEX data, station metadata, and processing results
- π GeoDE Desktop Web Interface - Interactive map-based visualization for monitoring station networks and managing metadata
- π Time Series Analysis - Built-in tools for plotting and analyzing position time series with ETM (Extended Trajectory Model) fitting
- π Quality Control - Automated detection of metadata inconsistencies and data gaps
- π‘ Multi-Format Support - Handle RINEX 2/3, Hatanaka compression, and various coordinate systems
- π§ Multi-Software Integration - Seamlessly process data using GAMIT/GLOBK, GPSPACE, and M-PAGES (NGS)
GeoDE consists of two main components:
- Command Line Interface (CLI) - Core processing engine for parallel GNSS analysis
- Web Interface - Django-based frontend for station monitoring and metadata management
Ensure the following dependencies are installed and available in your PATH:
- GAMIT/GLOBK - http://www-gpsg.mit.edu/gg/
- GFZRNX - https://gnss.gfz-potsdam.de/services/gfzrnx
- rnx2crx/crx2rnx - https://terras.gsi.go.jp/ja/crx2rnx.html
- GPSPACE - https://github.com/demiangomez/GPSPACE
- PostgreSQL (server)
- Python 3.10
- Deploy the database skeleton using
database/gnss_data_dump.sql - Configure required tables using the provided CSV files:
keys.csv- System configuration keysrinex_tank_struct.csv- RINEX file storage structurereceivers.csv&antennas.csv- IGS equipment codesgamit_htc.csv- Antenna height/offset calibrations
pip install geode-gnssCreate a working directory and configure gnss_data.cfg with your database connection, archive paths, and compute nodes. See Installation.md for detailed configuration options.
ArchiveService.py- Service for managing archive operations and locksDownloadSources.py- Automated RINEX data retrieval from external sourcesScanArchive.py- Archive scanning, station info insertion, and PPP processing
PlotETM.py- Time series plotting with trajectory model fittingAlterETM.py- Modify ETM parameters (polynomial terms, jumps, periodic signals)
All CLI tools support flexible station selection:
# Single station
PlotETM.py igs.pwro
# Multiple stations
PlotETM.py igs.pwro igs.onsa
# All stations in a network
PlotETM.py igs.all
# Country code (ISO 3166)
PlotETM.py ARG
# Wildcards (regex style)
PlotETM.py ars.at1[3-5] # at13, at14, at15
PlotETM.py ars.at% # all stations starting with 'at'
# Exclusions
PlotETM.py igs.all *igs.pwro # all IGS stations except pwro
# Selection by type (requires GeoDE Studio tables api_stationtype and api_stationmeta)
PlotETM.py ARG:CONTINUOUS # Continuous stations in Argentina
PlotETM.py CHL:CAMPAIGN # Campaign stations in Chile
PlotETM.py USA:CORS # CORS stations in USA
PlotETM.py all:CONTINUOUS # All CONTINUOUS stations
# Geographic region selection
PlotETM.py ARG:LAT[-35,-40] # All stations in ARG within LAT range
PlotETM.py ARG:BBOX[-30,-40,-70,-60] # Bounding box in Argentina
PlotETM.py ARG:PLATE[SC] # Argentina stations in the Scotia plate
PlotETM.py ARG:RADIUS[-35.5,-65.2,500] # 500 km radius around point
# Combined filters
PlotETM.py ARG:CAMPAIGN:RADIUS[-35.5,-65.2,500] # 500 km radius around point, only campaign sitesThe web interface provides:
- πΊοΈ Interactive Map - OpenStreetMap-based visualization with station status indicators
- π Station Details - Equipment history, coordinates, photos, and site visit logs
- π RINEX Management - File browser with metadata validation and gap detection
- βοΈ Metadata Editor - Web-based forms for updating station information
- π Search & Filters - Query stations by code, network, country, or date range
- π’ Green markers - Stations with complete, validated metadata
- π΄ Red markers - Stations requiring attention (missing metadata or errors)
β οΈ Warning icons - RINEX files with metadata inconsistencies
See WebInterface.md for detailed interface documentation.
# Download and scan for new files
DownloadSources.py igs.all -win 7
# Run PPP solutions
ScanArchive.py igs.all -ppp
# Plot time series
PlotETM.py igs.pwro -guiAlterETM.py igs.pwro -fun j + 1 2024/02/15 30,60- Installation Guide - Detailed setup instructions
- Web Interface Guide - Complete UI documentation
- CLI Reference - Command-line tool usage
If you use GeoDE in your research, please cite:
Gomez, D.D., et al. (2024). GeoDE: Geodesy Database Engine for automated GNSS processing and analysis. GitHub repository. https://github.com/demiangomez/geode
BSD 3-Clause License
For questions, issues, or contributions, please open an issue on the GitHub repository.
