Changeset 23779


Ignore:
Timestamp:
03/08/19 13:33:45 (6 years ago)
Author:
Mathieu Morlighem
Message:

CHG: make googlemaps work with key

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/plot/googlemaps.m

    r23334 r23779  
    105105heightplus = height + bottom;
    106106
     107%Read Google Maps key
     108if exist('~/.googlemapskey');
     109        key=deblank(fileread('~/.googlemapskey'));
     110        iskey = true;
     111else
     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;
     118end
     119
    107120%Initialize final image
    108121final = zeros(floor(dy),floor(dx),3);%RGB image
     
    122135                        '&sensor=false'...
    123136                        '&scale=' num2str(scale)];
     137                if iskey,
     138                        params = [params,'&key=' key];
     139                end
    124140                url = ['http://maps.google.com/maps/api/staticmap?' params];
    125141                count = 0;
     
    130146                                break;
    131147                        catch me,
     148                                disp(['Failed, trying again... (' num2str(countmax-count) ' more attempts)']);
    132149                                count = count+1;
    133                                 disp(['Failed, trying again... (' num2str(countmax-count) ' more attempts)']);
    134150                                pause(.3);
    135151                                if count>countmax,
Note: See TracChangeset for help on using the changeset viewer.