.ozi link off cache page [closed]

Discussion about the Geocaching Australia web site
team unicycle
3500 or more caches found
3500 or more caches found
Posts: 294
Joined: 15 April 03 11:03 pm
Location: Adelaide
Contact:

.ozi link off cache page [closed]

Post by team unicycle » 11 June 05 10:36 am

gc.com have, for premium members, a link to a gpx file on each cache page. This is really handy for updating GSAK etc when new caches come out. Could this be included in GCA pages?

Another handy link would be to an ozi .wpt link for individual caches. I could then preview straight in ozi. I'm sure anyone worth their SLT could do that with the GPX file, but that doesn't include me.

User avatar
ideology
Posts: 2763
Joined: 28 March 03 4:01 pm
Location: Sydney
Contact:

Post by ideology » 11 June 05 11:37 am

good idea, we'll put it on the list
we are happy to generate .wpt files if someone can let us know the format

Dooghan
Posts: 671
Joined: 06 April 03 5:03 pm
Location: Launceston TAS

Post by Dooghan » 11 June 05 11:45 am


User avatar
ideology
Posts: 2763
Joined: 28 March 03 4:01 pm
Location: Sydney
Contact:

Post by ideology » 07 October 05 8:45 am

is this of interest to people?

User avatar
Cached
2500 or more caches found
2500 or more caches found
Posts: 3087
Joined: 24 March 04 4:32 pm
Location: Launceston, Tasmania
Contact:

Post by Cached » 07 October 05 8:57 am

yes, I would use it.

Dooghan
Posts: 671
Joined: 06 April 03 5:03 pm
Location: Launceston TAS

Post by Dooghan » 07 October 05 9:06 am

count me in

User avatar
roostaman
10000 or more caches found
10000 or more caches found
Posts: 233
Joined: 25 February 05 5:32 pm
Location: Home of THE Original Oz Mega, Wagga Wagga
Contact:

Post by roostaman » 07 October 05 9:28 am

I create waypoint files from GSAK, generally with many points so they can be viewed on Mapsource or OZICE on the PPC.
So a single .wpt file for each cache might have less use............ ?

Just in case you do a lot of work to get it going and it is not used much by everyone after all.... just in case?
Any other comments?
Roosta

ian-and-penny
10000 or more caches found
10000 or more caches found
Posts: 1067
Joined: 13 October 03 11:45 am
Location: Travelling Australia using a Garmin Montana 650T

Post by ian-and-penny » 07 October 05 9:49 am

As a premium GC member I am fortunate to beable to use GPX files in GSAK as my main tool to search sort and view caches.

This functionality wouldn't be a lot of use to me, but I'm pretty sure the functionality woukd be appreciated by non premium members.

User avatar
riblit
It's the journey.
It's the journey.
Posts: 3444
Joined: 04 April 03 6:30 pm
Location: Land Grant of John Campbell

Post by riblit » 07 October 05 10:15 am

Oziexplorer doesn't support opening the appropiate map from a waypoint file, nor does it support drag and drop of waypoint files.<p>

I find it quicker to let the GPX file open GSAK and then click the name in GSAK to open Ozi and find the appropiate map.

User avatar
ideology
Posts: 2763
Joined: 28 March 03 4:01 pm
Location: Sydney
Contact:

Post by ideology » 20 October 05 10:26 pm

we read the format document but it's a bit hard without an example
can someone please post an example file of one waypoint?
thanks!

User avatar
GIN51E
600 or more caches found
600 or more caches found
Posts: 774
Joined: 19 June 05 11:07 am
Location: Berowra GARMIN GPSMAP66i

Post by GIN51E » 20 October 05 11:11 pm

i know not many people here use the software "Discover Aus" but out of all the mapping programs i've used i think its one of the best, with the detail of the maps.

one thing i have noticed is the waypoint files don't work correctly between ozi and discover aus,

also when i convert a GPX file to a wpt file using GPSBabel it will work in discover Aus but not in Ozi,

so this would be hard i think trying to make a file that will work with all programs, but my server's ftp isn't working so i can't upload an example Discover Aus wpt file.
but if someone would like it. Just pm your email address to me and i'll send it your way.

!mike
Posts: 129
Joined: 03 April 05 1:49 am
Location: Port Noarlunga, South Australia

Post by !mike » 21 October 05 12:02 am

ideology wrote:we read the format document but it's a bit hard without an example
can someone please post an example file of one waypoint?
thanks!
OziExplorer Waypoint File Version 1.1
WGS 84
Reserved 2
garmin
1,MIKE, -35.149773, 138.471446,38645.9371821, 46, 0, 3, 0, 65535,, 0, 0, 0, -777, 6, 0,17,0,10.0,2,,,

User avatar
riblit
It's the journey.
It's the journey.
Posts: 3444
Joined: 04 April 03 6:30 pm
Location: Land Grant of John Campbell

Post by riblit » 21 October 05 12:06 am

ideology wrote:we read the format document but it's a bit hard without an example
can someone please post an example file of one waypoint?
thanks!

Code: Select all

  function write_points($line) {
    global $handle;
    if (!fwrite($handle, $line)) {
    echo "Can't write to file";
    }
$counter = 1;
  write_points ("OziExplorer Waypoint File Version 1.1rn");
  write_points ("WGS 84rn");
  write_points("Reserved 2rn");
  write_points("garminrn");

   $sql = "select placename, status,  map_num, wgs84lat, wgs84long from gnr where designation = 'TRIG. STATION'";
            $result = riblit_sql($sql);
             while ($row= mysql_fetch_array($result)) {
             $available = ($row['status']<>"ASSIGNED")?'16711935, 13141291,':'65280, 4227327,';



             $str = $counter .','.$row['placename'].','.$row['wgs84lat'].','. $row['wgs84long'] .','. '38003.6840203, 56, 1, 3,' .$available . $row['map_num'].','.'0, 0,    0,    643, 6, 0,17,0,10.0,2,,,'."rn";
            write_points($str);
  //            print_r( $row);
              $counter +=1;
             }

    fclose($handle);
    echo "Finished";

?>

Just change the variables for your data
$available changes the foreground and background colours of the waypoint. The other fields in $str are ok with those defaults.
Is that enough or do you still want a file?

User avatar
ideology
Posts: 2763
Joined: 28 March 03 4:01 pm
Location: Sydney
Contact:

Post by ideology » 12 November 05 5:33 pm

we've added an .OZI option to each cache
we don't have Ozi Explorer so we can't test it
can someone please give it a go and let us know how it goes?

thanks!

energizer61
300 or more found
300 or more found
Posts: 353
Joined: 25 October 04 5:18 pm
Location: Burnie Tasmania

Post by energizer61 » 12 November 05 5:51 pm

ideology wrote:we've added an .OZI option to each cache
we don't have Ozi Explorer so we can't test it
can someone please give it a go and let us know how it goes?

thanks!
Didn't work for me i'm afraid, it downloads as a .ozi file, which didn't do anything. I tried renaming it to an .wpt file, but didn't have much luck.

unless there's something i'm lacking in my Ozi knowledge (which is quite possible)

Post Reply