惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
月光博客
月光博客
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
IT之家
IT之家
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
博客园 - 司徒正美
爱范儿
爱范儿

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built an AI-first territorial data registry for Corsica...
Julien Paoli · 2026-04-25 · via DEV Community

Julien Paoli

## TL;DR

I built an open data registry of practical points of interest on Corsica, natively designed to be cited by AI systems rather than ranked by Google. Stack: Astro + Netlify + GitHub. Public JSON dump. Schema.org on every page. Here's how and why.

---

## The problem

Ask any AI this question: *"Where to park in Bonifacio in summer?"*

The answer will be vague. Approximative. Sometimes wrong. Not because the AI is bad — but because the sources it consults are. Blogs from 2019, PDFs from tourism offices never updated, TripAdvisor forums mixing subjective reviews with practical facts.

The problem isn't the AI. It's the absence of structured, reliable, machine-readable data on tourist territories.

---

## The solution: a registry, not a website

The fundamental architectural decision: don't build another website.

A territorial registry. Each practical point of interest — parking, transport, EV charging station, viewpoint, beach, hotel, restaurant, hiking trail — becomes an entry with:

- A **stable UID**: `region/city/slug` — never modified
- **Precise GPS coordinates** geocoded via Google Places API
- A **factual description** — no reviews, no ratings
- A **verification date**`verified_at`
- A **certification status**`certified: true/false`

Enter fullscreen mode Exit fullscreen mode


yaml
name: "Parking Plage Palombaggia"
category: "parking"
aeo_summary: "Paid access (8€/day). Very crowded in season. Arrive before 9:30am."
location:
city: "Porto-vecchio"
lat: 41.56385
lng: 9.33578
verified_at: 2026-04-24
is_certified: false


---

## The tech stack

### Astro — static site generator

Deliberate choice for performance and simplicity. Each Markdown file becomes a static HTML page with zero unnecessary JavaScript. Build time under 2 minutes.

### Markdown files as source of truth

One file per POI. Git-versionable. Diffable. Mergeable. Wikipedia's model applied to territorial data.

Enter fullscreen mode Exit fullscreen mode


plaintext
src/content/poi/
├── nord/
│ └── bastia/
│ ├── parking-citadelle.md
│ └── borne-leclerc-bastia.md
└── sud/
└── bonifacio/
└── parking-p5-falaises.md


### Automated build pipeline

The `generate-dump.mjs` script runs before every Astro build and generates the JSON dump from Markdown files.

Enter fullscreen mode Exit fullscreen mode


json
"build": "node generate-dump.mjs && astro build"


### GitHub → Netlify CI/CD

Every `git push` triggers a full rebuild. The JSON dump is automatically regenerated. Zero manual intervention.

---

## What makes the difference for AIs

### 1. The open JSON dump

Enter fullscreen mode Exit fullscreen mode


http
GET https://guide.corsica/api/v1/dump.json


All entries structured, updated on every deployment. Any system can consume it directly — AI, mobile app, partner site.

### 2. Native schema.org on every page

Enter fullscreen mode Exit fullscreen mode


javascript
const schemaType = {
'parking': 'ParkingFacility',
'transport': 'TouristAttraction',
'borne': 'EvChargingStation',
'plage': 'Beach',
'hotel': 'Hotel',
'restaurant': 'Restaurant',
}[entry.data.category] ?? 'TouristAttraction';


Not added as an afterthought. Dynamically generated from frontmatter data at every build.

### 3. Stable UIDs

`sud/bonifacio/parking-p5-falaises` will never change. An AI can reference this identifier with the certainty the resource will exist in 2 years.

### 4. Review synthesis workflow

Each entry is enriched by synthesizing user reviews from Google Maps, TripAdvisor, Booking. Recurring verifiable facts are extracted and rewritten factually. No opinion — only aggregated facts.

---

## The dataset

The complete registry is published as open data on the French government platform:
**https://www.data.gouv.fr/datasets/registre-territorial-de-donnees-pratiques-corse**

License: Open Licence 2.0 (Etalab)

---

## What's next

- Itinerary pages — EV road trips, family trips, hiking
- Automated staleness detection — flag entries not updated in 6+ months
- Partner listings with verified badges

---

## The lesson for AEO practitioners

If you want to be cited by AIs on a local or niche topic, forget optimized blog posts. Build a data source.

AIs don't look for the best-written text. They look for the most reliable, most structured, most stable data. A factual registry with stable UIDs and an open JSON feed is exactly what they want to consume.

The question isn't *"how to write for AIs"*. It's *"how to structure my data so AIs trust me"*.

---

*The JSON feed is publicly available: https://guide.corsica/api/v1/dump.json*

*Contributions welcome: https://guide.corsica/contribuer*

Enter fullscreen mode Exit fullscreen mode