Android G-Mon support
Posted: Sat Jul 25, 2009 1:01 pm
For a single request if is unlikely but here goes......
Could you add a parser for the Android G-Mon application!
Sample export data
An alternative, the software outputs *.KML files but they dont parse on wigle. Could someone post a sample *.KML file that uploads to wigle? I might be able to fix the problem my end if I have a working example to run with.
Non working KML file form G-Mon
Cheers.
Could you add a parser for the Android G-Mon application!
Sample export data
Code: Select all
BSSID;LAT;LON;SSID;Crypt;Beacon Interval;Connection Mode;Channel;RXL;Date;Time
00:01:E3:E8:69:52;51.40393;-1.82873;OrangeE86950;WPA2;AAA;Infra;11;-92;2009/07/21;16:57:04
00:01:E3:F5:9D:55;51.31047;-1.81020;cottage01;Wep;AAA;Infra;1;-91;2009/07/21;16:44:08
00:02:CF:7F:7F:9B;51.57131;-1.80443;ZyXEL_3445aks;WpaPsk;AAA;Infra;6;-87;2009/07/22;12:11:12
00:02:CF:E4:5C:31;51.07344;-1.79664;ZyXEL_7336vik;WpaPsk;AAA;Infra;3;-92;2009/07/21;12:39:01
00:06:25:FF:9E:30;51.52975;-1.80441;monster;Open;AAA;Infra;1;-94;2009/07/22;11:12:05
00:09:5B:5B:AF:2B;51.57323;-1.80773;DYNWIRELESS;Wep;AAA;Infra;11;-76;2009/07/22;12:04:00
00:09:5B:DC:51:E4;51.26484;-1.80277;NellyNet;WpaPsk;AAA;Infra;3;-92;2009/07/21;16:38:38
00:09:5B:E6:ED:FE;51.55887;-1.83315;cshepherd;Open;AAA;Infra;6;-88;2009/07/22;11:41:57
00:0B:86:5F:F7:E0;51.57114;-1.80362;tworld3;WPA2;AAA;Infra;11;-90;2009/07/22;12:03:30
00:0B:86:5F:F7:E1;51.57114;-1.80362;guestnet;Open;AAA;Infra;11;-89;2009/07/22;12:03:30
00:0B:86:5F:F7:E2;51.57114;-1.80362;tworld2;WpaPsk;AAA;Infra;11;-89;2009/07/22;12:03:30
00:0B:86:5F:F7:E3;51.57114;-1.80362;tworld;Wep;AAA;Infra;11;-90;2009/07/22;12:03:30
00:0C:20:03:86:78;51.29606;-1.80789;MrPearson;Wep;AAA;Infra;6;-90;2009/07/21;16:42:38
00:0C:76:CA:27:C0;51.56023;-1.81455;fbh;Wep;AAA;Infra;5;-82;2009/07/22;12:13:36
Non working KML file form G-Mon
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.1">
<Document>
<Style id='Open'>
<IconStyle>
<color>ff00ff00</color>
<scale>0.5</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal4/icon57.png</href>
</Icon>
</IconStyle>
</Style>
<Style id='Wep'>
<IconStyle>
<color>ff00ffff</color>
<scale>0.5</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal4/icon57.png</href>
</Icon>
</IconStyle>
</Style>
<Style id='WpaPsk'>
<IconStyle>
<color>ff0080ff</color>
<scale>0.5</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal4/icon57.png</href>
</Icon>
</IconStyle>
</Style>
<Style id='Wpa'>
<IconStyle>
<color>ff0080ff</color>
<scale>0.5</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal4/icon57.png</href>
</Icon>
</IconStyle>
</Style>
<Style id='WPA2'>
<IconStyle>
<color>ff0000ff</color>
<scale>0.5</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal4/icon57.png</href>
</Icon>
</IconStyle>
</Style>
<Style id='?'>
<IconStyle>
<color>ffffffff</color>
<scale>0.5</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pal4/icon57.png</href>
</Icon>
</IconStyle>
</Style>
<Placemark>
<description>OrangeE86950
00:01:E3:E8:69:52</description>
<styleUrl>#WPA2 </styleUrl>
<visibility>0</visibility>
<Point>
<extrude>1</extrude>
<altitudeMode>relativeToGround</altitudeMode>
<coordinates>-1.82873,51.40393</coordinates>
</Point>
</Placemark>
<Placemark>
<description>cottage01
00:01:E3:F5:9D:55</description>
<styleUrl>#Wep </styleUrl>
<visibility>0</visibility>
<Point>
<extrude>1</extrude>
<altitudeMode>relativeToGround</altitudeMode>
<coordinates>-1.81020,51.31047</coordinates>
</Point>
</Placemark>
<Placemark>
<description>ZyXEL7336vik
00:02:CF:E4:5C:31</description>
<styleUrl>#WpaPsk </styleUrl>
<visibility>0</visibility>
<Point>
<extrude>1</extrude>
<altitudeMode>relativeToGround</altitudeMode>
<coordinates>-1.79664,51.07344</coordinates>
</Point>
</Placemark>
</Document>
</kml>
Cheers.