<?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 How to Output the Values of Bounding Box in Spatial Index Using Python? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-to-output-the-values-of-bounding-box-in/m-p/613836#M47893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help with figuring out how to output the values in the Bounding Box in the Indexes tab using Python. Below is the snip of the bounding box and I need the values in here to be accessed by the Python code and printed out with a print statement. I can easily find the values for the feature extent but I cannot get the values in the Bounding Box under the Indexes tab to show up and I have looked everywhere I could.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helping!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Dec 2018 21:48:36 GMT</pubDate>
    <dc:creator>isen96</dc:creator>
    <dc:date>2018-12-28T21:48:36Z</dc:date>
    <item>
      <title>How to Output the Values of Bounding Box in Spatial Index Using Python?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-output-the-values-of-bounding-box-in/m-p/613836#M47893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help with figuring out how to output the values in the Bounding Box in the Indexes tab using Python. Below is the snip of the bounding box and I need the values in here to be accessed by the Python code and printed out with a print statement. I can easily find the values for the feature extent but I cannot get the values in the Bounding Box under the Indexes tab to show up and I have looked everywhere I could.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helping!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2018 21:48:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-output-the-values-of-bounding-box-in/m-p/613836#M47893</guid>
      <dc:creator>isen96</dc:creator>
      <dc:date>2018-12-28T21:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to Output the Values of Bounding Box in Spatial Index Using Python?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-output-the-values-of-bounding-box-in/m-p/613837#M47894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can get to them with arcpy.Describe():&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'C:\path\to\your_geodatabase'&lt;/SPAN&gt;
fc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'feature class name'&lt;/SPAN&gt;

descFC &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fc&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
fc_xmin &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; descFC&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;extent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;XMin
fc_ymin &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; descFC&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;extent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;YMin
fc_xmax &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; descFC&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;extent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;XMax
fc_ymax &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; descFC&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;extent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;YMax
‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:15:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-output-the-values-of-bounding-box-in/m-p/613837#M47894</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2021-12-12T02:15:10Z</dc:date>
    </item>
  </channel>
</rss>

