Agent skill · Data & Analytics

geopandas

Python library for working with geospatial vector data including shapefiles, GeoJSON, and GeoPackage files. Use when working with geographic data for spatial analysis, geometric operations, coordinate transformations, spatial joins, overlay operations, choropleth mapping, or any task involving reading/writing/analyzing vector geographic data. Supports PostGIS databases, interactive maps, and integration with matplotlib/folium/cartopy. Use for tasks like buffer analysis, spatial joins between datasets, dissolving boundaries, clipping data, calculating areas/distances, reprojecting coordinate sy

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-code
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill geopandas --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 7
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/geopandas/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# GeoPandas GeoPandas extends pandas to enable spatial operations on geometric types. It combines the capabilities of pandas and shapely for geospatial data analysis. ## Installation ```bash uv pip install geopandas ``` ### Optional Dependencies ```bash # For interactive maps uv pip install folium # For classification schemes in mapping uv pip install mapclassify # For faster I/O operations (2-4x speedup) uv pip install pyarrow # For PostGIS database support uv pip install psycopg2 uv pip install geoalchemy2 # For basemaps uv pip install contextily # For cartographic projections uv pip install cartopy ``` ## Quick Start ```python import geopandas as gpd # Read spatial data gdf = gpd.read_file("data.geojson") # Basic exploration print(gdf.head()) print(gdf.crs) print(gdf.geometry.geom_type) # Simple plot gdf.plot() # Reproject to different CRS gdf_projected = gdf.to_crs("EPSG:3857") # Calculate area (use projected CRS for accuracy) gdf_projected['area'] = gdf_projected.geometry.area # Save to file gdf.to_file("output.gpkg") ``` ## Core Concepts ### Data Structures - **GeoSeries**: Vector of geometries with spatial operations - **GeoDataFrame**: Tabular data structure with geometry c

What's inside
Steps it walks through
  1. Installation
  2. Optional Dependencies
  3. Quick Start
  4. Core Concepts
  5. Data Structures
  6. Reading and Writing Data
  7. Coordinate Reference Systems
  8. Common Operations
  9. Geometric Operations
  10. Spatial Analysis
  11. Visualization
  12. Detailed Documentation
  13. Common Workflows
  14. Load, Transform, Analyze, Export
Ships with 6 files
  • references/crs-management.md
  • references/data-io.md
  • references/data-structures.md
  • references/geometric-operations.md
  • references/spatial-analysis.md
  • references/visualization.md
Commands it runs
uv pip install geopandas
For interactive maps
uv pip install folium
For classification schemes in mapping
uv pip install mapclassify
For faster I/O operations (2-4x speedup)
uv pip install pyarrow
For PostGIS database support
uv pip install psycopg2
uv pip install geoalchemy2
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the geopandas skill do?

Python library for working with geospatial vector data including shapefiles, GeoJSON, and GeoPackage files. Use when working with geographic data for spatial analysis, geometric operations, coordinate transformations, spatial joins, overlay operations, choropleth mapping, or any task involving reading/writing/analyzing vector geographic data. Supports PostGIS databases, interactive maps, and integration with matplotlib/folium/cartopy. Use for tasks like buffer analysis, spatial joins between datasets, dissolving boundaries, clipping data, calculating areas/distances, reprojecting coordinate sy

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill geopandas --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going