https://github.com/ocaml-gdal/ocaml-gdal
OCaml bindings to the GDAL and OGR Libraries
https://github.com/ocaml-gdal/ocaml-gdal
gdal gis ocaml ocaml-bindings
Last synced: 4 months ago
JSON representation
OCaml bindings to the GDAL and OGR Libraries
- Host: GitHub
- URL: https://github.com/ocaml-gdal/ocaml-gdal
- Owner: ocaml-gdal
- License: mit
- Created: 2014-02-10T02:27:00.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2021-05-19T05:04:04.000Z (over 4 years ago)
- Last Synced: 2025-05-06T19:36:20.858Z (5 months ago)
- Topics: gdal, gis, ocaml, ocaml-bindings
- Language: OCaml
- Homepage:
- Size: 272 KB
- Stars: 11
- Watchers: 4
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README
OCaml GDAL and OGR bindings
---------------------------This library provides access to the GDAL library (http://www.gdal.org/). It
provides both direct, low-level access to GDAL and OGR library functions as
well as a higher level, more OCaml-like interface.The API is [viewable here](http://hcarty.github.io/ocaml-gdal/gdal/index.html).
Using the bindings
------------------Linking to the underlying GDAL library is performed at runtime.
To initialize:Gdal.Lib.init_dynamic ();
The `init_dynamic` function takes an optional `~lib` argument which may be
used to specify the specific shared object to link against. It defaults to
`libgdal.so`.