Jump to content

Recommended Posts

Posted

Heliotrope ridge trail is under about 6 feet of snow right now and the snowshoers' tracks we ended up following went in circles. Does anyone have GPS data for that trail? We just need the path from the bathrooms to that first major creek drainage that takes you up to the tree line.

 

All the markers you'd see in the summer are buried, but a GPS output would probably be helpful. i just want to be able to mark where the switchbacks so I don't waste time ascending. Please help!

 

.Bill

  • Replies 11
  • Created
  • Last Reply

Top Posters In This Topic

Posted

We were driving probably the perfect car for the trip - a subaru with great studless snow tires. We rallied straight past the sno-park lot and parked at a pullout about 5 miles up the road. We just skinned up on split boards the last 3 miles. There is a point about at mile 6 where they have a sign that "no wheeled vehicles" should pass. They groom that road every wednesday and snowmobiles use it regularly, so it's totally flat and passable with at least one lane all the way to the bathrooms at the heliotrope trailhead. Some snowshoers drove and parked even higher than us in a 2000 honda civic. go figure.

 

That's one hour skinning up the road to the trailhead and about 10 minutes bombing back down on a split board at 35 mph.

 

Anyhow, that trail would be a snap to find if we could just get a GPS file for it. Many other snowshoers and skiers use it in the Winter but it's always getting covered up and the quickest way to that drainage is the trail no matter how much snow is covering it.

 

I'm also curious as to how may people use GPS when they hike. I've found it really useful for marking things like crevasses, trailheads, cars, rest stops, etc..

Posted

The no wheeled vehicle sign is actually at the intersection of FS Road 37 and the 3600 road, which is about 7.5 miles up from the mount baker highway. You would be very hard pressed to get a "wheeled vehicle" there as of right now. The snow on the road changes from approximately 1 foot deep before mile 5 to 6-8 feet deep rapidly after mile 5.

Posted

Nevermind. I wrote a sloppy perl script that parses lat/long out of some guy's google map of this route. booyah.

 

#!/usr/bin/perl

# written by a climber that wouldn't take 'no' for an answer.

print "Stupid GPS converter\n\n";

 

my $file = "helio1.txt";

 

open (IN, $file) || die "can't open '$file': $!";

if ( ! open LOG, ">>gpsout") {

die "Cannot create gpsout: $!";

}

 

my $first_line = ;

while (my $line = ) {

chomp $line;

 

if ($line =~ /\s*points.push\(newGLatLng\((\d*.\d*),\s(-\d{3}.\d*)/) {

print LOG "$2,$1,100 ";

}

}

 

Posted

use strict;

use Test;

BEGIN { plan tests => 13, todo => [3,4] }

 

ok(0); # failure

ok(1); # success

 

ok(0); # ok, expected failure (see todo list, above)

ok(1); # surprise success!

 

ok(0,1); # failure: '0' ne '1'

ok('broke','fixed'); # failure: 'broke' ne 'fixed'

ok('fixed','fixed'); # success: 'fixed' eq 'fixed'

 

ok(sub { 1+1 }, 2); # success: '2' eq '2'

ok(sub { 1+1 }, 3); # failure: '2' ne '3'

ok(0, int(rand(2)); # (just kidding! :-)

 

my @list = (0,0);

ok @list, 3, "\@list=".join(',',@list); #extra diagnostics

ok 'segmentation fault', '/(?i)success/'; #regex match

 

skip($feature_is_missing, ...); #do platform specific test

 

 

Yup, looks ok ;]

Posted

That seems like a lot of unnecessary work for one of these:

 

179041808_7b2cb989f4_o.jpg

 

As per PM, send me your e-mail address where I can send an attachment and I'll be happy to forward the track in whatever format you need.

Posted
Nevermind. I wrote a sloppy perl script that parses lat/long out of some guy's google map of this route. booyah.

 

#!/usr/bin/perl

# written by a climber that wouldn't take 'no' for an answer.

print "Stupid GPS converter\n\n";

 

my $file = "helio1.txt";

 

open (IN, $file) || die "can't open '$file': $!";

if ( ! open LOG, ">>gpsout") {

die "Cannot create gpsout: $!";

}

 

my $first_line = ;

while (my $line = ) {

chomp $line;

 

if ($line =~ /\s*points.push\(newGLatLng\((\d*.\d*),\s(-\d{3}.\d*)/) {

print LOG "$2,$1,100 ";

}

}

 

not exp log srand xor s qq qx xor

s x x length uc ord and print chr

ord for qw q join use sub tied qx

xor eval xor print qq q q xor int

eval lc q m cos and print chr ord

for qw y abs ne open tied hex exp

ref y m xor scalar srand print qq

q q xor int eval lc qq y sqrt cos

and print chr ord for qw x printf

each return local x y or print qq

s s and eval q s undef or oct xor

time xor ref print chr int ord lc

foreach qw y hex alarm chdir kill

exec return y s gt sin sort split

Posted

I skied in there with billygoat last winter for some touring, and there was a skin track the whole way. Nice slopes and seracing up there, even if you do have to skin up the road a ways from whereever you park.

Posted

Here' a freakish idea: Use a map and a compass.

 

Go up the hill the easy way until you are where you want to be, then, turn around and follow your tracks home. Is that too much to ask, or do you need a hand-held Robby the Robot to tell you when to turn left?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...