imread not working for certain http server urls (for openstreetmap GIS)?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Walter Roberson
le 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.
Réponses (0)
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!