Google Earth

From GeoWiki
Revision as of 17:39, 9 August 2005 by 203.206.54.27 (talk) (Store More Maps On Your Hard Drive)
Jump to: navigation, search

Google Earth

Google Earth Hacks

How To's

Change the default view on startup

  1. Open Google Earth
  2. Under Places, right-click on default > Edit
  3. Tick Advanced checkbox
  4. Click Location tab
  5. Tick Center Placemark in View
  6. Click View tab
  7. Whilst Edit Placemark window is open, navigate as usual to the default view you want
  8. Click Snapshot current view when satisfied with view
  9. Click Advanced checkbox
  10. Click OK
  11. Under the Tools menu, Click Options
  12. Click Control tab
  13. Move the Fly-To/Tour speed setting to Fast.
  14. Click OK
  15. Close Google Earth and restart

Store More Maps On Your Hard Drive

To make more of the maps stay cached on your computer, and not downloaded in the future you need to modify the Cache settings: -

  1. Click Tools -> Options > Cache tab
  2. Change Disk Cache size to the maximum allowed value.

Track Travel Bugs

This interesting GreaseMonkey script tracks Travel bugs on Google Earth. The thread is available here. There is a direct link to the script here, and a sample image is also available.

Load Waypoints from the Internet

Google Earth can load waypoints from websites on the Internet. The network link allows Google Earth to display caches in real-time - no gpx files to download or convert, just scroll around and it talks to our server and downloads the nearby caches.

To try it out, click here and zoom to your favourite location and you should see caches pop up like magic!

View GSAK Caches in Google Earth

Here is a macro User:Riblit wrote to plot caches in Google Earth, using GSAK and GPSBabel.

----
start___________
SET $Bable = "C:\Program Files\GSAK\GPSBabel.exe"
SET $Gearth = "C:\Program Files\Google\Google Earth Plus\googleearth.exe"
SET $temp = "C:\Program Files\GSAK\temp\"
SET $tfile = $temp + "test.kml"
SET $ifile = $temp + "babel.gpx"
FILTER name="userset"
EXPORT type=GPX File="$ifile"
RUNPGM PGM="$Bable" parms= -i gpx -f "$ifile" -o kml -F "$tfile" Wait=Yes
RUNPGM PGM="$Gearth" parms="$tfile"
end_____________
----

User: Riblit runs a filter to get the caches down to a manageable level, mine just filters caches he has checked. If you don't want a filter, delete the FILTER name ="userset" line

The variables will be ok for a default GSAK and Google Earth install. Copy and paste the code into GSAK's macro editor and save, add a button if you like.