I want to download some of the data available under “HERE Map Attributes API v8”. The format advised to request the the data is given by HERE on its webpage(https://developer.here.com/documentation/fleet-telematics/dev_guide/topics/here-map-content.html). And the url format to request the information is
or
What I did: I used above two formats in MATLAB 2019 but I am getting error. The formats that I used are :
url = "https://fleet.ls.hereapi.com/1/tile.json?region=NA&layer=ADAS_ATTRIB_FC1&level=9&tilex=273&tiley=369&apikey=xyz" return_val = webread(url)
and url = "https://smap.hereapi.com/v8/maps/attributestile.txt?region=NA&layer=ADAS_ATTRIB_FC1&level=9&tilex=273&tiley=369&apikey=xyz" return_val = webread(url)
Here xyx in both of them was replaced with my API.
Now the errors that I got are :
Error using webread (line 122) Could not establish a secure connection to "smap.hereapi.com". The reason is "error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed". Check your certificate file (C:\Software\Mathworks\Matlab_All_Products_R2019a\sys\certificates\ca\rootcerts.pem) for expired, missing or invalid certificates.
and
Error using webread (line 122) Could not establish a secure connection to "fleet.ls.hereapi.com". The reason is "error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed". Check your certificate file (C:\Software\Mathworks\Matlab_All_Products_R2019a\sys\certificates\ca\rootcerts.pem) for expired, missing or invalid certificates.