FlatGeobuf என்பது FlatBuffers அடிப்படையிலான புவித்தரவுக்கான உயர்-செயல்திறன் பைனரி வடிவம். கிளவுட்-நேட்டிவ் பணிப்பாய்வுகள் மற்றும் HTTP வரம்பு கோரிக்கைகளுக்கு உகந்தமயமாக்கப்பட்டது. எந்தவொரு வரைபடத் துண்டிற்கும் உடனடி அணுகலுக்கான உள்ளமைக்கப்பட்ட இடஞ்சார் அட்டவணை.
முக்கிய அம்சங்கள்

FlatGeobuf வடிவம் பற்றி
FlatGeobuf is a binary vector data format based on FlatBuffers, which appeared in 2018 as "a shapefile for the cloud". Features are laid out in the file sequentially, with a spatial index written alongside, so the fragment you need is read directly, without parsing the whole file.
The main feature is working over HTTP range requests: you can put the file in object storage or on static hosting and read from the browser only the features that fall into the current screen. You don't have to stand up a geoserver for the sake of one layer.
All the selected layers are merged into a single .fgb, and every feature keeps a _layer attribute with the name of its source layer — it takes the export apart again into roads, buildings, water and greenery. OpenStreetMap attributes are preserved, coordinates are WGS84 (EPSG:4326), and the spatial index is written automatically.
Compared to GeoJSON the file is noticeably smaller and reads faster; compared to a shapefile there are no limits on field name length, encoding or size. There is one price to pay: you cannot look at such a file in a text editor.
FlatGeobuf கோப்புகளை எந்த நிரல் திறக்கிறது
OSM2CDR இலிருந்து ஏற்றுமதி செய்யப்பட்ட FlatGeobuf (FGB) (.fgb) கோப்புகளைப் பின்வரும் நிரல்களும் பயன்பாடுகளும் திறக்கலாம், திருத்தலாம் மற்றும் அவற்றுடன் வேலை செய்யலாம்:
Format specifications
- Open standard
- 3D coordinates supported
- Lossless (no quality loss)
- Stores feature attributes
- Output: 1 file
- FlatGeobuf .fgb. Binary streamable spatial format with built-in spatial index. 5-10x faster than Shapefile for large datasets.
FlatGeobuf வரைபடங்களை யார் பயன்படுத்துகிறார்கள்
FlatGeobuf ஐ எவ்வாறு ஏற்றுமதி செய்வது
ஏற்றுமதிக்குப் பிறகு எப்படித் திறப்பது
- QGIS 3.16 and newer (free) — drag the .fgb into the program window; the format is read by the standard GDAL, no plugins needed.
- Python — geopandas.read_file("map.fgb"); a filter on the _layer column splits the export back into the source layers.
- A web map — the flatgeobuf library for JavaScript reads the file by URL and loads only the visible area; it works with Leaflet, MapLibre and deck.gl.
- ogr2ogr — ogr2ogr -f GPKG out.gpkg map.fgb converts it into GeoPackage, GeoJSON or PostGIS.
- Putting it in the cloud — when publishing to S3 or static hosting, enable CORS and Range request support, and the client will fetch only the fragments it needs.
FlatGeobuf இல் பிரபலமான வரைபடங்கள்
FlatGeobuf (FGB) வரைபட ஏற்றுமதிகளைப் பெறுங்கள்
OpenStreetMap இலிருந்து தொழில்முறை FlatGeobuf வரைபடங்களைப் பதிவிறக்கம் செய்யுங்கள். உடனடி உருவாக்கம், எந்தப் பகுதியும்.
அடிக்கடி கேட்கப்படும் கேள்விகள்
தொடர்புடைய வடிவங்கள்
அடிக்கடி ஒன்றாக ஏற்றுமதி செய்யப்படுகிறது
Related Articles
FlatGeobuf (FGB) — Streaming Binary GIS Format: Internals, R-tree, HTTP Range Requests and OSM Export
Deep dive on FlatGeobuf: Bjorn Harrtell's 2018 binary format, packed Hilbert R-tree, HTTP range requests, OSM export wor
guideFlatGeobuf: A Streaming Format for Web GIS
FlatGeobuf supports HTTP range requests and spatial indexing. Comparison with GeoJSON, examples for Leaflet, MapLibre, a
formatGIS Data Formats in 2026: From Shapefile to Cloud-Native
GIS format overview: Shapefile, GeoPackage, FlatGeobuf, PMTiles, GeoParquet, COG — evolution and choice in 2026.