View previous topic :: View next topic |
Author |
Message |
RichardM Lifetime Member
Joined: Jun 13, 2005 Posts: 140
|
Posted: Tue Aug 08, 2023 3:54 pm Post subject: Camers only warnig one way |
|
|
MOBILE:167977@50 camera on A49 is only warning going south, despite the fact that it is listed as reversible, on my Samsung using STA. Previously it has warned in both directions but not any longer. Is this a CameraAlert, STA or my phone problem?
Hope someone can help rectify this particular camera warning.
Thanks
RichardM |
|
Back to top |
|
|
Kremmen Pocket GPS Verifier
Joined: Mar 03, 2006 Posts: 7129 Location: Reading
|
Posted: Tue Aug 08, 2023 4:02 pm Post subject: |
|
|
Yes, it's showing as reversible
Maybe @Leo_A can check
I don't have the wherewithal to check the STA database entry till the weekend. _________________ DashCam:
Viofo A119 V3 |
|
Back to top |
|
|
MaFt Pocket GPS Staff
Joined: Aug 31, 2005 Posts: 15271 Location: Bradford, West Yorkshire
|
Posted: Tue Aug 08, 2023 6:00 pm Post subject: |
|
|
Nothing has changed on that camera since 2015 so I suspect there's a change in settings in STA maybe? The heading is still set to 202 and reversible.
MaFt |
|
Back to top |
|
|
Kremmen Pocket GPS Verifier
Joined: Mar 03, 2006 Posts: 7129 Location: Reading
|
Posted: Fri Aug 11, 2023 7:32 am Post subject: |
|
|
Camera entry in STA database :
X, Y, 5, 50, 2, 202 (X, Y is Lat Long, left out deliberately)
So how does STA handle direction "2" ? _________________ DashCam:
Viofo A119 V3 |
|
Back to top |
|
|
MaFt Pocket GPS Staff
Joined: Aug 31, 2005 Posts: 15271 Location: Bradford, West Yorkshire
|
Posted: Fri Aug 11, 2023 12:30 pm Post subject: |
|
|
From my notes:
1 = single direction
2 = reversible |
|
Back to top |
|
|
Kremmen Pocket GPS Verifier
Joined: Mar 03, 2006 Posts: 7129 Location: Reading
|
Posted: Fri Aug 11, 2023 2:26 pm Post subject: |
|
|
and type 5 is 'risk of mobile speed camera'
We need Leo to check _________________ DashCam:
Viofo A119 V3 |
|
Back to top |
|
|
MaFt Pocket GPS Staff
Joined: Aug 31, 2005 Posts: 15271 Location: Bradford, West Yorkshire
|
Posted: Fri Aug 11, 2023 3:25 pm Post subject: |
|
|
For future reference:
Camera types:
1 - fixed
2 - redlight with speed
3 - redlight
4 - specs
100010 - specs (start)
100011 - specs (end)
100013 - exit specs (hidden marker to shut off averaging)
5 - mobile / pmobile |
|
Back to top |
|
|
Kremmen Pocket GPS Verifier
Joined: Mar 03, 2006 Posts: 7129 Location: Reading
|
Posted: Fri Aug 11, 2023 5:56 pm Post subject: |
|
|
Leo has some additional ones :
Fixed 1 & 192
Variable 100001
Redlight and speed 2 & 68
Average speed zone 4, 100010,100011, 227
Mobile 100400
Redlight 3
Risk of mobile 5 & 193
Virtual average speed end 1000013
Average and instant 100015
Average and instant end 100016
Tunnel speed camera 100020
Tunnel exit speed camera 100021
Multifunction speed camera 100040 _________________ DashCam:
Viofo A119 V3 |
|
Back to top |
|
|
MaFt Pocket GPS Staff
Joined: Aug 31, 2005 Posts: 15271 Location: Bradford, West Yorkshire
|
Posted: Sun Aug 13, 2023 4:49 pm Post subject: |
|
|
Kremmen wrote: | Leo has some additional ones :
|
The ones in my post above are the only ones used in the PGPSW files.
Code: | switch ($type){
case "REDSPEED":
$type = "2";
break;
case "REDLIGHT":
$type = "3";
break;
case "SPECS":
case "tSPECS":
$type = "4";
//https://www.pocketgpsworld.com/modules.php?name=Forums&file=viewtopic&p=643702#643702
if ($specsstatus == "START" || $specsstatus == "MIDDLE"){ $type="100010"; }
if ($specsstatus == "END"){ $type="100011"; }
//echo $specsstatus.$type;
break;
case "EXITSPECS":
$type="100013"; // will be 100013 once the app is set up to use them
break;
case "MOBILE":
case "pMOBILE":
$type = "5";
break;
default: // all other/static cams
$type = "1";
break;
} |
|
|
Back to top |
|
|
Kremmen Pocket GPS Verifier
Joined: Mar 03, 2006 Posts: 7129 Location: Reading
|
Posted: Mon Aug 14, 2023 4:29 am Post subject: |
|
|
_________________ DashCam:
Viofo A119 V3 |
|
Back to top |
|
|
|
Posted: Today Post subject: Pocket GPS Advertising |
|
|
We see you’re using an ad-blocker. We’re fine with that and won’t stop you visiting the site.
Have you considered making a donation towards website running costs?. Or you could disable your ad-blocker for this site. We think you’ll find our adverts are not overbearing!
|
|
Back to top |
|
|
|