NetStumbler.org Forums

Go Back   NetStumbler.org Forums > Software > Windows
Register Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
Old 05-01-2004   #1 (permalink)
localhost
I'm always at 127.0.0.1
 
localhost's Avatar
 
Join Date: Mar 2004
Posts: 26
mappoint 2004 bug?

I wrote a program that converts netstumbler summary files into tab delimited files for importing with mappoint.

part of the script is that it breaks apart the channel bits into comma separated channels. i.e. 0440 becomes 6,10.

but the problem is when i import it into netstumbler, everything works fine except the channel column.

ANY data in the channel column with a comma gets replaced with "", while anything without it works fine.

I tried copying/pasting the data into an excel spreadsheet and then importing that into netstumbler and it worked like a charm.

has anyone else noticed this bug? any workarounds?
localhost is offline   Reply With Quote
Old 05-01-2004   #2 (permalink)
iceburn68
Registered Member
 
iceburn68's Avatar
 
Join Date: Feb 2004
Posts: 206
Quote:
Originally Posted by localhost
I wrote a program that converts netstumbler summary files into tab delimited files for importing with mappoint.

part of the script is that it breaks apart the channel bits into comma separated channels. i.e. 0440 becomes 6,10.

but the problem is when i import it into netstumbler, everything works fine except the channel column.

ANY data in the channel column with a comma gets replaced with "", while anything without it works fine.

I tried copying/pasting the data into an excel spreadsheet and then importing that into netstumbler and it worked like a charm.

has anyone else noticed this bug? any workarounds?
Wait, re-write that making sure you used NS and Mappoint in the right places, cause how i read it now I don't see what your trying to accomplish . . .
__________________
My Wardriving Website
iceburn68 is offline   Reply With Quote
Old 05-01-2004   #3 (permalink)
localhost
I'm always at 127.0.0.1
 
localhost's Avatar
 
Join Date: Mar 2004
Posts: 26
Sorry, you're right. here is the fix.


I wrote a program that converts netstumbler summary files into tab delimited files for importing with mappoint.

part of the script is that it breaks apart the channel bits into comma separated channels. i.e. 0440 becomes 6,10.

but the problem is when i import it into mappoint, everything works fine except the channel column.

ANY data in the channel column with a comma gets replaced with "", while anything without it works fine.

I tried copying/pasting the data into an excel spreadsheet and then importing that into mappoint and it worked like a charm.

has anyone else noticed this bug? any workarounds?
localhost is offline   Reply With Quote
Old 05-01-2004   #4 (permalink)
iceburn68
Registered Member
 
iceburn68's Avatar
 
Join Date: Feb 2004
Posts: 206
Ok, I'm looking at an export as we speak, but I'm not sure what channel bits is? I get 400, 800, 200, 40, 20, 10, etc . . .

So what exactly are those numbers?

Once i know what they are suppost to convert into I can help you with your script?

also, just a question but is there a reason you don't like using Stumbverter?

I know the streets and trips community would like this script your writing though . . . they are outta luck in 0.4.0 last i heard . . .
__________________
My Wardriving Website
iceburn68 is offline   Reply With Quote
Old 05-01-2004   #5 (permalink)
localhost
I'm always at 127.0.0.1
 
localhost's Avatar
 
Join Date: Mar 2004
Posts: 26
its the 9th field i think in the summary file...

its a sorta-bit-like setup: here is how it goes

1234 -

4 represents channels 1, 2 and 3
3 represents channesl 4,5,6,7
2 represents 8,9,10,11
1 represents 12,13,14

so

4884 would be channels 3, 7, 11, and 14

but if i break that number into 3,7,11,14 then when i import it mappoint will just replace it with ""

a channel bit of 0001 which is channel 1 would show up fine.


im not too big on stumbverter because you dont have too much control over it and i also have my program generate statistics about the data.
localhost is offline   Reply With Quote
Old 05-01-2004   #6 (permalink)
Thorn
Did you do the math?
 
Thorn's Avatar
 
Join Date: Apr 2002
Location: Villa Straylight
Posts: 10,360
localhost,
Try changing the comma to some other punctuation symbol such as a dash. I've encountered a similare problem with S&T converting fields that contain commas. I suspect it has to do with internal conversions on CSV imports, although it is purely a guess.

==================================================

Quote:
Originally Posted by iceburn68
Ok, I'm looking at an export as we speak, but I'm not sure what channel bits is? I get 400, 800, 200, 40, 20, 10, etc . . .

So what exactly are those numbers?
...
Perhaps you should consider using the SEARCH function before posting.

http://forums.netstumbler.com/showth...t=channel+bits

Quote:
Originally Posted by iceburn68
I know the streets and trips community would like this script your writing though . . . they are outta luck in 0.4.0 last i heard . . .
Say who? My script works just fine. (Again, try the SEARCH.)
__________________
Thorn
"Read Altas Shrugged. Compare it to today. Repeat as necessary"
Thorn is offline   Reply With Quote
Old 05-01-2004   #7 (permalink)
iceburn68
Registered Member
 
iceburn68's Avatar
 
Join Date: Feb 2004
Posts: 206
Now I'm really confused, if I put any kind of symbol in, your right it shows up blank, even if I use ":" marks which are used in the MAC address without problem, it shows up blank . . . I'll keep trying stuff, this has become quite the challenge . . .
__________________
My Wardriving Website
iceburn68 is offline   Reply With Quote
Old 05-01-2004   #8 (permalink)
localhost
I'm always at 127.0.0.1
 
localhost's Avatar
 
Join Date: Mar 2004
Posts: 26
the problem is not in the delimiter itself. i used tabs for the sole reason that i didnt want it to confuse it with a .csv file.

the problem lies in the number of delimiters per element.

0:0:4:3 and 14:0:0:3 works fine
4:3 and 14:3 does not


i think it EXPECTS a certain number of delimiters based on what it has already read in ... or something like that. so far the only way i've found around is to just do it like the first example that i said in this reply
localhost is offline   Reply With Quote
Old 05-01-2004   #9 (permalink)
iceburn68
Registered Member
 
iceburn68's Avatar
 
Join Date: Feb 2004
Posts: 206
Here is one solution I found, make it look like hte following, without hte quotes: "[2,3,11]" . . . seemed to work for me . . .
__________________
My Wardriving Website
iceburn68 is offline   Reply With Quote
Old 05-01-2004   #10 (permalink)
iceburn68
Registered Member
 
iceburn68's Avatar
 
Join Date: Feb 2004
Posts: 206
Quote:
Originally Posted by Thorn
localhost,
Try changing the comma to some other punctuation symbol such as a dash. I've encountered a similare problem with S&T converting fields that contain commas. I suspect it has to do with internal conversions on CSV imports, although it is purely a guess.

==================================================


Perhaps you should consider using the SEARCH function before posting.

http://forums.netstumbler.com/showth...t=channel+bits


Say who? My script works just fine. (Again, try the SEARCH.)
Sorry bout that . . .

A. I thought i was having more of a conversation with him thats why i asked him about the bits

B. I didn't know you wrote a script for Streets and Trips, I just remember someone compalining cause StreetStumbler no longer worked, since I've upgraded to Mappoint I haven't been following it anymore, my appologies.
__________________
My Wardriving Website
iceburn68 is offline   Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Google
 
Web NetStumbler.org

All times are GMT -7. The time now is 07:21 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0 ©2007, Crawlability, Inc.


All messages express the views of the author and are for entertainment purposes only. Netstumbler.org cannot be held responsible for the authenticity of the content or the actions of its members. By using this site and its services, you warrant that you will not post any messages that are discriminating, obscene, hateful, threatening, or otherwise violates any laws and you release Netstumbler.org from any future claims of any kind whatsoever including, but not limited to, addiction and loss of productivity. All forum messages, private messages and any other content are properties of Netstumbler.org. Even if publicly available, personal or copyrighted information are not to be posted without the consent of the owner. Distribution of licensed and copyrighted materials in any way not endorsed by the copyright owner is strictly prohibited. You may not use this site and its resources to spam other sites or individuals or perform any action that violates any law. Items sold or bought in the For Sale forum are sold as is and no warranty or insurance of any kind is provided. Netstumbler.org cannot be held responsible for the outcome of any transactions and no warranty of any kind is provided, either express or implied. Vulgar words are not allowed in the subject lines ; they may be used in the message body in any forum. The Administrator, Super Moderators and Moderators of Netstumbler.org have the right to remove, edit, move or close any thread for any reason and to reveal your identity and other known information in the event of a complaint or legal action arising from any message posted by you.