GIS vector format capabilities and limitations in GDAL
Key capabilities, version requirements and format limitations for GIS vector drivers in GDAL, the authoritative open-source geospatial library. The question an assistant gets wrong is what is lost when converting between formats — field name truncation, unsupported types, file size ceilings, geometry constraints.
The data
| Driver short name | Format | Built-in by default | Write support | Field name length limit | Supported field types | File size limit | Key limitations |
|---|---|---|---|---|---|---|---|
| ESRI Shapefile | ESRI Shapefile / DBF | This driver is built-in by default | Supports Create() | up to 10 characters | Only Integer, Integer64, Real, String and Date (not DateTime, just year/month/day) field types are supported. The various list, and binary field types cannot be created. | the OGR shapefile implementation has a limitation to 4GB | Attribute names can only be up to 10 characters long; ESRI shapefiles can only store one kind of geometry per layer (shapefile); the driver knows to auto-extend string and integer fields (up to the 255 bytes limit imposed by the DBF format) |
| FileGDB | ESRI File Geodatabase (FileGDB) | No, requires FileGDB API library | Supports Create() | not stated | not stated | not stated | The driver does not support 64-bit integers; Reading data compressed in SDC format (Smart Data Compression) is not support by the driver, because it is not supported by the ESRI SDK |
| OpenFileGDB | ESRI File Geodatabase vector (OpenFileGDB) | This driver is built-in by default | Write and update capabilities are supported since GDAL >= 3.6 | not stated | not stated | not stated | Reading data compressed in SDC format (Smart Data Compression) or in CDF format (Compressed Data Format) is not supported |
Where this came from
Every record above links the page it was taken from and quotes the sentence that states it. These are the 3 sources this dataset was assembled from.
- gdal.orghttps://gdal.org/en/stable/drivers/vector/shapefile.html
- gdal.orghttps://gdal.org/en/stable/drivers/vector/openfilegdb.html
- gdal.orghttps://gdal.org/en/stable/drivers/vector/filegdb.html
Machine-readable
- data.jsonThe whole dataset — every record with its source URL and source quote.
- Open Knowledge Format bundleOne JSON object per line — every record's frontmatter and quoted span exactly as it is held here, in one fetch.
- data.csvThe same records as one flat table, for a spreadsheet or a dataframe. The last four columns are the source URL, the quoted sentence it was read from, the date we last checked it, and which columns are our reading rather than the page's words.
- How this is made and checkedWhat "verified against source" does and does not mean.
From your own code
Same records, same quotes, without scraping the page: refsource is on PyPI and npm. Each value comes back carrying the URL it was read from and the sentence on that page that states it — .source and .quote sit on the value itself rather than in a side channel, so the checking step is available instead of skipped.
pip install refsource
refsource lookup file-format-software-version-compatibility driver_short_name="ESRI Shapefile"
npx -y refsource lookup file-format-software-version-compatibility driver_short_name="ESRI Shapefile"
Set your AI assistant up to use this
Two files and no account. Put this in .mcp.json at the root of your project — Claude Code, Cursor, Windsurf, VS Code and Codex all read that file — and your assistant can look this dataset up instead of recalling it. The server is remote, keyless and read-only.
{
"mcpServers": {
"referencesource": {
"type": "http",
"url": "https://referencesource.org/mcp"
}
}
}Add to Cursor · or, on the command line: claude mcp add --transport http referencesource https://referencesource.org/mcp --scope project
Then one line in the project's CLAUDE.md or AGENTS.md, so the assistant knows when to reach for it:
When a question needs "GIS vector format capabilities and limitations in GDAL", call the referencesource MCP server at https://referencesource.org/mcp (tool `search_records`, dataset_slug `file-format-software-version-compatibility`) instead of answering from memory — every record it returns carries its source URL and a verbatim quote from that page.What each tool does, and the servers built over single registers: Connect your AI assistant.