Re: Error with MapProjection::Forward [message #86671 is a reply to message #86669] |
Wed, 27 November 2013 08:54   |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
Madhavan Bomidi writes:
> ; Gather the Google Map using the Google Static Map API
> googleStr="http://maps.googleapis.com/maps/api/staticmap?" + $
> "center=" + StrTrim(centerLat,2) + ',' + StrTrim(centerLon,2) + $
> "&zoom=" + StrTrim(zoom,2) + "&size=1200x1200" + $
> "&maptype=satellite&sensor=true&format=png32" ; terrain/satellite/hybrid
I just noticed that you are trying to recover a 1200x1200 image from
Google. The maximum size of an image returned from Google using this
Google API is 640x640. In fact, this is the size of the image returned
by this command. Maybe that is what you meant by "low resolution". If
so, then I guess we are stuck with it. You can try complaining to
Google. :-)
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
|
|
|