How to parse a GDB (Geodatabase) file in Ocaml? #2
Replies: 1 comment 1 reply
-
|
Hi @abhsrivastava, Thanks for opening this discussion! This sounds really cool. I did a little bit of looking around and it looks like parsing Geodatabase files is going to be tricky because they're proprietary. However, as you point out, people have reverse-engineered it. The format looks very "packet-like" so I think you can manage everything with either I do wonder if you can get the same trails data in a different, open format? Something like GeoJSON, Shapefile, GML or KML? (Or maybe even export it into that format) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I am thinking of developing a hobby project where I downloaded all the trails in Washington state in the form of a GDB file (Geodatabase) and I want to query the weather API on those trails to see which trails can be hiked when.
But for this I need to parse a Geodatabase file. I can see the specification is here https://github.com/rouault/dump_gdbtable/wiki/FGDB-Spec but is there an easy way to parse this in ocaml?
Beta Was this translation helpful? Give feedback.
All reactions