imread not working for certain http server urls (for openstreetmap GIS)?
2 views (last 30 days)
Show older comments
Using imread/webread is not working for certain http(s) servers. 'webread' says it cannot establish a secure connection - asking me to check my certificate file (but I have never touched these certs). 'imread' fails at 'getFileFromURL', however it was working fine until recently - so I suspect something changed in the host? The url is https://tiles.wmflabs.org/osm-no-labels/12/1974/1326.png if that matters. Using R2018b
My current workaround is to use (which works) but it's clunky:
urlwrite(url, 'temp.png')
[img, cmap, alpha] = imread('temp.png');
3 Comments
Walter Roberson
on 10 Nov 2021
It works for me starting with R2019b.
I thought I had detected that the certificate had moved in later releases, but I just checked and see that the .pem I located is a self-signed certificate to allow MATLAB to talk to other Mathworks processes, it appears.
So possibly these days it is relying on system certificates. If so, then possibly if you renamed rootcerts.pem to something else so that it is not found, then maybe your operating system certificates would kick in.
Answers (0)
See Also
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!