Support (In/Out) the FlatGeobuf Vector-Format as an high performance geodata format for vector data. QGIS and other Tools already support it.
FlatGeobuf | flatgeobuf
switchfromshapefile.org
Hi, FlatGeobuf is in the GDAL drivers we ship in Pro.
from osgeo import gdal, ogr vformats, rformats = [], [] for i in range(ogr.GetDriverCount()): name = ogr.GetDriver(i).GetName() if not name in vformats: vformats.append(name) vformats = sorted(vformats) for i in range(gdal.GetDriverCount()): name = gdal.GetDriver(i).LongName if not name in rformats: rformats.append(name) rformats = sorted(rformats) print('Vector Formats:\n') for format in vformats: print(format) print('\n') print('Raster Formats:\n') for format in rformats: print(format) print('\n')
Not super easy but not too hard either to write a converter, let us know if you need help.
Data Interoperability extension will support FlatGeoBuf at Pro 3.2.
It is not a problem of conversion. We wanna have native support to add *.fgb directly in arcgis Pro using the add data functionality.
I also would support this.
I would also support this and a much easier process to making items from .fgb in AGO.
What's the status sauce on this? We're just now stepping into the vector tile space and it is tedious and requires nightly automation for refreshes. I would love to just point our services at something and have it "just work".
I wrote flatgeobuf plugin datasource.https://github.com/oki-hunes/ArcGISFlatGeoBuf
Inicia sesión para publicar, seguir contenido y más. ¿Nuevo aquí? Regístrate gratis.