Clear Filters
Clear Filters

imread not working for certain http server urls (for openstreetmap GIS)?

3 views (last 30 days)
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
Erik Johannes Loo
Erik Johannes Loo on 10 Nov 2021
It works for me only if I use urlwrite - but I would ideally read it directly with imread - and that does not seem to be working. It says 'Can't read URL "https://tiles.wmflabs.org/osm-no-labels/12/1974/1326.png".' Maybe I am being too picky since I do have a workaround, but it used to work before. Maybe there is something else on my system which is causing it not too work - like the certs or my VPN
Walter Roberson
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.

Sign in to comment.

Answers (0)

Categories

Find more on Manage Products in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!