POI / Speedcam download to your RNS510 - Anyone done it ?

Technical discussion such as Bluetooth, Sat-Nav, iPods, tyres, brakes, all that kind of stuff.
Post Reply
User avatar
uklee
Posts: 671
Joined: Thu Jun 27, 2013 5:58 pm
I drive a: GTS TDI
In: Candy White
With a: Manual box
Options: 14MY GTS TDi 177 RNS510 DAB with Dynaudio ,Parking sensors, 90% tint, Bi-Xenons, Full colour MFC, Winter Pack. MODS- De-Striped ,Reverse Camera Kit ,Power-fold Mirrors, Smokers pack ,Cruise Control, VW Cup spoiler ,VAG-COM tweeks ,LED interior light kit ,MSS Streets suspension kit ,12mm spacers
Location: The Midlands , UK
Contact:

POI / Speedcam download to your RNS510 - Anyone done it ?

Post by uklee »

Hi chaps :) As per the title , has anyone recently successfully loaded any Points of Interest or maybe Speedcams to your rocco's Nav unit ?

How did you do it ? Bought a disk of ebay ? downloaded from another source ? created them yourself ?

I've already had a bit of a search around , but the threads are ages old . Outside of this forum , i found links to an official VW POI app on the german VW website , but you need to have your own 'file' of POI's to load into it -which i haven't got :(

I was kinda hoping that a kindly member on here , who had done it to their own rocco would maybe share their POI file with me via email so that i could put it on my own SD card and load it into my car :D

Lee
metaljay
Posts: 396
Joined: Sat Jan 29, 2011 4:48 pm
I drive a: Scirocco R
In: Candy White
With a: DSG box
Options: Stage 2+ Revo ;)
Location: Derby

Re: POI / Speedcam download to your RNS510 - Anyone done it

Post by metaljay »

Yep I created one myself. I have all the speed cams and all shell garages mapped out (as that's all I use to fill up ;) )

Ill create a guide this Sunday, i have a major delivery at work this week :(
User avatar
wensleydale
Posts: 166
Joined: Sat Dec 24, 2011 12:10 pm
I drive a: 2.0 TDI 140
In: Rising Blue
With a: Manual box

Re: POI / Speedcam download to your RNS510 - Anyone done it

Post by wensleydale »

Very Briefly:

I use the speed camera data from here: http://www.pocketgpsworld.com/modules.php?name=Cameras" onclick="window.open(this.href);return false; (i use "Other - ASC [UK - Speed Zoned Complete | pMobiles: Yes | French: No | Swiss: No ]")
OPTIONAL: I run a custom script to cut the files into my preferred views (I like the option of showing cameras either by speed or type)
Use POInspector from here:http://poinspect0r.blogspot.co.uk/ to create the Personal POI database
then you just copy them in to the car via SD card
skydemon
Posts: 129
Joined: Mon Oct 21, 2013 10:06 pm
I drive a: GT 2.0 TDI 170/184
In: Deep Black
With a: Manual box
Options: R line pedals :-)

Re: POI / Speedcam download to your RNS510 - Anyone done it

Post by skydemon »

Any chance you guys could do an idiots guide. Hero status for the first one!!!!


Sent from my iPhone using Tapatalk
User avatar
wensleydale
Posts: 166
Joined: Sat Dec 24, 2011 12:10 pm
I drive a: 2.0 TDI 140
In: Rising Blue
With a: Manual box

Re: POI / Speedcam download to your RNS510 - Anyone done it

Post by wensleydale »

I've written a guide (attached) which is the method I use to import Speed Camera POI's. A lot of this has been done from memory so please let me know if any of it needs clarifying or just doesn't make sense/work. There is a lot of preparation to be done the first time you create the db, but updating it is easy.
Importing Speed Camera Locations to the RNS.pdf
The process makes use of a VBScript file to modify the camera data and convert it to the format I prefer. In the interest of openness I have attached the code contained in PrepareCameraData.vbs. You can copy everything in the code block and save it as PrepareCameraData.vbs if you don't feel comfortable downloading the file.

Code: Select all

Set objFSO = CreateObject("Scripting.FileSystemObject")

strSourceFolder = "Source Data"
strOutputFolder = "Output Data"

' Clear any files in the output folder
objFSO.DeleteFile(strOutputFolder & "\*.*")

' Open the source folder
Set objSourceFolder = objFSO.GetFolder(strSourceFolder)

Set colFiles = objSourceFolder.Files
' Loop through the list of files and process appropriately
For Each objFile in colFiles
If inStr (objfile.Name, ".asc") Then
    If inStr (objFile.Name, "specs") Then 
        Call addToFile(objFile.Name, "Average Speed")
    ElseIf inStr (objFile.Name, "redlight") Then
        Call addToFile(objFile.Name, "Red Light")
    ElseIf inStr (objFile.Name, "_mobile_") Then
        Call addToFile(objFile.Name, "Mobile Confirmed")
    ElseIf inStr (objFile.Name, "_pmobile_") Then
        Call addToFile(objFile.Name, "Mobile Predicted")
    ElseIf inStr (objFile.Name, "gatso") Then
        Call addToFile(objFile.Name, "Fixed")
    End If
  End If
Next
For Each objFile in colFiles
  If inStr (objfile.Name, ".asc") Then
    If inStr (objFile.Name, "20") Then 
        Call addToFile(objFile.Name, "20")
    ElseIf inStr (objFile.Name, "30") Then
        Call addToFile(objFile.Name, "30")
    ElseIf inStr (objFile.Name, "40") Then
        Call addToFile(objFile.Name, "40")
    ElseIf inStr (objFile.Name, "50") Then
        Call addToFile(objFile.Name, "50")
    ElseIf inStr (objFile.Name, "60") Then
        Call addToFile(objFile.Name, "60")
    ElseIf inStr (objFile.Name, "70") Then
        Call addToFile(objFile.Name, "70")
    ElseIf inStr (objFile.Name, "var") Or inStr (objFile.Name, "tba") Then
        Call addToFile(objFile.Name, "VAR")
    End If
  End If
Next
Wscript.Echo "Done"

Sub addToFile(strInputFile, strCategory)
    strDestName = strOutputFolder &"\Speed Camera " & strCategory & ".asc"
    Set objSourceFile = objFSO.OpenTextFile (objSourceFolder & "\" & strInputFile, 1)
    Set strOutputFile = objFSO.OpenTextFile (strDestName,8,True)
    Do Until objSourceFile.AtEndOfStream
        strLine = objSourceFile.ReadLine
        If instr (strLine, ";Longitude,Latitude,Name") = False _And inStr (strLine, "Copyright PocketGPSWorld.com") = False Then
            strOutputFile.WriteLine(strLine)
        End If
    Loop
    strOutputFile.Close
    objSourceFile.Close
End Sub
You do not have the required permissions to view the files attached to this post.
User avatar
uklee
Posts: 671
Joined: Thu Jun 27, 2013 5:58 pm
I drive a: GTS TDI
In: Candy White
With a: Manual box
Options: 14MY GTS TDi 177 RNS510 DAB with Dynaudio ,Parking sensors, 90% tint, Bi-Xenons, Full colour MFC, Winter Pack. MODS- De-Striped ,Reverse Camera Kit ,Power-fold Mirrors, Smokers pack ,Cruise Control, VW Cup spoiler ,VAG-COM tweeks ,LED interior light kit ,MSS Streets suspension kit ,12mm spacers
Location: The Midlands , UK
Contact:

Re: POI / Speedcam download to your RNS510 - Anyone done it

Post by uklee »

Hi Guys , firstly - Sincere apologies for the very late reply :(

i now have my full complement of personal POI's installed including the speedcams

I actually sort of followed two different suggestions ( Metaljay's links and Wensleydale's guide) and mixed and matched the sources / methods to get what i wanted .

These are the sites that i ended up visiting / joining and donating to get the map content and instructions

http://www.gps-data-team.com/
http://www.briskoda.net/forums/topic/24 ... ader-site/
http://www.pocketgpsworld.com/

I used PoiEdit 2007 & Z RNS510 poi inspector v5.8 to edit and create my PersonalPOI file

I even pulled the POI's off my TomTom's hard drive and converted them to the correct format , before adding them to my POI folder and then installing them on my RNS510 !

I did find it pretty complicated , and if anyone asked me - i'd struggle to tell them exactly how i did it ( it was a few weeks ago !) Anyway , i managed to muddle through in the end, and i just wanted to reply to this thread and let you know that I'd done it - and most importantly - to thank you both for your help :yes: :yes: :yes:

Lee
Bizmo
Posts: 28
Joined: Thu Aug 21, 2014 7:05 pm
I drive a: GT 2.0 TDI 140/150
In: Deep Black
With a: Manual box
Options: VAGCOM tweaks
- Beep when lock/unlock
- Big MPH display
- DRL delete
- Needle sweep
Bluetooth
Cruise control
OSRAM Nightbreaker headlights
LED interior lights
Covered cupholder
Rear cupholder

Re: POI / Speedcam download to your RNS510 - Anyone done it

Post by Bizmo »

is there a way to get the RNS to alert you when you are coming up to speed camera this way or do you have to look at the map?
User avatar
wensleydale
Posts: 166
Joined: Sat Dec 24, 2011 12:10 pm
I drive a: 2.0 TDI 140
In: Rising Blue
With a: Manual box

Re: POI / Speedcam download to your RNS510 - Anyone done it

Post by wensleydale »

No-one has discovered how to do that yet. There are columns in the POI db for speed camera alerts, I've had a play and not been able to get it to work, and I've not seen anyone else manage it either.
Post Reply