/[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 24 by dpavlin, Fri Dec 7 00:59:05 2007 UTC revision 30 by dpavlin, Fri Dec 7 15:53:41 2007 UTC
# Line 9  use CGI::Carp qw/fatalsToBrowser/; Line 9  use CGI::Carp qw/fatalsToBrowser/;
9  use File::Find;  use File::Find;
10  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
11    
12  use lib '../';  use lib '../lib';
13    use blib;
14  use NMEA;  use NMEA;
15    use KML;
16    
17  my $trace_path = '/home/dpavlin/x/openmoko/gps/';  my $trace_path = '../nmea/';
18    
19  # http://localhost/  # http://localhost/
20  my $map_key = 'ABQIAAAAVQ5szt9Jd8ws6vgfVQOEmhT2yXp_ZAY8_ufC3CFXhHIE1NvwkxQ1cKf0DwFJcwtpESJEI0hL8QgtYg';  my $map_key = 'ABQIAAAAVQ5szt9Jd8ws6vgfVQOEmhT2yXp_ZAY8_ufC3CFXhHIE1NvwkxQ1cKf0DwFJcwtpESJEI0hL8QgtYg';
# Line 24  find({ wanted => sub { Line 26  find({ wanted => sub {
26    
27  my $q = CGI->new;  my $q = CGI->new;
28    
 print $q->header;  
   
29  my $head = '';  my $head = '';
30  my $html = join('', qq{  my $html = join('', qq{
31  <h1>Select GPS NMEA dump</h1>  <h1>Select GPS NMEA dump</h1>
# Line 38  my $html = join('', qq{ Line 38  my $html = join('', qq{
38                                  "$_ (" . (stat("$trace_path/$_"))[7] . " bytes)"                                  "$_ (" . (stat("$trace_path/$_"))[7] . " bytes)"
39                          }                          }
40                          sort {                          sort {
41                                  (stat("$trace_path/$a"))[10] <=> (stat("$trace_path/$b"))[10]                                  (stat("$trace_path/$a"))[9] <=> (stat("$trace_path/$b"))[9]
42                          } @traces                          } @traces
43                  ],                  ],
44                  -onChange => 'trace_frm.submit()',                  -onChange => 'trace_frm.submit()',
45          ),          ),
46          $q->submit( -value => 'Show trace' ),          $q->submit(
47                    -name => 'show',
48                    -value => 'Show trace'
49            ),
50            ' Export to ',
51            $q->submit(
52                    -name => 'export',
53                    -value => 'KML'
54            ),
55          $q->br,          $q->br,
56          'Draw as ',          'Draw ',
57          $q->checkbox(          $q->popup_menu(
58                  -name => 'line',                  -name => 'points_filter',
59                    -values => [ 'all', 'every', 'total of' ],
60            ),
61            $q->textfield(
62                    -name => 'points_count',
63                    -value => '',
64                    -size => 2,
65                  -onChange => 'trace_frm.submit()',                  -onChange => 'trace_frm.submit()',
66          ),          ),
67          ' with ',          ' points and ',
68          $q->popup_menu(          $q->popup_menu(
69                  -name => 'placemark_filter',                  -name => 'placemark_filter',
70                  -values => [ 'every', 'total of' ],                  -values => [ 'total of', 'every' ],
71          ),          ),
72          $q->textfield(          $q->textfield(
73                  -name => 'placemark',                  -name => 'placemark_count',
74                  -value => 5,                  -value => 5,
75                  -size => 2,                  -size => 2,
76                  -onChange => 'trace_frm.submit()',                  -onChange => 'trace_frm.submit()',
# Line 72  if ( my $trace = $q->param('trace') ) { Line 86  if ( my $trace = $q->param('trace') ) {
86    
87          $trace = "$trace_path/$trace";          $trace = "$trace_path/$trace";
88    
         my $points = 0;  
89          my $center_point;          my $center_point;
90          my @points;          my @points;
91          my @placemarks;          my @placemarks;
# Line 92  if ( my $trace = $q->param('trace') ) { Line 105  if ( my $trace = $q->param('trace') ) {
105                          html => join('<br/>',                          html => join('<br/>',
106                                  map {                                  map {
107                                          ucfirst($_) . ': ' . $hash->{$_}                                          ucfirst($_) . ': ' . $hash->{$_}
108                                  } ( qw/time lat lon speed course/ )                                  } ( qw/number time lat lon speed course/ )
109                          ),                          ),
110                            %$hash,
111                  };                  };
112    
                 $points++;  
   
113          }          }
114          close($fh);          close($fh);
115    
116          if ( $points > 0 ) {          if ( $#points >= 0 ) {
117    
118                    sub filter_array {
119                            my $o = {@_};
120                            my (     $count,      $filter,      $code  ) =
121                               ( $o->{count}, $o->{filter}, $o->{code} ) ;
122                            confess "no CODE?" unless ref($code) eq 'CODE';
123                            my @array = @{ $o->{array} };
124    
125                            warn "count: $count filter: $filter\n";
126    
127                            my $code_calls = 0;
128    
129                            if ( $count && $filter =~ m/every/ ) {
130                                    foreach my $o ( 0 .. $#array ) {
131                                            next unless $o % $count == 0;
132                                            $code->( $array[$o] );
133                                            $code_calls++;
134                                    }
135                            } elsif ( $count && $filter =~ m/total/ ) {
136                                    # total of
137                                    if ( $count < 2 ) {
138                                            # first
139                                            if ( $array[0]) {
140                                                    $code->( $array[0] );
141                                                    $code_calls++;
142                                            };
143                                            # last
144                                            if ( $count > 1 && $#array > 0 ) {
145                                                    $code->( $array[$#array] );
146                                                    $code_calls++;
147                                            };
148                                            return $code_calls;
149                                    }
150    
151                                    my $d = $#array / ( $count - 1 );
152                                    foreach my $p ( 0 .. $count - 1 ) {
153                                            my $o = int($p * $d);
154                                            die "no element $p at $o from total of ",$#array + 1 unless $array[$o];
155                                            $code->( $array[$o] );
156                                            $code_calls++;
157                                    }
158                            } else {
159                                    # show every
160                                    foreach my $e ( @array ) {
161                                            $code->( $e );
162                                            $code_calls++;
163                                    }
164                            }
165                            return $code_calls;
166                    }
167    
168                  my $map = HTML::GoogleMaps->new(                  my $map = HTML::GoogleMaps->new(
169                          key => $map_key,                          key => $map_key,
170                          width => '800px',                          width => '800px',
171                          height => '600px',                          height => '600px',
172                  );                  );
                 #$map->center(point => "Zagreb, Hrvatska");  
173    
174                  #$map->zoom(10);                  my @poly_points;
175                  $map->v2_zoom(20);                  my $points = filter_array(
176                  $map->controls("large_map_control", "map_type_control");                          count => $q->param('points_count'),
177                  $map->map_type('hybrid');                          filter => $q->param('points_filter'),
178                  $map->center( $center_point ) if $q->param('line') && $center_point;                          code => sub {
179                                    my $point = shift;
180                                    push @poly_points, $point;
181                            },
182                            array => \@points,
183                    );
184    
185                  if ( $q->param('line') ) {                  die "hum?" unless $#poly_points == $points - 1;
                         warn "## points = ",dump( @points );  
                         $map->add_polyline( points => [ @points ] );  
                 }  
186    
187                  my $placemarks = 0;                  my @filtered_placemarks;
188    
189                  if ( my $placemark = $q->param('placemark') ) {                  my $placemarks = filter_array(
190                          if ( $q->param('placemark_filter') eq 'every' ) {                          count => $q->param('placemark_count'),
191                                  foreach my $o ( 0 .. $#placemarks ) {                          filter => $q->param('placemark_filter'),
192                                          next unless $o % $placemark == 0;                          code => sub {
193                                          $map->add_marker( %{ $placemarks[$o] } );                                  my $placemark = shift;
194                                          $placemarks++;                                  $map->add_marker( %$placemark, noformat => 1 );
195                                  }                                  push @filtered_placemarks, $placemark;
196                            },
197                            array => \@placemarks,
198                    );
199    
200                    if ( my $export = $q->param('export') ) {
201                            if ( $export eq 'KML' ) {
202                                    print $q->header(
203                                            -type => 'application/xhtml+xml',
204                                    ),
205                                    KML->output( placemarks => \@filtered_placemarks );
206                                    exit;
207                          } else {                          } else {
208                                  # total of                                  die "unknown export format $export";
                                 my $d = $points / ( $placemark - 1 );  
                                 foreach my $p ( 0 .. $placemark - 2 ) {  
                                         my $o = int($p * $d);  
                                         die "no placemark $p at $o from total of $#placemarks" unless $placemarks[$o];  
                                         $map->add_marker( %{ $placemarks[$o] } );  
                                         $placemarks++;  
                                 }  
                                 # add last one  
                                 $map->add_marker( %{ $placemarks[$#placemarks] } );  
                                 $placemarks++;  
                         }  
                 } else {  
                         # show every placemark  
                         foreach my $marker ( @placemarks ) {  
                                 $map->add_marker( %$marker );  
                                 $placemarks++;  
209                          }                          }
210                  }                  }
211    
212    
213                    #$map->center(point => "Zagreb, Hrvatska");
214    
215                    #$map->zoom(10);
216                    $map->v2_zoom(20);
217                    $map->controls("large_map_control", "map_type_control");
218                    $map->map_type('hybrid');
219                    $map->center( $center_point ) if $q->param('line') && $center_point;
220    
221                    $map->add_polyline( points => [ @poly_points ] ) if @poly_points;
222            
223                  my ( $map_div, $map_script );                  my ( $map_div, $map_script );
224                  ( $head, $map_div, $map_script ) = $map->render;                  ( $head, $map_div, $map_script ) = $map->render;
225    
226                  $html .= join('', qq{                  $html .= join('',
227  $points points from <tt>}, $q->param('trace'), qq{</tt> showing },  $#points + 1, ' points from <tt>', $q->param('trace'), '</tt> showing ',
228          $#points > 0 ? $#points + 1 . ' points' . ( $placemarks ? ' and ' : '' ) : '',          $points ? $points . ' points' . ( $placemarks ? ' and ' : '' ) : '',
229          $placemarks ? $placemarks . ' placemarks' : '',          $placemarks ? $placemarks . ' placemarks' : '',
230          qq{          qq{
231  $map_div  $map_div
232  $map_script  $map_script
233  <a href="http://aprs.gids.nl/nmea/">GPS - NMEA sentence information</a>  <a href="http://aprs.gids.nl/nmea/">GPS - NMEA sentence information</a>
234                  });                  });
235    
236                    my $stats = NMEA->stats;
237                    $html .= '<table>';
238                    foreach my $n ( keys %$stats ) {
239                            $html .= "<tr><td>$n</td><td>" . $stats->{$n} . "</td></tr>";
240                    }
241                    $html .= '</table>';
242                    
243          } else {          } else {
244                  $html .= '<em>No points found for ' . $q->param('trace') . '</em>';                  $html .= '<em>No points found for ' . $q->param('trace') . '</em>';
# Line 170  $map_script Line 246  $map_script
246    
247  }  }
248    
249    print $q->header;
250  print qq{  print qq{
251  <html>  <html>
252  <head>  <head>

Legend:
Removed from v.24  
changed lines
  Added in v.30

  ViewVC Help
Powered by ViewVC 1.1.26