<?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>idea Add Option to Output Integer IDs for H3 Spatial Grin in Generate Tessellation GP Tool in ArcGIS Pro Ideas</title>
    <link>https://community.esri.com/t5/arcgis-pro-ideas/add-option-to-output-integer-ids-for-h3-spatial/idi-p/1374877</link>
    <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;This ArcGIS Idea is to allow an additional option, when utilizing the H3 spatial index, to output the integer-based ID in either a BigInt or String format. This functionality would be a huge quality of life improvement and create better interoperability for utilizing this open-source spatial index specification.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While the new addition to utilizing the open-source H3 Spatial Index within the Generate Tessellation (basic, standard, advanced licenses) and&amp;nbsp;Generate Grids and Hexagons (business analyst extension) is an excellent step forward; however, there currently exists a limitation that severely impacts interoperability with other platforms that utilize H3 which is that these hex tiles can be identified through their integer-based or hexadecimaI IDs.&lt;/P&gt;&lt;P&gt;The current toolset in ArcGIS only outputs H3 tiles utilizing their hexadecimal IDs, this is an issue because the integer IDs require a somewhat complex formula for translating this into the integer ID-- --this is not a well-known piece of knowledge and a cursory search in a stack exchange will bring up results for a simple hexadecimal to integer conversion function. The easiest way to convert the two IDs (without looking up the formula spec on the H3 API documentation) is to utilize the Python library h3-py which can be downloaded utilizing the ArcGIS Pro GUI-based package manager (if a user knew that this is what was required). This significantly ups the requirement to interoperability with other H3 datasets (that may not have the hexadecimal ID included in favor of the integer-based ID) as a user will need to have in-depth knowledge that may not be required for what would otherwise be a simple data request/process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import h3

some_hex_id = "8826c20001fffff"
print(h3.string_to_h3(some_hex_id))
#613171383972659199&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This ArcGIS Idea is to allow an additional option when utilizing the H3 spatial index to optionally output the integer-based ID in either a BigInt or String format. This would be a huge quality of life improvement and create better interoperability for utilizing this open-source spatial index specification.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.esri.com/arcgis-blog/products/arcgis-pro/analytics/use-h3-to-create-multiresolution-hexagon-grids-in-arcgis-pro-3-1/" target="_blank" rel="noopener"&gt;https://www.esri.com/arcgis-blog/products/arcgis-pro/analytics/use-h3-to-create-multiresolution-hexagon-grids-in-arcgis-pro-3-1/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/generatetesellation.htm" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/generatetesellation.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/business-analyst/generate-grids-and-hexagons.htm" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/business-analyst/generate-grids-and-hexagons.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/603448"&gt;@MargaretCrawford&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Jan 2024 16:45:04 GMT</pubDate>
    <dc:creator>GIS_Spellblade</dc:creator>
    <dc:date>2024-01-26T16:45:04Z</dc:date>
    <item>
      <title>Add Option to Output Integer IDs for H3 Spatial Grin in Generate Tessellation GP Tool</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-option-to-output-integer-ids-for-h3-spatial/idi-p/1374877</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;This ArcGIS Idea is to allow an additional option, when utilizing the H3 spatial index, to output the integer-based ID in either a BigInt or String format. This functionality would be a huge quality of life improvement and create better interoperability for utilizing this open-source spatial index specification.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While the new addition to utilizing the open-source H3 Spatial Index within the Generate Tessellation (basic, standard, advanced licenses) and&amp;nbsp;Generate Grids and Hexagons (business analyst extension) is an excellent step forward; however, there currently exists a limitation that severely impacts interoperability with other platforms that utilize H3 which is that these hex tiles can be identified through their integer-based or hexadecimaI IDs.&lt;/P&gt;&lt;P&gt;The current toolset in ArcGIS only outputs H3 tiles utilizing their hexadecimal IDs, this is an issue because the integer IDs require a somewhat complex formula for translating this into the integer ID-- --this is not a well-known piece of knowledge and a cursory search in a stack exchange will bring up results for a simple hexadecimal to integer conversion function. The easiest way to convert the two IDs (without looking up the formula spec on the H3 API documentation) is to utilize the Python library h3-py which can be downloaded utilizing the ArcGIS Pro GUI-based package manager (if a user knew that this is what was required). This significantly ups the requirement to interoperability with other H3 datasets (that may not have the hexadecimal ID included in favor of the integer-based ID) as a user will need to have in-depth knowledge that may not be required for what would otherwise be a simple data request/process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import h3

some_hex_id = "8826c20001fffff"
print(h3.string_to_h3(some_hex_id))
#613171383972659199&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This ArcGIS Idea is to allow an additional option when utilizing the H3 spatial index to optionally output the integer-based ID in either a BigInt or String format. This would be a huge quality of life improvement and create better interoperability for utilizing this open-source spatial index specification.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.esri.com/arcgis-blog/products/arcgis-pro/analytics/use-h3-to-create-multiresolution-hexagon-grids-in-arcgis-pro-3-1/" target="_blank" rel="noopener"&gt;https://www.esri.com/arcgis-blog/products/arcgis-pro/analytics/use-h3-to-create-multiresolution-hexagon-grids-in-arcgis-pro-3-1/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/generatetesellation.htm" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/generatetesellation.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/business-analyst/generate-grids-and-hexagons.htm" target="_blank" rel="noopener"&gt;https://pro.arcgis.com/en/pro-app/latest/tool-reference/business-analyst/generate-grids-and-hexagons.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/603448"&gt;@MargaretCrawford&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2024 16:45:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-option-to-output-integer-ids-for-h3-spatial/idi-p/1374877</guid>
      <dc:creator>GIS_Spellblade</dc:creator>
      <dc:date>2024-01-26T16:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Add Option to Output Integer IDs for H3 Spatial Grin in Generate Tessellation GP Tool</title>
      <link>https://community.esri.com/t5/arcgis-pro-ideas/add-option-to-output-integer-ids-for-h3-spatial/idc-p/1716953#M38751</link>
      <description>&lt;DIV&gt;I hear your pain, It would be nice but I've encountered a significant limitation with Esri's &lt;STRONG&gt;Big Integer&lt;/STRONG&gt; field type when working with &lt;STRONG&gt;H3 indexes&lt;/STRONG&gt;. Unlike BIGINT implementations in databases such as PostgreSQL and SQL Server, Esri's Big Integer does not fully support the 64-bit integer range required for H3 values. As a result, H3 indexes cannot be reliably stored as integers and must instead be stored as strings. I am sure there are reasons for ESRI doing things differently. It would be nice if a 64 BIGINT was supported.&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Jul 2026 03:44:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-ideas/add-option-to-output-integer-ids-for-h3-spatial/idc-p/1716953#M38751</guid>
      <dc:creator>andrew3092</dc:creator>
      <dc:date>2026-07-28T03:44:34Z</dc:date>
    </item>
  </channel>
</rss>

