Agent skill
python-gis-ecosystem-11-install
Sub-skill of python-gis-ecosystem: 1.1 Install (+2).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/engineering/gis/python-gis-ecosystem/11-install
SKILL.md
1.1 Install (+2)
1.1 Install
# Conda (recommended — resolves GDAL native deps)
conda install -c conda-forge geopandas rasterio fiona pyproj \
shapely folium xarray rioxarray cartopy
# pip (ensure GDAL system libs installed first)
pip install geopandas rasterio fiona pyproj shapely folium \
xarray rioxarray cartopy
1.2 Format Reference
| Format | Extension | Read | Write | Library |
|---|---|---|---|---|
| GeoPackage | .gpkg | Yes | Yes | GeoPandas/Fiona |
| Shapefile | .shp | Yes | Yes | GeoPandas/Fiona |
| GeoJSON | .geojson | Yes | Yes | GeoPandas/Fiona |
| GeoTIFF | .tif | Yes | Yes | Rasterio |
| NetCDF | .nc | Yes | Yes | xarray/rioxarray |
| KML | .kml | Yes | Yes | Fiona (with driver) |
| CSV + lat/lon | .csv | Yes | Yes | GeoPandas (from_csv) |
| GeoParquet | .parquet | Yes | Yes | GeoPandas |
1.3 Load Well Locations from CSV
import geopandas as gpd
import pandas as pd
from shapely.geometry import Point
df = pd.read_csv("wells.csv") # columns: well_name, latitude, longitude
gdf = gpd.GeoDataFrame(
df,
geometry=gpd.points_from_xy(df["longitude"], df["latitude"]),
crs="EPSG:4326" # WGS84 geographic
)
print(gdf.head())
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?