geo-infer-art
Generative geospatial art and cartographic visualization. Use when creating artistic map visualizations, generative spatial art, interactive cartographic displays, animation sequences, or aesthetically-focused geographic rendering.
Best use case
geo-infer-art is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Generative geospatial art and cartographic visualization. Use when creating artistic map visualizations, generative spatial art, interactive cartographic displays, animation sequences, or aesthetically-focused geographic rendering.
Teams using geo-infer-art should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/GEO-INFER-ART/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How geo-infer-art Compares
| Feature / Agent | geo-infer-art | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Generative geospatial art and cartographic visualization. Use when creating artistic map visualizations, generative spatial art, interactive cartographic displays, animation sequences, or aesthetically-focused geographic rendering.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# GEO-INFER-ART
## Instructions
### Core Capabilities
- **Generative art**: Algorithmic spatial pattern generation, fractal landscapes
- **Cartographic design**: Aesthetic map styling, color palettes, typography
- **Interactive display**: mplcursors-based interactive map exploration
- **Animation**: Temporal spatial animation sequences, GIF/video export
- **Style transfer**: Apply artistic styles to geographic data visualizations
### Key Imports
```python
from geo_infer_art.core.geo_art import GeoArtGenerator
from geo_infer_art.core.cartography import CartographicDesigner
from geo_infer_art.core.animation import SpatialAnimator
from geo_infer_art.core.style import StyleTransfer
```
## Examples
```python
from geo_infer_art.core.geo_art import GeoArtGenerator
generator = GeoArtGenerator()
artwork = generator.create(
data=spatial_data,
style="watercolor",
interactive=True # Enables mplcursors hover
)
artwork.save("output.png", dpi=300)
```
## Guidelines
- Interactive features use real mplcursors + matplotlib (not `ax.plot([0],[0])`)
### Integrations
- Integrates with SPACE for H3-based spatial patterns
- Test: `uv run python -m pytest GEO-INFER-ART/tests/ -v`