Traffic Collision mapping

819
4
07-20-2011 02:54 PM
TomMagdaleno
Occasional Contributor III
I was wondering what other cities/counties, etc are doing for traffic collision mapping of accidents.  I have noticed their are three basic schools of thought on how to collect the data, they are:

1.  Snap the accident point to the nearest intersection.

2.  Have police officers take Latitude/Longitude at the point of the accident.

3.  Record them as Primary Street and Distance from Cross Street.

We currently use method 3, they are entered by a police officer into an Access database.  The database has fields for "at intersection" true/false, �??distance�?� from intersection in feet and �??direction�?� from intersection. 
  We export out a table and run an Avenue code that will place the points.  If it is at the intersection a point is placed where the street centerline crosses. If it is a distance from the intersection the point is placed on the �??primary�?� street a certain distance and direction (N,E,S,W) from the intersection on the �??secondary street�?� .
I'm trying to find a modern way to do this.  I am not a python expert, so I haven't had luck doing it that way.  I was even thinking of designing a flex app and giving the police officers access to it to place their points.  What method are you using?
Tags (1)
0 Kudos
4 Replies
BrianGeiger
New Contributor
Kansas DOT uses the third method, although I think they're trying to switch to a Lat/Long eventually.
0 Kudos
TomMagdaleno
Occasional Contributor III
Thanks for the reply GeigerBC.  What process do you use to plot the collisions?  Do you do them manually or do you have some python code to accomplish the task?  We have an old Avenue code that does the job, but I am trying to update it.
0 Kudos
BrianGeiger
New Contributor
I actually ended up hand plotting them for a short 3 mile segment in Google Earth for one project.  We had access to the actual crash reports to verify the locations as well.

Lately we've had better luck obtaining pre-plotted points from a client as shape files, but we've not seen the crash reports to know how accurate the points are plotted.  Sorry I couldn't be more help.
0 Kudos
weipan
by
New Contributor
We aren using the method 2 and method 3. If no (X,Y) or (Latitude, Longitude), just using the address locator to geo code the collision point.

I was wondering what other cities/counties, etc are doing for traffic collision mapping of accidents.  I have noticed their are three basic schools of thought on how to collect the data, they are:

1.  Snap the accident point to the nearest intersection.

2.  Have police officers take Latitude/Longitude at the point of the accident.

3.  Record them as Primary Street and Distance from Cross Street.

We currently use method 3, they are entered by a police officer into an Access database.  The database has fields for "at intersection" true/false, �??distance�?� from intersection in feet and �??direction�?� from intersection. 
  We export out a table and run an Avenue code that will place the points.  If it is at the intersection a point is placed where the street centerline crosses. If it is a distance from the intersection the point is placed on the �??primary�?� street a certain distance and direction (N,E,S,W) from the intersection on the �??secondary street�?� .
I'm trying to find a modern way to do this.  I am not a python expert, so I haven't had luck doing it that way.  I was even thinking of designing a flex app and giving the police officers access to it to place their points.  What method are you using?
0 Kudos