-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature suggestion: list of supported drivers #148
Comments
agreed! and similarly i think a shared |
I haven't translated them into the corresponding code of GDAL.jl, but you can get them via |
Thanks @yeesian, that's perfect for what we need! |
It's worth noting that for the For listing all drivers, you can loop from over all the drivers by index based on |
I think the request for EPSG codes is still a valid one; I looked it up and the best I found so far is https://gis.stackexchange.com/questions/300846/get-a-list-of-all-supported-epsg-code-from-ogr -- it will be nice to have a way of making it more accessible. Opened up an issue in yeesian/ArchGDAL.jl#370. |
@gottacatchenall How would that be useful to you? Do you want to check the validity of your transform? |
Yes, for both checking the validity of a transform, and potentially for imposing conditions on what are valid EPSGs to run a model with given the bounding box of the data, e.g. EPSG 32198 is specific to Quebec but can be applied to raster data from anywhere with |
Ah, that makes sense. Might be good to update the issue, because now it reads like we just want a (very long) list of epsg numbers. We actually want a validity and conform bounds checks. |
Hi! @gottacatchenall and I were looking for a list of drivers supported by GDAL.jl, and it seems like the only one is part of the test suite (e.g. here).
Would it make sense to stick this array in a variable, that doesn't need to be exported? It would allow other packages to perform checks like
driver in GDAL.supported_drivers
, for example.If that makes sense (and after reading #65 I know the set of supported drivers might change), I would be happy to open a PR.
The text was updated successfully, but these errors were encountered: