ign_get_aoc_viticoles
Query French wine appellation zones (AOC, IGP, VSIG) by providing a geographic area to identify which appellations cover specific vineyards or regions using IGN's official data.
Instructions
Query wine appellation zones (AOC, IGP, VSIG) in France.
This tool accesses wine appellation data maintained by FranceAgriMer based on INAO data.
Args:
geom (string): GeoJSON geometry to intersect (required)
apikey (string, optional): IGN API key (required for this endpoint, get one at https://geoservices.ign.fr/)
source (string): Data source - 'prd' (production) or 'qlf' (qualification). Default: 'prd'
Returns: GeoJSON FeatureCollection with appellation zones including:
appellation: Appellation name
idapp: Appellation ID
type: AOC/IGP/VSIG
Examples:
"What wine appellations cover this vineyard?" -> geom={"type":"Point",...}, apikey="your-key"
"Find AOC zones in Bordeaux region" -> geom={"type":"Polygon",...}, apikey="your-key"
Note: This endpoint requires an IGN API key. Get one for free at https://geoservices.ign.fr/
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| geom | Yes | GeoJSON geometry (required) | |
| apikey | No | IGN API key (required - get one at https://geoservices.ign.fr/) | |
| source | No | Data source: 'prd' (production) or 'qlf' (qualification) | prd |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |