<?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: Python Point Placement Tool in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024240#M25162</link>
    <description>&lt;P&gt;You can always buffer a building by 1 meter, but,&amp;nbsp;you could have poles all around the building.&lt;/P&gt;&lt;P&gt;Sketch out where you want poles to help others help you with formulating a workable rule set.&lt;/P&gt;</description>
    <pubDate>Mon, 08 Feb 2021 00:57:34 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2021-02-08T00:57:34Z</dc:date>
    <item>
      <title>Python Point Placement Tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024237#M25159</link>
      <description>&lt;P&gt;I'm new to python and I'm trying to create a tool that would do the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1- Create a new Point feature class.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;2- Generate points based on an algorithm which is:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;a- Points must be 50 meters apart.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;b- Points must be 1 meter away from polygons edges (building) "A user input polygon feature".&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;3- Add the X,Y for these points.&lt;/P&gt;&lt;P&gt;I know that I can use Create Feature Class tool for #1 and Add XY Coordinates tool for #3, however, I'm not sure how to implement those in the script.&lt;/P&gt;&lt;P&gt;On the other hand, I can build a model that has the Create Feature Class and Add XY Coordinates tools but I'll need #2 to add to the model.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This tool is for Electricity Poles placement.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate the help on this one.&lt;/P&gt;&lt;P&gt;Also, if you can provide me with sources for python learning that would be great!!&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 00:35:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024237#M25159</guid>
      <dc:creator>Al_Alsanad</dc:creator>
      <dc:date>2021-02-08T00:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Python Point Placement Tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024238#M25160</link>
      <description>&lt;P&gt;You still need to determine along which "line" the poles will follow.&lt;/P&gt;&lt;P&gt;Once you have identified the line along which to place the points, then point spacing can be done with the Densify tool&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 00:43:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024238#M25160</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-02-08T00:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Python Point Placement Tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024239#M25161</link>
      <description>&lt;P&gt;Is the line feature a must?&lt;/P&gt;&lt;P&gt;I mean can't I generate the points based on the polygon feature ?&lt;/P&gt;&lt;P&gt;if no, is it possible to generate a line feature with a minimum of 1 meter distance from buildings or should it be added manually ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your quick reply.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 00:49:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024239#M25161</guid>
      <dc:creator>Al_Alsanad</dc:creator>
      <dc:date>2021-02-08T00:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Python Point Placement Tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024240#M25162</link>
      <description>&lt;P&gt;You can always buffer a building by 1 meter, but,&amp;nbsp;you could have poles all around the building.&lt;/P&gt;&lt;P&gt;Sketch out where you want poles to help others help you with formulating a workable rule set.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 00:57:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024240#M25162</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-02-08T00:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Python Point Placement Tool</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024241#M25163</link>
      <description>&lt;P&gt;Alright so I created this manually by adding a grid index then added points 50 meters apart based on the grid index, however, this doesn't satisfy the 1 meter distance from buildings rule.&amp;nbsp; The lines connecting the poles would be added later in the process.&lt;/P&gt;&lt;P&gt;The reason why I'm not basing this on a line feature is that because the roads where I'm adding the poles are not maintained and don't have a specific structure that would help the process.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The poles don't have to be in an grid like structure but if we can use the 1 meter distance rule and then apply the 50 meters between poles rule that would be great.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 01:12:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/python-point-placement-tool/m-p/1024241#M25163</guid>
      <dc:creator>Al_Alsanad</dc:creator>
      <dc:date>2021-02-08T01:12:51Z</dc:date>
    </item>
  </channel>
</rss>

