/[maps]/web/googlemap.cgi
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /web/googlemap.cgi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 13 by dpavlin, Sun Dec 2 19:05:29 2007 UTC revision 19 by dpavlin, Mon Dec 3 19:16:55 2007 UTC
# Line 4  use warnings; Line 4  use warnings;
4  use strict;  use strict;
5    
6  use HTML::GoogleMaps;  use HTML::GoogleMaps;
7    use CGI;
8  use CGI::Carp qw/fatalsToBrowser/;  use CGI::Carp qw/fatalsToBrowser/;
9    use File::Find;
10  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
11    
12  # http://localhost/  use lib '../';
13  my $map_key = 'ABQIAAAAVQ5szt9Jd8ws6vgfVQOEmhT2yXp_ZAY8_ufC3CFXhHIE1NvwkxQ1cKf0DwFJcwtpESJEI0hL8QgtYg';  use NMEA;
   
 my $trace = '/home/dpavlin/x/openmoko/gps/foo.loc';  
   
 my $map = HTML::GoogleMaps->new(key => $map_key);  
 #$map->center(point => "Zagreb, Hrvatska");  
14    
15  sub deg {  my $trace_path = '/home/dpavlin/x/openmoko/gps/';
         my $a = shift;  
         if ( $a =~ m/^(\d+)(\d\d\.\d\d+)$/ ) {  
                 return sprintf("%1.6f", $1 + ( $2 / 60 ));  
         } else {  
                 warn "## skipped $a\n";  
                 return;  
         }  
 }  
16    
17  my $got_it;  # http://localhost/
18    my $map_key = 'ABQIAAAAVQ5szt9Jd8ws6vgfVQOEmhT2yXp_ZAY8_ufC3CFXhHIE1NvwkxQ1cKf0DwFJcwtpESJEI0hL8QgtYg';
 sub recalc {  
         my ( $lat, $lat_ns, $lon, $lon_ew ) = @_;  
   
         $lat = -$lat if $lat_ns eq 'S';  
         $lon = -$lon if $lon_ew eq 'W';  
19    
20          return if ( $got_it->{ $lat . $lon }++ );  my @traces;
21    find({ wanted => sub {
22            push @traces, $_ if -f $_;
23    }}, $trace_path);
24    
25    my $q = CGI->new;
26    
27    print $q->header;
28    
29    my $head = '';
30    my $html = join('', qq{
31    <h1>Select GPS NMEA dump</h1>
32            },
33            $q->start_form( -id => 'trace_frm' ),
34            $q->popup_menu(
35                    -name => 'trace',
36                    -values => [
37                            map {
38                                    "$_ (" . (stat("$trace_path/$_"))[7] . " bytes)"
39                            }
40                            sort {
41                                    (stat("$trace_path/$a"))[10] <=> (stat("$trace_path/$b"))[10]
42                            } @traces
43                    ],
44                    -onChange => 'trace_frm.submit()',
45            ),
46            $q->submit( -value => 'Show trace' ),
47            $q->end_form,
48    );
49    
50    if ( my $trace = $q->param('trace') ) {
51            $trace =~ s/\s.+$//;
52    
53            my $map = HTML::GoogleMaps->new(key => $map_key);
54            #$map->center(point => "Zagreb, Hrvatska");
55    
56          $lat = deg( $lat ) || return;          $trace = "$trace_path/$trace";
         $lon = deg( $lon ) || return;  
57    
58          warn "## $lon $lat\n";          my $points = 0;
59    
60          return [ $lon, $lat ];          open(my $fh, '<', $trace) || die "can't open $trace: $!";
61  }          while( <$fh> ) {
62    
63  open(my $fh, '<', $trace) || die "can't open $trace: $!";                  my $hash = NMEA->line( $_ ) || next;
 while( <$fh> ) {  
         if ( m/\$GPRMC/ ) {  
                 chomp;  
                 my @a = split(/,/,$_);  
64    
65                  next unless $#a = 12;                  $map->add_marker(
66                            point => [ $hash->{lon}, $hash->{lat} ],
67                            html => join('<br/>',
68                                    map {
69                                            ucfirst($_) . ': ' . $hash->{$_}
70                                    } ( qw/time lat lon speed course/ )
71                            ),
72                    );
73    
74                  warn "## [$#a] $_\n";                  $points++;
75            }
76            close($fh);
77    
78                  my ( undef, $time, $validity, $lat, $lat_ns, $lon, $lon_ew, $speed, $course, $date, $var, $var_ew ) = @a;          if ( $points > 0 ) {
79    
80                  next unless $validity eq 'A';                  #$map->zoom(10);
81                    #$map->v2_zoom(0);
82                    $map->controls("large_map_control", "map_type_control");
83                    $map->map_type('hybrid');
84    
85                  my $point = recalc( $lat, $lat_ns, $lon, $lon_ew ) || next;                  my ( $map_div, $map_script );
86                    ( $head, $map_div, $map_script ) = $map->render;
87    
88                  $map->add_marker(                  $html .= join('', qq{
89                          point => $point,  <h1>Plotting $points points from }, $q->param('trace'), qq{</h1>
90                          html => "Time: $time<br/>Validity: $validity</br>Lat: $lat $lat_ns<br/>Lon: $lon $lon_ew<br/>Speed: $speed<br/>Course: $course",  $map_div
91                  ) if $validity eq 'A';  $map_script
92    <a href="http://aprs.gids.nl/nmea/">GPS - NMEA sentence information</a>
93                    });
94            
95            } else {
96                    $html .= '<em>No points found for ' . $q->param('trace') . '</em>';
97          }          }
 }  
 close($fh);  
98    
99  #$map->zoom(10);  }
 #$map->v2_zoom(0);  
 $map->controls("large_map_control", "map_type_control");  
 $map->map_type('hybrid');  
   
 my ($head, $map_div, $map_script) = $map->render;  
100    
 print "Content-type: text/html\n\r\n\r";  
101  print qq{  print qq{
102  <html>  <html>
103    <head>
104  <title>Read GPS - NMEA sentence and display it on GoogleMaps</title>  <title>Read GPS - NMEA sentence and display it on GoogleMaps</title>
105  <head>$head</head>  $head
106    </head>
107  <body>  <body>
108  $map_div  $html
   
 $map_script  
 <a href="http://aprs.gids.nl/nmea/">GPS - NMEA sentence information</a>  
109  </body>  </body>
110  </html>  </html>
111  };  };

Legend:
Removed from v.13  
changed lines
  Added in v.19

  ViewVC Help
Powered by ViewVC 1.1.26