[GIS] Convert GeoJSON directly to geodatabase

convertfile-geodatabasegeojson

I'm looking for a way to convert a GeoJSON File (from overpass-turbo.eu) directly into a Feature Class in an Esri geodatabase.

Normally I'm doing this by loading the GeoJSON into QGIS, Export it to a shapefile and then import it into ArcGIS Pro. There I can just export the data into my geodatabase. The problem is the limited space within the Attribute Table of shapefiles, which leads to a loss of data which I need in my current project.

Unfortunately I don't have access to the ArcGIS Data Interoperability Tool, so I have to find an open source way.

Best Answer

It is possible to use ogr2ogr:

ogr2ogr -f "FileGDB" output.gdb input.geojson
Related Question