Simplify building with orthogonal angles aka creating rectangular building outlines

5651
4
Jump to solution
10-16-2015 01:18 PM
MarkVolz
Occasional Contributor III

Hello,

Our LiDAR data included a polygon building footprints.  unfortunately the building footprints look more like blobs than actual building footprints.  I would like to know if there is a way to convert the blobs into a generalized building footprint such that:

  1. All of the angles within a single building are at 90 degree angles.
  2. The entire building may be rotated if necessary - if the building itself is rotated like in the image below
  3. The building should not include any noise out of the predominant footprint.  The highlighted areas in the image below should be removed.

Please note:  I am not necessarily looking for "accurate" footprints.  Instead I just footprints that (without any air photos turned on) look like they possibly could be building footprints.

Thanks

Image 1.  Building footprints in purple.  The building simplify and polygon simplify tasks help create nicer looking polygons but fail to create rectangular polygons that users would otherwise expect.

0 Kudos
1 Solution

Accepted Solutions
ClaytonCrawford
Esri Contributor

GP tools in Pro are reading and writing the same data formats as 'Desktop'. The difference here is just what host is being used to run the tool. Yes, the tool will be in 'Desktop' (aka 'Classic') - that's what I meant by 10.4. Sorry, I know it's a bit confusing.

View solution in original post

4 Replies
DanPatterson_Retired
MVP Emeritus

You can rule out

  • convex hulls
  • minimum area bounding rectangles (oriented) (MABR)
  • some auto truncate algorithm

You could try

  • Simplify Polygon—Help | ArcGIS for Desktop
  • the following workflow on features with exterior fiddly bits
    • buffer inward ( to pinch off extraneous bits) ,
    • calculate area and remove the bits smaller than the desired minimum size,
    • followed by an outward buffer by the same amount as the inner buffer
    • perform a MABR now
  • for features with corners etc pinched off
    • MABR
  • manually edit
  • live with it

​MABR can be found in Bounding Containers

it includes other container types.  Useable with shapefiles as input and outputs... move to a gdb when you are done.

Some images Re: Ranking parcels according to the shape of their geometry (square\rectangular),

ClaytonCrawford
Esri Contributor

RegularizeBuildingFootprint was made for this - available in ArcGIS Pro 1.2 now. Will be in 10.4.

MichaelVolz
Esteemed Contributor

Can data modified in ArcGIS Pro be converted/exported to a format where it can still be used in ArcGIS Desktop?

Does ESRI have plans to make the RegularizeBuildingFootprint tool available in ArcGIS Desktop?

0 Kudos
ClaytonCrawford
Esri Contributor

GP tools in Pro are reading and writing the same data formats as 'Desktop'. The difference here is just what host is being used to run the tool. Yes, the tool will be in 'Desktop' (aka 'Classic') - that's what I meant by 10.4. Sorry, I know it's a bit confusing.