I don't have rtti subscription, i cannot collect data to trace :\. I'm mobile developer, real problem in mobile is making phone talk to cic.
When i have time i will look at the binaries that you sent me. They might have connection strings in it.
Just as an FYI: I was looking into some older white papers I found that BMW published about their Navi systems and Traffic data and it looks like "RTTI" is what BMW calls ANY type of traffic information. In fact, the RDS-TMC traffic data my car gets now comes from a company they contracted to supply the traffic data for both FM radio broadcast AND Internet data delivery. Not really a big "ah-ha" but knowing that the traffic data is coming from the same place and just parsed differently depending on the market and model/optioned vehicle makes me feel more confident that getting any data type will span multiple delivery methods.
I started to dig into the traffic data as I can see it via the iDrive display and after reading the wikis on TMC from openstreetmap I noticed a correlation! Because TMC-FM data has a limited bandwidth, sending a ton of data is not feasible (like all the GPS coords, traffic type, speed of traffic, etc). TMC actually uses a more simple process that leverages the GPS unit's location processing and lookup. (You can see this simplification by viewing the list of reported traffic in iDrive.) Instead of sending gobs of data and coordinates to draw the traffic on the map, like Waze does, TMC-FM will take the closest intersections on said road where the traffic starts and ends as well as the road name/number and direction of travel. I do believe it also reports a level of severity (maybe 1-5 or something) because the traffic colors become more red the more severe the traffic report is.
Taking the data I get from Waze, I think I can parse this down for a TMC-FM/RTTI report as follows:
WAZE DATA:
Code:
{
"alerts": []
, "jams": [{
"country": "US"
, "city": "Lutherville-Timonium, MD"
, "severity": ""
, "delay": 82
, "speed": 2.975
, "type": "NONE"
, "line": [{
"x": -76.637208
, "y": 39.45547
}, {
"x": -76.636583
, "y": 39.455485
}, {
"x": -76.636065
, "y": 39.455522
}, {
"x": -76.635303
, "y": 39.455591
}, {
"x": -76.634862
, "y": 39.455651
}, {
"x": -76.63436
, "y": 39.455734
}, {
"x": -76.633815
, "y": 39.455862
}, {
"x": -76.632918
, "y": 39.456036
}]
, "street": "W Padonia Rd"
, "roadType": 7
}, {
"country": "US"
, "city": "Cockeysville, MD"
, "severity": ""
, "delay": 81
, "speed": 1.7777777777777777
, "type": "NONE"
, "line": [{
"x": -76.631014
, "y": 39.472082
}, {
"x": -76.630866
, "y": 39.473529
}, {
"x": -76.630777
, "y": 39.474231
}]
, "street": "Greenside Dr"
, "roadType": 2
}]
}
Translated into RDS-TMC FM DATA:
Code:
{[
{
"country": "US"
, "city": "Lutherville-Timonium, MD"
, "severity": "1"
, "from": "Deereco Rd"
, "to": "York Rd"
, "direction": "east"
, "street": "W Padonia Rd"
}, {
"country": "US"
, "city": "Cockeysville, MD"
, "severity": "1"
, "from": "Hidey Rd"
, "to": "Warren Rd"
, "direction": "north"
, "street": "Greenside Dr"
}]
}