Difference between revisions of "Google Earth"

From GeoWiki
Jump to: navigation, search
(Network Link)
m (tidied and restructured page)
Line 6: Line 6:
 
Add your tips and tricks for [[Google Earth]] here.
 
Add your tips and tricks for [[Google Earth]] here.
  
 +
== How To's ==
  
== Disk Cache ==
+
=== Store More Maps On Your Hard Drive ===
To make the maps stay cached and not needing to be constantly need to be reloaded:
+
To make more of the maps stay cached on your computer, and not downloaded in the future you need to modify the Cache settings: -
* Under Tools -> Options :  Click the 'cache' tab, change the disk cache setting to 512 MB (the max you can have).
+
# Click Tools -> Options > Cache tab
 +
# Change Disk Cache size to 512 MB (the maximum allowed value)
  
[[Category:Software]]
+
=== Track Travel Bugs ===
 
+
This interesting GreaseMonkey script tracks [[Travel bugs]] on Google Earth. The thread is available [http://forums.groundspeak.com/GC/index.php?showtopic=103162 here]. There is a direct link to the [http://files.dixo.net/geocachingtbtracker.user.js script here], and a [http://files.dixo.net/geocachingtbtracker.jpg sample image] is also available.  
 
 
== Travel Bug Tracking ==
 
This interesting GreaseMonkey script to track [[Travel bugs]] on Google Earth. The thread is [http://forums.groundspeak.com/GC/index.php?showtopic=103162 here].
 
If you can't read for any reason here is an [http://files.dixo.net/geocachingtbtracker.jpg image] and a link to the [http://files.dixo.net/geocachingtbtracker.user.js script.]
 
 
 
== Network Link ==
 
The network link allows Google Earth to display caches in real-timn: 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 on [http://geocaching.com.au/xml/googleearth/geocaches.kml here] and zoom to your favourite location and you should see caches pop up like magic!
+
=== 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.
== GSAK Macro ==
 
Here is a macro [[User: Riblit]] wrote to plot caches in Google Earth.
 
  
 +
To try it out, click [http://geocaching.com.au/xml/googleearth/geocaches.kml 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.
 +
<pre>
 
----
 
----
 
start___________
 
start___________
 
 
SET $Bable = "C:\Program Files\GSAK\GPSBabel.exe"
 
SET $Bable = "C:\Program Files\GSAK\GPSBabel.exe"
 
 
SET $Gearth = "C:\Program Files\Google\Google Earth Plus\googleearth.exe"
 
SET $Gearth = "C:\Program Files\Google\Google Earth Plus\googleearth.exe"
 
 
SET $temp = "C:\Program Files\GSAK\temp\"
 
SET $temp = "C:\Program Files\GSAK\temp\"
 
 
SET $tfile = $temp + "test.kml"
 
SET $tfile = $temp + "test.kml"
 
 
SET $ifile = $temp + "babel.gpx"
 
SET $ifile = $temp + "babel.gpx"
 
 
FILTER name="userset"
 
FILTER name="userset"
 
 
EXPORT type=GPX File="$ifile"
 
EXPORT type=GPX File="$ifile"
 
 
 
RUNPGM PGM="$Bable" parms= -i gpx -f "$ifile" -o kml -F "$tfile" Wait=Yes
 
RUNPGM PGM="$Bable" parms= -i gpx -f "$ifile" -o kml -F "$tfile" Wait=Yes
 +
RUNPGM PGM="$Gearth" parms="$tfile"
 +
end_____________
 +
----
 +
</pre>
 +
[[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
  
RUNPGM PGM="$Gearth" parms="$tfile"
+
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.
  
end_____________
 
  
----
 
  
  
[[User: Riblit]] runs a filter to get the caches down to a manageable level, mine justs 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.
+
[[Category:Software]]
Copy and paste the code into GSAK's macro editor and save, add a button if you like.
 

Revision as of 15:36, 30 July 2005

Google Earth

Google Earth Hacks


Add your tips and tricks for Google Earth here.

How To's

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 512 MB (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.