Changeset 27670
- Timestamp:
- 03/30/23 11:09:37 (2 years ago)
- Location:
- issm/trunk/externalpackages/geocode
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/externalpackages/geocode/geoCode.m
r25836 r27670 15 15 16 16 % Copyright(c) 2012, Stuart P. Layton <stuart.layton@gmail.com> 17 % http ://stuartlayton.com17 % https://stuartlayton.com 18 18 % 19 19 % Revision History … … 46 46 switch lower(service) 47 47 case('google') 48 SERVER_URL = 'http ://maps.google.com';48 SERVER_URL = 'https://maps.google.com'; 49 49 queryUrl = sprintf('%s/maps/geo?output=xml&q=%s',SERVER_URL, address); 50 50 parseFcn = @parseGoogleMapsXML; … … 52 52 case('yahoo') 53 53 54 SERVER_URL = 'http ://where.yahooapis.com/geocode';54 SERVER_URL = 'https://where.yahooapis.com/geocode'; 55 55 queryUrl = sprintf('%s?location=%s',SERVER_URL, address); 56 56 … … 67 67 case {'osm', 'openstreetmaps', 'open street maps'} 68 68 69 69 SERVER_URL = 'https://nominatim.openstreetmap.org/search'; 70 70 queryUrl = sprintf('%s?format=xml&q=%s', SERVER_URL, address); 71 71 parseFcn = @parseOpenStreetMapXML; -
issm/trunk/externalpackages/geocode/install.sh
r20500 r27670 1 1 #/bin/bash 2 2 unzip geoCode.zip 3 sed -i -e 's/http:/https:/g' geoCode.m
Note:
See TracChangeset
for help on using the changeset viewer.