<br><font size=2><tt>> 1. Matching Bridges on Network A<br>
> 2 .Modifying the Nework A to Network B<br>
> 3. Finding Bridges on the Network B.<br>
</tt></font>
<br><font size=2><tt>How much are you doing in PostGIS and how much in
Arc?</tt></font>
<br><font size=2><tt>Are you familiar with all the nifty functions in PostGIS,
like Buffer() and Simplify() and sooo many more?</tt></font>
<br>
<br><font size=2><tt>You could even make a simplified "view"
directly off of the original data like:</tt></font>
<br>
<br><font size=2><tt>CREATE VIEW roads_simple as (</tt></font>
<br><font size=2><tt>SELECT Simplify(<geometry>), roadid </tt></font>
<br><font size=2><tt>FROM roads</tt></font>
<br><font size=2><tt>);</tt></font>
<br>
<br><font size=2><tt>Of course, if your dataset is huge this isn't the
best approach - but I just love the fact that you can do it!</tt></font>
<br>
<br><font size=2><tt>Tyler</tt></font>