Free and open-source under the MIT License. Windows and Linux builds are ready today — grab the installer for your platform below.
Download ouRGeo-1.8.0.exe and run it — the installer walks you through setup and adds ouRGeo to your Start menu. Windows SmartScreen may show a "Windows protected your PC" notice for a new publisher; choose More info → Run anyway to continue.
No installation needed — mark it executable and run it:
chmod +x ouRGeo-1.8.0.AppImage ./ouRGeo-1.8.0.AppImage
Install with apt (it pulls in any system dependencies automatically):
sudo apt install ./ouRGeo-1.8.0.deb
# then launch it from your app menu, or:
ourgeo
ouRGeo keeps R at its core, so it needs R (4.0+) and a few spatial packages available on your machine. Install R from your distro or cran.r-project.org, then run:
# Core — required for the app to start install.packages(c("httpuv", "jsonlite", "later", "httr2")) # Spatial features (maps, geoprocessing, basemaps) install.packages(c("sf", "terra", "ggplot2", "tmap", "ggspatial", "maptiles", "tidyterra")) # Exact curved geometry (CIRCULARSTRING / COMPOUNDCURVE / CURVEPOLYGON) install.packages("sfarc") # Database (.Rgeo / DuckDB-backed datasets) install.packages(c("DBI", "duckdb", "dplyr"))