<?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: How do I get the extent of tables (feature classes) in a geopackage? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522588#M40974</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I noticed that you are not using the data access module. In theory, it shouldn't matter, but try&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;da_desc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"...Your_Featureclass_here"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;da_desc&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'extent'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;  &lt;SPAN class="comment token"&gt;# ---- da.Describe uses a dictionary&lt;/SPAN&gt;

&lt;SPAN class="number token"&gt;300000&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;4999999.3145&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;300029.318&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;5000022.4949&lt;/SPAN&gt; NaN NaN NaN NaN&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the same results using arcpy.Describe and arcpy.da.Describe, but you never know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 22:47:19 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2021-12-11T22:47:19Z</dc:date>
    <item>
      <title>How do I get the extent of tables (feature classes) in a geopackage?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522584#M40970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #cc7832;"&gt;import &lt;/SPAN&gt;arcpy
&lt;SPAN style="color: #cc7832;"&gt;import &lt;/SPAN&gt;os

gpkg = &lt;SPAN style="color: #6a8759;"&gt;r"C:\Data\georgia.gpkg"
&lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;
&lt;/SPAN&gt;desc = arcpy.Describe(gpkg)
&lt;SPAN style="color: #8888c6;"&gt;print&lt;/SPAN&gt;(desc.dataType)
&lt;SPAN style="color: #8888c6;"&gt;print&lt;/SPAN&gt;(desc.workspaceType)&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Workspace
LocalDatabase&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;walk = arcpy.da.Walk(gpkg)

&lt;SPAN style="color: #cc7832;"&gt;for &lt;/SPAN&gt;path&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;names&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;filenames &lt;SPAN style="color: #cc7832;"&gt;in &lt;/SPAN&gt;walk:
    &lt;SPAN style="color: #cc7832;"&gt;for &lt;/SPAN&gt;fname &lt;SPAN style="color: #cc7832;"&gt;in &lt;/SPAN&gt;filenames:
        d = arcpy.Describe(os.path.join(path&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;fname))
        &lt;SPAN style="color: #8888c6;"&gt;print&lt;/SPAN&gt;(fname&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;d.dataType)&lt;/PRE&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;main.ga_admin FeatureClass
main.ga_highway FeatureClass
main.ga_natural FeatureClass
main.ga_poi FeatureClass
main.ga_water FeatureClass&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if I add...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color: #cc7832;"&gt;for &lt;/SPAN&gt;path&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;names&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;filenames &lt;SPAN style="color: #cc7832;"&gt;in &lt;/SPAN&gt;walk:
    &lt;SPAN style="color: #cc7832;"&gt;for &lt;/SPAN&gt;fname &lt;SPAN style="color: #cc7832;"&gt;in &lt;/SPAN&gt;filenames:
        d = arcpy.Describe(os.path.join(path&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;fname))
        &lt;SPAN style="color: #8888c6;"&gt;print&lt;/SPAN&gt;(fname&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;d.dataType)
        &lt;SPAN style="color: #8888c6;"&gt;print&lt;/SPAN&gt;(&lt;SPAN style="color: #6a8759;"&gt;f"Extent of feature class: &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;{&lt;/SPAN&gt;d.extent.XMin&lt;SPAN style="color: #cc7832;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;{&lt;/SPAN&gt;d.extent.YMin&lt;SPAN style="color: #cc7832;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;{&lt;/SPAN&gt;d.extent.XMax&lt;SPAN style="color: #cc7832;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;{&lt;/SPAN&gt;d.extent.YMax&lt;SPAN style="color: #cc7832;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;"&lt;/SPAN&gt;)
        &lt;SPAN style="color: #8888c6;"&gt;print&lt;/SPAN&gt;(d.extent) # sanity check&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;main.ga_admin FeatureClass
Extent of feature class: nan, nan, nan, nan
nan nan nan nan NaN NaN NaN NaN
main.ga_highway FeatureClass
Extent of feature class: nan, nan, nan, nan
nan nan nan nan NaN NaN NaN NaN
main.ga_natural FeatureClass
Extent of feature class: nan, nan, nan, nan
nan nan nan nan NaN NaN NaN NaN
main.ga_poi FeatureClass
Extent of feature class: nan, nan, nan, nan
nan nan nan nan NaN NaN NaN NaN
main.ga_water FeatureClass
Extent of feature class: nan, nan, nan, nan
nan nan nan nan NaN NaN NaN NaN&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;/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;P&gt;&lt;/P&gt;&lt;P&gt;No extent.&amp;nbsp; However, if I load this content in ArcGIS Pro, it calculates the extent correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I get the extent of layers in a geopackage?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:47:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522584#M40970</guid>
      <dc:creator>EricEagle</dc:creator>
      <dc:date>2021-12-11T22:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the extent of tables (feature classes) in a geopackage?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522585#M40971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tested your code with a GeoPackage I just created, and it works fine.&amp;nbsp; So, I am wondering where did this GeoPackage come from?&amp;nbsp; If third-party software created the GeoPackage, it may be that not all of the GeoPackage data tables were properly populated.&amp;nbsp; If the GeoPackage was created by third-party software, try copying the contents to a new GPKG you create from Pro, and then see if you get expected results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2020 19:43:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522585#M40971</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2020-06-03T19:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the extent of tables (feature classes) in a geopackage?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522586#M40972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Joshua, this was a GPKG created from QGIS.&amp;nbsp; Workflow-wise, we have both QGIS and ArcGIS Pro and if someone is working in QGIS they're generally using GPKG for their file containers, and if they're in Pro, they're using FGDB.&amp;nbsp; The thing I'm trying to solve is crawling a large SAN with both GPKG and FGDB, and discovering/visualizing the extents of various holdings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either way, helpful pointers - I'll give it a shot and report back.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2020 21:43:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522586#M40972</guid>
      <dc:creator>EricEagle</dc:creator>
      <dc:date>2020-06-03T21:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the extent of tables (feature classes) in a geopackage?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522587#M40973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay, so this is very odd behavior.&amp;nbsp; When I load the GPKG directly into pro, I am able to use the IPython console and successfully retrieve the extent.&amp;nbsp; When I do the same calling arcpy independently of an ArcGIS Pro project, it returns nan. behold:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/495372_arcpro_gpkg_layer_extent.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried using RecalculateFeatureClassExtent() on the table; it executed without error but still returned null for the extent when divorced from an ArcGIS Pro session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm leaning toward "bug" or more likely "incomplete support for spec" on this, as it seems like there is some translation work being done at load time in Pro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could create GPKG in Pro, but it kind of defeats the purpose.&amp;nbsp; The workflow I am scripting out assumes all GPKG are created in QGIS 3.x.&amp;nbsp; I'd prefer to stay away from having to rely on the ogr/gdal python api since it's .... well, what I'd call "high friction" but seeing as the osgeo libraries are distributed with ArcGIS Pro, that may just be the way I have to go in the meanwhile.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2020 22:09:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522587#M40973</guid>
      <dc:creator>EricEagle</dc:creator>
      <dc:date>2020-06-03T22:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the extent of tables (feature classes) in a geopackage?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522588#M40974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I noticed that you are not using the data access module. In theory, it shouldn't matter, but try&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;da_desc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;r&lt;SPAN class="string token"&gt;"...Your_Featureclass_here"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;da_desc&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'extent'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;  &lt;SPAN class="comment token"&gt;# ---- da.Describe uses a dictionary&lt;/SPAN&gt;

&lt;SPAN class="number token"&gt;300000&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;4999999.3145&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;300029.318&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;5000022.4949&lt;/SPAN&gt; NaN NaN NaN NaN&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the same results using arcpy.Describe and arcpy.da.Describe, but you never know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:47:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522588#M40974</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-12-11T22:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the extent of tables (feature classes) in a geopackage?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522589#M40975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dan, yeah, same results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2020 02:46:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522589#M40975</guid>
      <dc:creator>EricEagle</dc:creator>
      <dc:date>2020-06-04T02:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the extent of tables (feature classes) in a geopackage?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522590#M40976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the Python console in Pro, the following code is not describing the GPKG feature class but the Pro feature layer.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;fc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"main.ga_highway"&lt;/SPAN&gt;
desc &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;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;desc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;extent&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It may be that Pro is calculating or setting the extent for the layer when it is created and loaded into Pro.&amp;nbsp; That said, when I tested your stand-alone code against a GPKG I created yesterday, it worked fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a publicly available GPKG that shares this behavior?&amp;nbsp; Or, can you share a stripped-down GPKG that has this behavior?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:47:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522590#M40976</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-11T22:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the extent of tables (feature classes) in a geopackage?</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522591#M40977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joshua,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some reason GeoNet does not email me when someone responds, so I'm sorry for the lateness of this reply.&amp;nbsp; I see what you're saying about console querying the layer not the data directly from the gpkg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From what I can see, this affects GPKG created in QGIS not ArcGIS Pro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, most of the time I encounter a geopackage it will have been created in QGIS because why bother in ArcGIS Pro, except for edge cases where a Pro user needs to share data with a QGIS user?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because gpkg represents an outlier of content that I'm crawling, I've just put this one on the back burner, and will eventually just implement the ogr python api to pull min/max extents.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2020 17:02:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-get-the-extent-of-tables-feature-classes/m-p/522591#M40977</guid>
      <dc:creator>EricEagle</dc:creator>
      <dc:date>2020-06-10T17:02:51Z</dc:date>
    </item>
  </channel>
</rss>

