Changeset 23779
- Timestamp:
- 03/08/19 13:33:45 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/googlemaps.m
r23334 r23779 105 105 heightplus = height + bottom; 106 106 107 %Read Google Maps key 108 if exist('~/.googlemapskey'); 109 key=deblank(fileread('~/.googlemapskey')); 110 iskey = true; 111 else 112 %To create an API key, visit: https://developers.google.com/maps/documentation/maps-static/get-api-key 113 %Once approved, go to Google Cloud Platform and enable "Maps Static APIs" 114 %You will also need to "enable billing fot this project" 115 %Then get the key and enter it in ~/.googlemapskey 116 warning('It appears that you do not have a Google Maps API key, retrieving google maps photos may fail (this is a new requirement of Google...)'); 117 iskey = false; 118 end 119 107 120 %Initialize final image 108 121 final = zeros(floor(dy),floor(dx),3);%RGB image … … 122 135 '&sensor=false'... 123 136 '&scale=' num2str(scale)]; 137 if iskey, 138 params = [params,'&key=' key]; 139 end 124 140 url = ['http://maps.google.com/maps/api/staticmap?' params]; 125 141 count = 0; … … 130 146 break; 131 147 catch me, 148 disp(['Failed, trying again... (' num2str(countmax-count) ' more attempts)']); 132 149 count = count+1; 133 disp(['Failed, trying again... (' num2str(countmax-count) ' more attempts)']);134 150 pause(.3); 135 151 if count>countmax,
Note:
See TracChangeset
for help on using the changeset viewer.