Skip to main content

Geoterminal is a command-line tool designed to simplify common GIS tasks that you may encounter in your daily work.

Project description

Geoterminal

PyPI version License: MIT Python 3.10+

Geoterminal is a powerful Python library and command-line tool designed to streamline geospatial data processing and H3 grid operations. It provides an intuitive interface for common GIS operations, supporting multiple file formats and offering both a Python API and CLI for maximum flexibility.

Features

  • Flexible Input/Output

    • Support for GeoJSON, Shapefile, CSV, ORC, and WKT formats
    • Direct WKT string input for quick operations
    • Automatic format detection and conversion
  • Geometry Operations

    • Buffer creation with customizable distance
    • Geometry clipping with file or WKT mask
    • CRS transformation and validation
  • H3 Integration

    • Convert geometries to H3 cells
    • Configurable resolution (0-15)
    • Optional geometry inclusion
    • Efficient spatial indexing
  • Developer-Friendly

    • Clean Python API
    • Comprehensive CLI
    • Extensive documentation
    • Type hints and error handling

Quick Start

Installation

# Install from PyPI
pip install geoterminal

For development, we use Poetry. First install Poetry if you haven't already:

curl -sSL https://install.python-poetry.org | python3 -

Or if you have Homebrew installed, you can do:

brew install poetry

Then clone and install the project:

# Clone the repository
git clone https://github.com/jeronimoluza/geoterminal.git
cd geoterminal

# Install dependencies and create virtual environment
poetry install

# Install with development dependencies
poetry install --with dev

# Install with documentation dependencies
poetry install --with docs

# Activate the virtual environment
poetry shell

Usage

Basic Usage

Geoterminal accepts both file paths and WKT strings as input. The input and output file formats are automatically detected based on their extensions.

# Convert between different formats
geoterminal input.shp output.geojson
geoterminal input.geojson output.csv
geoterminal input.csv output.orc

# Generate from WKT string
geoterminal "POLYGON((30 10, 40 40, 20 40, 10 20, 30 10))" output.geojson

# Work with CSV/ORC files using custom geometry columns
geoterminal input.csv output.geojson --geometry-column my_wkt_column
geoterminal input.orc output.shp --geometry-column my_wkt_column

Processing Options

You can combine multiple processing options with your conversion commands:

# Apply a buffer of 1000 meters and convert to H3 cells
geoterminal input.shp output.geojson --buffer-size 1000 --h3-res 6

# Convert WKT to H3 cells with geometries
geoterminal "POLYGON((30 10, 40 40, 20 40, 10 20, 30 10))" output.geojson --h3-res 6 --h3-geom

# Reproject data
geoterminal input.shp output.csv --input-crs 4326 --output-crs 3857

# Clip geometries using a mask file
geoterminal input.shp output.geojson --mask mask.geojson --mask-crs 4326

# Clip geometries using a mask WKT
geoterminal input.shp output.geojson --mask "POLYGON((30 10, 40 40, 20 40, 10 20, 30 10))"

File Inspection

View the contents of your files using the head and tail commands:

# View first 10 rows of a file
geoterminal input.geojson --head --rows 10

# View last 8 rows of a file
geoterminal input.geojson --tail --rows 8

Python API

from geoterminal.geometry_operations import GeometryProcessor
from geoterminal.h3_operations import H3Processor
from geoterminal.file_io import read_geometry_file

# Read data
gdf = read_geometry_file("input.geojson")

# Geometry operations
processor = GeometryProcessor(gdf)
buffered = processor.apply_buffer(distance=1000)

# H3 operations
h3_processor = H3Processor(gdf)
h3_cells = h3_processor.polyfill(resolution=6)

# Export
h3_cells.to_file("output.geojson")

Documentation

Comprehensive documentation is available:

Contributing

Contributions are welcome! Please read our Contributing Guide for details on our code of conduct and the process for submitting pull requests.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geoterminal-0.1.1.tar.gz (9.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

geoterminal-0.1.1-py3-none-any.whl (13.2 kB view details)

Uploaded Python 3

File details

Details for the file geoterminal-0.1.1.tar.gz.

File metadata

  • Download URL: geoterminal-0.1.1.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.13.2 Darwin/24.3.0

File hashes

Hashes for geoterminal-0.1.1.tar.gz
Algorithm Hash digest
SHA256 46746b2e272776613489b9bb7dfda7814286815e787e30df2c3e2b1400b46bbe
MD5 6b17aa010bc7141115ec16376db5d6cf
BLAKE2b-256 82942bd22a9099954c9b9e32d8bb546bd8c564f95162c4e375935fbadd56bbf7

See more details on using hashes here.

File details

Details for the file geoterminal-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: geoterminal-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.13.2 Darwin/24.3.0

File hashes

Hashes for geoterminal-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0d47540befa6bfdd05fed6314eb72b6bea7df87eed8391c093982406be3f27bb
MD5 90cc42ce4f28a7d966469acf9636564a
BLAKE2b-256 b9dfa164982a572087cb5d083133699e2abd74abcbd54ca1a4d01ade6e8f0896

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page