scientific-skills/geomaster/README.md
GeoMaster is a comprehensive geospatial science skill covering:
See SKILL.md for detailed installation instructions.
conda install -c conda-forge gdal rasterio fiona shapely pyproj geopandas
pip install rsgislib torchgeo earthengine-api
import rasterio
import numpy as np
with rasterio.open('sentinel2.tif') as src:
red = src.read(4)
nir = src.read(8)
ndvi = (nir - red) / (nir + red + 1e-8)
import geopandas as gpd
zones = gpd.read_file('zones.geojson')
points = gpd.read_file('points.geojson')
joined = gpd.sjoin(points, zones, predicate='within')
MIT License
K-Dense Inc.
This skill is part of the K-Dense-AI/scientific-agent-skills repository. For contributions, see the main repository guidelines.