We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
using gdal locally i can do something like this:
gdalinfo "https://gdi.berlin.de/services/wms/okg?request=GetCapabilities&service=wms&service=wms"
which returns the sublayers of the wms source.
how can i do this with this gdal implementation here?
any help would be great!!
Thanks a lot!
PS: i guess it also does not work with geotiffs?
const u = '/vsicurl/https://github.com/mommermi/geotiff_sample/blob/master/sample.tif' const r = await Gdal.open(u) const firstDataset = r.datasets[0] const info = await Gdal.gdalinfo(firstDataset) console.log('DEBUG', info)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
using gdal locally i can do something like this:
gdalinfo "https://gdi.berlin.de/services/wms/okg?request=GetCapabilities&service=wms&service=wms"
which returns the sublayers of the wms source.
how can i do this with this gdal implementation here?
any help would be great!!
Thanks a lot!
PS: i guess it also does not work with geotiffs?
The text was updated successfully, but these errors were encountered: