imread not working for certain http server urls (for openstreetmap GIS)?
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
Walter Roberson
2021-11-10
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.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!