<?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 Choropleth Map by County (FIPS) - Connecticut Not Mapping? in Warehousing &amp; Analytics</title>
    <link>https://community.databricks.com/t5/warehousing-analytics/choropleth-map-by-county-fips-connecticut-not-mapping/m-p/149711#M2512</link>
    <description>&lt;P&gt;Hi everyone!&lt;/P&gt;&lt;P&gt;Just wanted to jump on here to see if anyone is having issues with Connecticut not mapping on their choropleth map? We had several we were using to map # of healthcare providers in the country but just noticed that Connecticut was no longer showing up for us. We can't find anything on our end that would've stopped working, so wanted to see if anyone was having the same problem.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;- Grace&lt;/P&gt;</description>
    <pubDate>Tue, 03 Mar 2026 15:30:24 GMT</pubDate>
    <dc:creator>grace-markowski</dc:creator>
    <dc:date>2026-03-03T15:30:24Z</dc:date>
    <item>
      <title>Choropleth Map by County (FIPS) - Connecticut Not Mapping?</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/choropleth-map-by-county-fips-connecticut-not-mapping/m-p/149711#M2512</link>
      <description>&lt;P&gt;Hi everyone!&lt;/P&gt;&lt;P&gt;Just wanted to jump on here to see if anyone is having issues with Connecticut not mapping on their choropleth map? We had several we were using to map # of healthcare providers in the country but just noticed that Connecticut was no longer showing up for us. We can't find anything on our end that would've stopped working, so wanted to see if anyone was having the same problem.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;- Grace&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2026 15:30:24 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/choropleth-map-by-county-fips-connecticut-not-mapping/m-p/149711#M2512</guid>
      <dc:creator>grace-markowski</dc:creator>
      <dc:date>2026-03-03T15:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Choropleth Map by County (FIPS) - Connecticut Not Mapping?</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/choropleth-map-by-county-fips-connecticut-not-mapping/m-p/150091#M2522</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;This is a known issue that stems from Connecticut's 2022 county reorganization and how the AI/BI Dashboard choropleth map resolves FIPS codes.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;WHAT'S HAPPENING&lt;/P&gt;
&lt;P&gt;In June 2022, the US Census Bureau officially replaced Connecticut's 8 traditional counties (Fairfield, Hartford, Litchfield, etc.) with 9 planning regions as the new county-equivalent entities. As part of this change, the old FIPS codes (09001-09015) were retired and replaced with entirely new codes (09110-09190).&lt;/P&gt;
&lt;P&gt;The AI/BI Dashboard choropleth map uses an internal lookup table to match your data to geographic areas. I checked this file, and it still contains only the old Connecticut FIPS codes:&lt;/P&gt;
&lt;P&gt;Fairfield County,Fairfield,09001,US&lt;BR /&gt;Hartford County,Hartford,09003,US&lt;BR /&gt;Litchfield County,Litchfield,09005,US&lt;BR /&gt;...&lt;/P&gt;
&lt;P&gt;The new planning region codes (09110, 09120, 09130, etc.) are NOT in the lookup table. Per the map visualization docs, when a geographic value doesn't match the lookup table, "no data is shown for that locality" -- which is exactly what you're seeing for Connecticut.&lt;/P&gt;
&lt;P&gt;You can download the actual lookup CSV used by Databricks here:&lt;BR /&gt;&lt;A href="https://assets.docs.databricks.com/_static/documents/county-district-names.csv" target="_blank"&gt;https://assets.docs.databricks.com/_static/documents/county-district-names.csv&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;WORKAROUNDS&lt;/P&gt;
&lt;P&gt;Option 1: Remap FIPS codes in your query (recommended)&lt;/P&gt;
&lt;P&gt;If your data uses the new planning region FIPS codes, you can map them back to the old county codes that Databricks recognizes. Add a CASE expression or join a mapping table in your dashboard query:&lt;/P&gt;
&lt;P&gt;SELECT&lt;BR /&gt;CASE county_fips&lt;BR /&gt;WHEN '09110' THEN '09003' -- Capitol -&amp;gt; Hartford&lt;BR /&gt;WHEN '09120' THEN '09003' -- Greater Bridgeport -&amp;gt; (approximate)&lt;BR /&gt;WHEN '09130' THEN '09005' -- Lower CT River Valley -&amp;gt; (approximate)&lt;BR /&gt;WHEN '09140' THEN '09015' -- Naugatuck Valley -&amp;gt; (approximate)&lt;BR /&gt;WHEN '09150' THEN '09007' -- Lower CT River Valley -&amp;gt; Middlesex&lt;BR /&gt;WHEN '09160' THEN '09005' -- Northwest Hills -&amp;gt; Litchfield&lt;BR /&gt;WHEN '09170' THEN '09001' -- Western CT -&amp;gt; Fairfield&lt;BR /&gt;WHEN '09180' THEN '09009' -- South Central CT -&amp;gt; New Haven&lt;BR /&gt;WHEN '09190' THEN '09011' -- Southeastern CT -&amp;gt; New London&lt;BR /&gt;ELSE county_fips&lt;BR /&gt;END AS county_fips_mapped,&lt;BR /&gt;your_value_column&lt;BR /&gt;FROM your_table&lt;/P&gt;
&lt;P&gt;Important caveat: The old counties and new planning regions don't have identical boundaries, so this mapping is approximate. Some planning regions span parts of multiple old counties.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Option 2: Use county names&lt;/P&gt;
&lt;P&gt;The lookup table also supports matching by name (e.g., "Fairfield", "Hartford"). If you can map your data to the old county names instead of FIPS codes, set the Geographic role to "County/City" with format "Name" in the visualization editor.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Option 3: Use a Point Map&lt;/P&gt;
&lt;P&gt;If you have latitude/longitude data (or can derive it from your records), consider using a point map visualization instead. This bypasses the FIPS lookup entirely and plots data at precise coordinates.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;LONGER TERM&lt;/P&gt;
&lt;P&gt;This is arguably a gap in the Databricks lookup data that should be updated to include the new Connecticut planning region FIPS codes. You may want to file a support ticket or product feedback request to get the lookup table updated.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;DOCUMENTATION REFERENCES&lt;/P&gt;
&lt;P&gt;- AI/BI Dashboard Map Visualizations: &lt;A href="https://docs.databricks.com/en/dashboards/manage/visualizations/maps.html" target="_blank"&gt;https://docs.databricks.com/en/dashboards/manage/visualizations/maps.html&lt;/A&gt;&lt;BR /&gt;- County lookup CSV used by Databricks: &lt;A href="https://assets.docs.databricks.com/_static/documents/county-district-names.csv" target="_blank"&gt;https://assets.docs.databricks.com/_static/documents/county-district-names.csv&lt;/A&gt;&lt;BR /&gt;- Census Bureau County Changes: &lt;A href="https://www.census.gov/programs-surveys/geography/technical-documentation/county-changes.html" target="_blank"&gt;https://www.census.gov/programs-surveys/geography/technical-documentation/county-changes.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps! Let me know if you have questions about any of the workaround approaches.&lt;/P&gt;
&lt;P&gt;* This reply used an agent system I built to research and draft this response based on the wide set of documentation I have available and previous memory. I personally review the draft for any obvious issues and for monitoring system reliability and update it when I detect any drift, but there is still a small chance that something is inaccurate, especially if you are experimenting with brand new features.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Mar 2026 20:18:43 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/choropleth-map-by-county-fips-connecticut-not-mapping/m-p/150091#M2522</guid>
      <dc:creator>SteveOstrowski</dc:creator>
      <dc:date>2026-03-07T20:18:43Z</dc:date>
    </item>
  </channel>
</rss>

