0

I'm trying to match polyline layer features up to polygon edges in a different layer quickly. I have a huge extent of polygons (river) and separate lines (bank features) that I need to get to follow/match the polygon outlines.

Spatial adjustment not working, reshape/modify features will be too time-consuming with snapping each vertex...

Is there a quicker easier way? I have ArcMap 9.2.

PolyGeo
  • 65,136
  • 29
  • 109
  • 338
Becky
  • 81
  • 3
  • You could try a nearest Join, however, we would be able to give you more specific help if you tell us what software you are using. – Dan_h_b Nov 24 '15 at 12:21
  • Thanks for adding the software. Do you want to keep the polyline geometry? Or do you just need its attributes? i.e. do you just want the polyline attributes assigned to the polygon features? – Dan_h_b Nov 24 '15 at 12:23
  • Unfortunately, need to keep it as a separate polyline feature complete with attributes... rather than just attach attributes to polygon... – Becky Nov 24 '15 at 12:25
  • Try a spatial join http://gis.stackexchange.com/a/111011/53268 – wittich Nov 24 '15 at 12:50
  • Unfortunately I don't want to just find out distances... I want to move the polyline to match the polygon outline.. – Becky Nov 24 '15 at 12:52
  • There are several questions on this topic here, but unfortunately many of them rely on tools that I think were introduced after your version of Arc - particularly Snap and possibly Align to Shape. You might check to see if either are available, or review the following questions/answers: http://gis.stackexchange.com/questions/122934/ or http://gis.stackexchange.com/questions/141361/ or http://gis.stackexchange.com/questions/3428/ or http://gis.stackexchange.com/questions/141720/ or http://gis.stackexchange.com/questions/98469/ – Chris W Nov 28 '15 at 19:42
  • Do note that Integrate will alter both layers, and trace/reshape is a shortcut to snapping each vertex (and is definitely available at your level, though still time consuming). – Chris W Nov 28 '15 at 19:42

1 Answers1

2

To trace the lines onto polygons, try using the Integrate tool:

Compares features and makes any lines, points, or vertices within a certain distance range identical or coincident.

To match the attributes of the polygons to the lines, you can use the spatial join by @wittich or other similar methods described in Match features that are spatially similar with ArcGIS?.

Since you're on 9.2, unfortunately you won't have the Conflation toolset.

John
  • 954
  • 4
  • 10
  • Note that Integrate will move/modify both layers, so if you're only wanting to adjust one layer to match another, it isn't suitable. – Chris W Nov 28 '15 at 19:38