In the late 1990's we received a large-scale update to all of our waterbodies and watercourses, covering some 55 NTS map sheets and an unremembered thousands number of features. We needed to keep the value added attributes of our old hydrology (lake names, surface elevation, etc.) and replace the geometry. The geometry of old and new were close enough that we could guarantee the centroids of each polygon would still be bounded by the new polygon boundaries. So:
Data_Cov has the attributes we need in Arcinfo region subcoverages; the geometry is unwanted.Geometry_Cov has the geometry we need, but no attribute data.Isn't there some way, for example, to copy the attributes of Data_Cov.region to Data_Cov.labelpoint and then do a point-in-polygon overlay with Geometry_Cov (aka IDENTITY)?
This should be an easy operation, but after days of experimenting and reading the docs the whole office (Gerry, Matt, Gary) was completely stumped.
Instead of bringing the attributes to the geometry, bring the geometry to the attributes. Special thanks to the ESRI-L mailing list, again, and Andrew Makepeace, again:
REGIONPOLYdata_cover arcsgeometry_cover arcs to the data_cover
Arc: REGIONPOLY data_cov data_poly regname Arc: ARCEDIT Arcedit: snapping off; nodesnap off; arcsnap off #!IMPORTANT! [1] Arcedit: EDITCOVER data_poly ARC Arcedit: SELECT all Arcedit: DELETE Arcedit: GET geometry_cov Arcedit: CLEAN 0.001 Arcedit: SAVE Arcedit: QUIT Arc: DROPITEM data_poly.pat data_poly.pat data_cov-id Arc: POLYREGION data_poly data_poly regname
[1] Turning the snaps off is important to preserve the good geometry as-is-where-is.