<?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: Convert point feature class to square polygon (points represent NE corner) in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198345#M6804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Apr 2016 21:24:30 GMT</pubDate>
    <dc:creator>SusanWinchell-Sweeney</dc:creator>
    <dc:date>2016-04-25T21:24:30Z</dc:date>
    <item>
      <title>Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198338#M6797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a point feature class in which each point represents the NE (Upper Left) corner of a 5' x 5' excavation unit across an archaeological site (the units are not contiguous).&amp;nbsp; I would like to generate a polygon feature of the 5' x 5' units (in other words, create the other 3 corners - LL, LR and UR and connect them with a closed line and convert to a polygon - (or directly create a polygon feature class if that's possible). Are there existing tools that I can use to do this, or a script that can be modified? I am not a programmer ;-(...I am using ArcGIS Desktop with an Advanced license.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Susan&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 22:04:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198338#M6797</guid>
      <dc:creator>SusanWinchell-Sweeney</dc:creator>
      <dc:date>2016-04-20T22:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198339#M6798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry... I think in code... there are options here , you are effectively producing a square buffer, except you are offsetting the focus point from the center to the NE corner ... sooo you will have to make some changes to the code.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/119885"&gt;Hello everybody I need some help about python scripting to create a square buffer around points feature class ?&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 22:13:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198339#M6798</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-04-20T22:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198340#M6799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is so easy way to do that, but I want to now your spatial reference, and unit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Apr 2016 22:50:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198340#M6799</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-04-24T22:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198341#M6800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Abdullah&lt;/P&gt;&lt;P&gt;all she needs to do is change the following lines, using a projected featureclass or shapefile.&amp;nbsp; Specify the width and height&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;width = 100.0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # width of the output rectangle&amp;nbsp; in meters
height = 100.0&amp;nbsp;&amp;nbsp; # height of the output rectangle
hX&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;nbsp; 50.0&amp;nbsp;&amp;nbsp;&amp;nbsp; # this can be +ve or -ve depending which corner you want to point to be focussed on
hY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = -50.0&amp;nbsp;&amp;nbsp; # this is for Y&amp;nbsp; (50, -50) for hX and hY will place the origin point in the upper left&lt;/PRE&gt;&lt;P&gt;# output change this obviously&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;fc_out = r'D:\Xander\EPM\Datos pruebas\gdb\datos erase.gdb\rectangles3'&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and modify the values here&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;def createRectangleFromPoint(pnt, width, height, hlf, sr):&amp;nbsp; # hlf is the correction to position the point
&amp;nbsp;&amp;nbsp;&amp;nbsp; arrPnts = arcpy.Array() 
&amp;nbsp;&amp;nbsp;&amp;nbsp; pnt2 = arcpy.Point(pnt.X - width + hX, pnt.Y - height + hY) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arrPnts.add(pnt2) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; pnt2 = arcpy.Point(pnt.X - width + hX, pnt.Y + height + hY) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arrPnts.add(pnt2) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; pnt2 = arcpy.Point(pnt.X + width + hX, pnt.Y + height + hY) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arrPnts.add(pnt2) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; pnt2 = arcpy.Point(pnt.X + width + hX, pnt.Y - height + hY) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arrPnts.add(pnt2) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; pnt2 = arcpy.Point(pnt.X - width + hX, pnt.Y - height + hY) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arrPnts.add(pnt2) 
&amp;nbsp;&amp;nbsp;&amp;nbsp; return arcpy.Polygon(arrPnts, sr) &lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:53:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198341#M6800</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-11T09:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198342#M6801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,Dan you are right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just there is an easy method using attribute table and toolbox without python.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought that maybe easier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 01:27:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198342#M6801</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-04-25T01:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198343#M6802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the replies! I'm curious about your "easier" solution - I am using a custom coordinate (simply called Local Cartesian Coordinate System) with the following parameters, and the units are in feet:&lt;/P&gt;&lt;P&gt;Local Cartesian Coordinate System&lt;/P&gt;&lt;P&gt;Authority: Custom&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Projection: Local&lt;/P&gt;&lt;P&gt;False_Easting: 0.0&lt;/P&gt;&lt;P&gt;False_Northing: 0.0&lt;/P&gt;&lt;P&gt;Scale_Factor: 1.0&lt;/P&gt;&lt;P&gt;Azimuth: 45.0&lt;/P&gt;&lt;P&gt;Longitude_Of_Center: -75.0&lt;/P&gt;&lt;P&gt;Latitude_Of_Center: 40.0&lt;/P&gt;&lt;P&gt;Linear Unit: Foot (0.3048)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Geographic Coordinate System: GCS_WGS_1984&lt;/P&gt;&lt;P&gt;Angular Unit: Degree (0.0174532925199433)&lt;/P&gt;&lt;P&gt;Prime Meridian: Greenwich (0.0)&lt;/P&gt;&lt;P&gt;Datum: D_WGS_1984&lt;/P&gt;&lt;P&gt;&amp;nbsp; Spheroid: WGS_1984&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Semimajor Axis: 6378137.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Semiminor Axis: 6356752.314245179&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Inverse Flattening: 298.257223563&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 21:12:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198343#M6802</guid>
      <dc:creator>SusanWinchell-Sweeney</dc:creator>
      <dc:date>2016-04-25T21:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198344#M6803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;still looks geographic and the 'difficult' one, will get the spatial reference if it is defined and is indeed projected with units of feet, you only need to specify your buffer size&amp;nbsp; in feet.&amp;nbsp; You only run into difficulties when the coordinates are in decimal degrees and you want outputs in feet or meters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 21:18:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198344#M6803</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-04-25T21:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198345#M6804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2016 21:24:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198345#M6804</guid>
      <dc:creator>SusanWinchell-Sweeney</dc:creator>
      <dc:date>2016-04-25T21:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198346#M6805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the&amp;nbsp; "easier" solution, in my opinion. that&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;use "Add XY Coordinates " for create x and y fields in the point feature class. Or create and Y fields manually , but make sure that your unit is feet (as your example).&lt;/LI&gt;&lt;LI&gt;create two fields too, for calculate the opposite corner (lower right).&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;you can calculate this using field calculator&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;oppsite corner x = [POINT_X] + (&lt;SPAN style="text-decoration: underline;"&gt;5/12&lt;/SPAN&gt;)&amp;nbsp;&amp;nbsp;&amp;nbsp; "that if you want create square polygon width 5 inches"&lt;/LI&gt;&lt;LI&gt;oppsite corner y = [POINT_Y] - (&lt;SPAN style="text-decoration: underline;"&gt;5/12&lt;/SPAN&gt;)&amp;nbsp;&amp;nbsp;&amp;nbsp; "that if you want create square polygon width 5 inches"&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;5/12 is variable you can change a value as you want with 2d of polygon.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="196111" alt="2_.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/196111_2_.png" style="width: 620px; height: 352px;" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 3.&amp;nbsp; use " XY TO Line" tool and make start point the upper left coordinate , and end point lower right coordinate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="196139" alt="3_.png" class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/196139_3_.png" style="width: 620px; height: 249px;" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 4.&amp;nbsp; now you can get your polygons using "Feature Envelope To Polygon" and put the pervious line feature as input and check &lt;STRONG&gt;Create multipart features &lt;/STRONG&gt;box . The output will be your polygon.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="196140" alt="4.png" class="image-4 jive-image" src="https://community.esri.com/legacyfs/online/196140_4.png" style="width: 620px; height: 331px;" /&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Apr 2016 05:26:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198346#M6805</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2016-04-26T05:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Convert point feature class to square polygon (points represent NE corner)</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198347#M6806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Again, thank you, very much - this was the solution I employed &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Apr 2016 16:57:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/convert-point-feature-class-to-square-polygon/m-p/198347#M6806</guid>
      <dc:creator>SusanWinchell-Sweeney</dc:creator>
      <dc:date>2016-04-26T16:57:30Z</dc:date>
    </item>
  </channel>
</rss>

