/usr/share/perl5/Geo/Gpsdrive/JiGLE.pm is in gpsdrive-scripts 2.10~pre4-6.dfsg-5.2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | #############################################################################
# Einlesen der von jiggle gecacheten Daten und
# schreiben in die WLAN Datenbank
#
# $Log$
# Revision 1.2 2006/10/02 23:28:07 tweety
# add own wlan database. This is kind of a template to eliminate the problems with the SSIDs with strange charset.
# make all Tables UTF8
#
# Revision 1.1 2005/08/15 13:54:22 tweety
# move scripts/WLAN --> scripts/Geo/Gpsdrive to reflect final Structure and make debugging easier
#
# Revision 1.5 2005/08/09 01:08:30 tweety
# Twist and bend in the Makefiles to install the DataDirectory more apropriate
# move the perl Functions to Geo::Gpsdrive in /usr/share/perl5/Geo/Gpsdrive/WLAN
# adapt icons.txt loading according to these directories
#
# Revision 1.4 2005/05/10 05:28:49 tweety
# type in disable_keys
#
# Revision 1.3 2005/04/10 00:15:58 tweety
# changed primary language for wlan-type generation to english
# added translation for WLAN-types
# added some icons classifications to wlan-types
# added LOG: Entry for CVS to some *.pm Files
#
package Geo::Gpsdrive::JiGLE;
use strict;
use warnings;
use IO::File;
use File::Basename;
use File::Path;
use Data::Dumper;
use Geo::Gpsdrive::DBFuncs;
use Geo::Gpsdrive::Utils;
use Geo::Gpsdrive::Gps;
use Date::Manip;
use Time::Local;
$|=1;
my $LINES_COUNT_FILE =0;
my $LINES_COUNT_UNPARSED =0;
our $wlan_id;
sub import_Jigle_file($$){
my $full_filename = shift;
my $source_id = shift;
print "Reading $full_filename \n";
my $fh = IO::File->new("<$full_filename");
my $filename = basename($full_filename);
my $wlan_id=99999999;
$LINES_COUNT_FILE =0;
while ( my $line = $fh->getline() ) {
$LINES_COUNT_FILE ++;
next if $line =~ m/trilat~trilong~ssid~netid~discoverer/;
# print "line: $line\n";
if ( $line =~ m/^\s*$/) {
} elsif ( $line =~ m/^trilat/ ) {
} else {
# print "$line\n";
# trilat~trilong~ssid~netid~discoverer~channel~type~freenet~firsttime~wep~comment~qos~lastupdt~paynet~userfound
# 48.035843~10.747351~ ~00:01:E3:00:DD:71~ ~0~????~N~2004-02-20 03:27:45~N~ ~0~20040404125535~N~Y
# 48.029793~10.51143~ ~00:02:2D:39:9A:79~ ~0~????~N~2004-02-20 03:21:39~N~ ~0~20040404125620~N~Y
# trilat ~trilong ~ssid~netid ~discoverer~channel~type~freenet~firsttime ~wep~comment~qos~lastupdt ~paynet~userfound
# 48.43025~10.281776~ ~00:02:2d:9c:77:66~ ~8192 ~BBS ~N ~2004-03-07 10:32:13~Y ~ ~0 ~20040511173722~N ~N
# 0 1 2 3 4 5 6 7 8 9 0 1 2 3
my @line = split(/\~/,$line);
$wlan_id++;
my $point;
$point->{'wlan.lat'} = $line[0];
$point->{'wlan.lon'} = $line[1];
$point->{'wlan.ssid'} = $line[2];
$point->{'wlan.bssid'} = $line[3];
$point->{'wlan.name'} = $point->{'wlan.ssid'}."\t".$point->{'wlan.bssid'};
$point->{'wlan.essid'} = $point->{'wlan.ssid'};
$point->{'wlan.wlan_id'} = $wlan_id;
$point->{'wlan.discoverer'} = $line[4];
$point->{'wlan.channel'} = $line[5];
$point->{'wlan.type'} = $line[6];
$point->{'wlan.nettype'} = ($line[7] eq "Y") ? 1 : 0;
$point->{'wlan.cloaked'} = "0";
$point->{'wlan.freenet'} = $line[7];
$point->{'wlan.last_modified'} = $line[8];
$point->{'wlan.wep'} = $line[7];
$point->{'wlan.comment'} = $point->{'wlan.bssid'};
$point->{'wlan.macaddr'} = $point->{'wlan.bssid'};
$point->{'wlan.date2'} = $line[12];
$point->{'wlan.proximity'} = 100;
# Kismet: bssid time-sec time-usec lat lon alt spd heading fix signal quality noise
$point->{source_id} = $source_id;
correct_lat_lon($point);
Geo::Gpsdrive::DBFuncs::add_wlan($point);
}
}
}
# *****************************************************************************
sub import_Data($){
my $dir = shift;
my $jigle_dir = $dir || "~/JiGLE/WiGLEnet/data";
my $source = "JiGLE WLAN";
my $source_id = Geo::Gpsdrive::DBFuncs::source_name2id($source);
unless ( $source_id ) {
my $source_hash = {
'source.url' => "",
'source.name' => $source ,
'source.comment' => 'JiGLE Wlan' ,
'source.licence' => "JiGLE"
};
Geo::Gpsdrive::DBFuncs::insert_hash("source", $source_hash);
$source_id = Geo::Gpsdrive::DBFuncs::source_name2id($source);
}
for my $type ( qw ( closed public open pay wep wlan ) ) {
$wlan_id->{$type} = poi_type_name2id("w-lan.$type");
};
Geo::Gpsdrive::DBFuncs::disable_keys('wlan');
delete_all_from_source($source);
debug("$jigle_dir/*.autocache");
foreach my $full_filename ( glob("$jigle_dir/*.autocache") ) {
import_Jigle_file($full_filename,$source_id)
if ( -s $full_filename > 110 );
}
Geo::Gpsdrive::DBFuncs::enable_keys('wlan');
}
1;
|