<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Polygon Width in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56925#M1943</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You could probably even get the base width using a Python expression in the field calculator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See this: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002z0000001s000000"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002z0000001s000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The "built-in" .hullrectangle geometry property gives you the coordinate pairs of the corners of the convex hull rectangle that encompasses the extent of a polygon. Think of it as an extent polygon that is tilted in such a way to minimize the extent area.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The !Shape.hullRectangle! expression returns a string like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;611210.287367493 1143140.09588692 611179.291388619 1143388.50437016 611781.906192586 1143463.69759822 611812.90217146 1143215.28911498&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where the 1st and 2nd coordinate pairs "seem" to always describe the WIDTH (not the length) of the rectangle, which would be your maximum base width. What's that Pythag. theorem again?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Getting the minimum base width (the skinny part at the top of your trapezoids) would be quite tricky. However, if there are always only 4 coordinate that make up the trapezoid shape, well then that would be easy.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Dec 2011 17:14:53 GMT</pubDate>
    <dc:creator>ChrisSnyder</dc:creator>
    <dc:date>2011-12-15T17:14:53Z</dc:date>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56922#M1940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi there,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm having a problem calculating polygon width. Essentially I have a number of polygons (1000+) that are all irregular, majority trapezoids but some others that probably don't even constitute a shape. What i want to do is find out the width of the polygons at their base (lets call this the shortest width of the trapezoid) and at their top (the largest width of the trapezoid). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas on how I could go about this? Attached is a picture of what I'm dealing with here:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:07:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56922#M1940</guid>
      <dc:creator>JontyKnox</dc:creator>
      <dc:date>2011-12-15T16:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56923#M1941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Example of polygons I have to calculate width for:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:10:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56923#M1941</guid>
      <dc:creator>JontyKnox</dc:creator>
      <dc:date>2011-12-15T16:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56924#M1942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you have ArcGIS 10, then use bounding containers with the extent rectangle option, this will provide the base information that you need.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/gallery/file/geoprocessing/details?entryID=3D230972-1422-2418-34A5-2F3FFF97C238"&gt;http://resources.arcgis.com/gallery/file/geoprocessing/details?entryID=3D230972-1422-2418-34A5-2F3FFF97C238&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 16:48:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56924#M1942</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2011-12-15T16:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56925#M1943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You could probably even get the base width using a Python expression in the field calculator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See this: &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002z0000001s000000"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002z0000001s000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The "built-in" .hullrectangle geometry property gives you the coordinate pairs of the corners of the convex hull rectangle that encompasses the extent of a polygon. Think of it as an extent polygon that is tilted in such a way to minimize the extent area.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The !Shape.hullRectangle! expression returns a string like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;611210.287367493 1143140.09588692 611179.291388619 1143388.50437016 611781.906192586 1143463.69759822 611812.90217146 1143215.28911498&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Where the 1st and 2nd coordinate pairs "seem" to always describe the WIDTH (not the length) of the rectangle, which would be your maximum base width. What's that Pythag. theorem again?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Getting the minimum base width (the skinny part at the top of your trapezoids) would be quite tricky. However, if there are always only 4 coordinate that make up the trapezoid shape, well then that would be easy.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 17:14:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56925#M1943</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2011-12-15T17:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56926#M1944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;While the bounding tool did work on normal polygons, as you can see from the attached images, the irregularity of the ones I am dealing with, did not really work out:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried convex hull, which did work, but did not provide the shortaxis etc that the bounding with rectangle did.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 18:30:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56926#M1944</guid>
      <dc:creator>JontyKnox</dc:creator>
      <dc:date>2011-12-15T18:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56927#M1945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Chris,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The tricky part as you identified is figuring out the skinny part of the trapezoid, and many of my polygons also don't have just the 4 coordinates... It's been giving me a real headache. I'm going to have a swing at the python you showed me though. See if it yields any results. I'll let you know how it goes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jonty&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 18:38:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56927#M1945</guid>
      <dc:creator>JontyKnox</dc:creator>
      <dc:date>2011-12-15T18:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56928#M1946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I wonder if you could simplify all the polygons that had &amp;gt; 4 verticies to the point where they had only four constitient verticies (maybe uysing the SimplifyPolygon tool). Probably have to be scripted to keep checking/adjusting the tolerances and resulting vetex counts (feature by feature) untill you get the magic count of four verticies.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then examining the length of the (now exactly 4 sided) polygon edges, where the two shortest edges will be your min/max base widths (aka the trapezoid top and bottom).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 19:50:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56928#M1946</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2011-12-15T19:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56929#M1947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If each of your trapezoids has just four corners, or if you can use Simplify Polygon to get rid of extra vertices, then you can try the following (ArcInfo licensing):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Run the Minimum Bounding Geometry tool RECTANGLE_BY_WIDTH to get bounding rectangles from the trapezoids; specify to output the characteristic attributes. The resulting MBG_Width values would be the larger base of the trapezoids (assuming the bases are shorter than the sides).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Use Split Line At Vertices to get four lines from each trapezoid or rectangle; each line carrries its ORIG_FID (original polygon id).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Use Summary Statistics to get the Minimum value of the shape_length, using the ORIG_FID as the Case Field. This should give you the shorter base width for each trapezoid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does that help?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2011 20:46:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56929#M1947</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2011-12-15T20:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56930#M1948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Would you entertain a method that would give approximate widths (say within 10ft) of the true width?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2011 00:01:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56930#M1948</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2011-12-16T00:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56931#M1949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;One genreally accepted way of measuring irregular polygons is to get the extream length, and then find the perpendicular width half way between the ends. That is how I approached the problem for a system I built a couple years ago.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I took the polygon, and generated a near table for points created from all the verticies. I then found the maximum length, and the pair of points to which that length referred.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I genereated a line between these points (the length of the polygon), then rotated the line 90° and clipped it with the polygon. The length of that clipped line is the width.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With this method, the length is exact, and is the greatest overall length. The width is a conventional width. It worked for me because I was most concerned with the extream length and was content to approximate the width.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could use the length line (before rotation) to perform another near distance calculation to find the polygon vertex points furthest from that line in either direction. Adding the two distances (furthest distance to the left and furthest to the right) gives the overall width of the polygon, square to the longest dimension line.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2011 13:37:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56931#M1949</guid>
      <dc:creator>markdenil</dc:creator>
      <dc:date>2011-12-16T13:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56932#M1950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Now that time has passed ... in ArcGIS 10 the Minimum Bounding Geometry tool with the RECTANGLE_BY_WIDTH gives you the maximum length and maximum width in the output attributes, MBG_LENGTH and MBG_WIDTH (I suggested this in my previous response). And it is available with ArcView license.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2011 15:50:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56932#M1950</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2011-12-16T15:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56933#M1951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A very good approximation of the trapezoid top width could be had using a version the "divide and conquer" method described above. This method would not require any simplification of the shape, but would require a bunch of python code, and it assumes that you have a shape that is somewhere in between a rectangle and a triangle (e.g. an elongated trapezoid). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We've already demonstrated that it's pretty easy to get the length of the bottom width edge, and the constituent coordinates of it... The idea then (somewhat similar to the one presented above), would be to derive the minimum convex rectangle, and then construct a series of line bisectors (the more bisectors the better approximation) where the bisectors are at equal increments, say 1% increments, from the right most (or left most) end of the rectangle - we'll call that the "origin" end. The method then would be to "clip" the bisector lines to the trapezoid polygon and then examine the resulting lengths as a function of the distance from the origin end... The linear regression of these lengths/increment distances would then describe the tapper of the trapezoid, and thus, knowing the tapper equation and the rectangle length , you could then estimate an approximate width of the top end of the trapezoid.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2011 16:29:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56933#M1951</guid>
      <dc:creator>ChrisSnyder</dc:creator>
      <dc:date>2011-12-16T16:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56934#M1952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The maximum length and maximum width obtained from the Minimum Bounding Geometry tool with the RECTANGLE_BY_WIDTH option would be pretty close to the height (h) and the bottom width (b) of the trapezoid. You have the trapezoid's shape_area (or you can easily calculate it). &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We know the trapezoid area equation as:&amp;nbsp; A = (1/2) x h (a + b)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then the top width of the trapezoid would be:&amp;nbsp; a = (2 x A / h) - b&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that gives you good enough estimates, if the shapes are very close to standard trapezoids. No coding is needed.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Dec 2011 19:39:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56934#M1952</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2011-12-16T19:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56935#M1953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi guys,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for all the replies. So I finally figured it out, what I did was this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bounding by Rectangle&amp;gt; Open attribute table of new .shp&amp;gt; Add field-"Bottom_Width"&amp;gt; Field Calculator- "Bottom Width= (2*Shape_Area/Shape length)-MBG_Width" &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;'MBG Width' is the maximum shape width at the top of the trapezoid defined by the bounding rectangle.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;While this does work, it is not as accurate as it could be, some of my trapezoids are slightly more irregular than I would like so it means there is between a 0.5-2.5ft margin of error. This was acceptable but it would be an interesting task to try and improve upon this in the future.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for all the help, it was much appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Dec 2011 14:24:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56935#M1953</guid>
      <dc:creator>JontyKnox</dc:creator>
      <dc:date>2011-12-22T14:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Polygon Width</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56936#M1954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am glad you got it right. Just want to make a clarification for people who read this thread:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In this calculation:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Bottom Width= (2*Shape_Area/Shape length)-MBG_Width"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the Shape_Area is the area of the trapezoid, not the area of the bounding rectangle; and Shape length should be MBG_LENGTH (used as the height of the trapezoid).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 20:33:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/re-polygon-width/m-p/56936#M1954</guid>
      <dc:creator>DanLee</dc:creator>
      <dc:date>2011-12-28T20:33:26Z</dc:date>
    </item>
  </channel>
</rss>

