geospatial-processing

star 50

Provides foundational techniques for loading, projecting, and manipulating geospatial datasets using GeoPandas.

cxcscmu By cxcscmu schedule Updated 4/24/2026

name: geospatial-processing description: Provides foundational techniques for loading, projecting, and manipulating geospatial datasets using GeoPandas.

Geospatial Processing with GeoPandas

Loading Data

Use geopandas.read_file() to load GeoJSON, Shapefiles, or other supported formats.

import geopandas as gpd
gdf = gpd.read_file('data.json')

Projections

Crucial for accurate distance calculations. Use .to_crs() to reproject into an equal-area projection or a projection suitable for the region of interest.

# Projecting to EPSG:6933 (Cylindrical Equal Area) for global distance measurements
gdf = gdf.to_crs(epsg=6933)
Install via CLI
npx skills add https://github.com/cxcscmu/SkillLearnBench --skill geospatial-processing
Repository Details
star Stars 50
call_split Forks 3
navigation Branch main
article Path SKILL.md
More from Creator