<?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 create a map in dashboard panel from pivot zip code data? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191991#M11997</link>
    <description>&lt;P&gt;In pivot we have data like below. Can you please help us to generate the MAP chart (USA geographical location) in dashboard panel. Once after assigning this value to dashboard panel and trying to convert into MAP, nothing is showing. Please provide the necessary details to build a Map with this data. Basically we are trying to show the MAP based on location zipcode and number of users accessing the site.&lt;/P&gt;

&lt;H2&gt;Primary_Address_zip        Count&lt;/H2&gt;

&lt;P&gt;07607                       1201&lt;/P&gt;

&lt;P&gt;10101                       105000&lt;/P&gt;

&lt;P&gt;10036                       2000&lt;/P&gt;

&lt;P&gt;Can you please help us for this plotting the map.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 17:23:19 GMT</pubDate>
    <dc:creator>dhavamanis</dc:creator>
    <dc:date>2020-09-28T17:23:19Z</dc:date>
    <item>
      <title>How to create a map in dashboard panel from pivot zip code data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191991#M11997</link>
      <description>&lt;P&gt;In pivot we have data like below. Can you please help us to generate the MAP chart (USA geographical location) in dashboard panel. Once after assigning this value to dashboard panel and trying to convert into MAP, nothing is showing. Please provide the necessary details to build a Map with this data. Basically we are trying to show the MAP based on location zipcode and number of users accessing the site.&lt;/P&gt;

&lt;H2&gt;Primary_Address_zip        Count&lt;/H2&gt;

&lt;P&gt;07607                       1201&lt;/P&gt;

&lt;P&gt;10101                       105000&lt;/P&gt;

&lt;P&gt;10036                       2000&lt;/P&gt;

&lt;P&gt;Can you please help us for this plotting the map.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 17:23:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191991#M11997</guid>
      <dc:creator>dhavamanis</dc:creator>
      <dc:date>2020-09-28T17:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a map in dashboard panel from pivot zip code data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191992#M11998</link>
      <description>&lt;P&gt;You would have to do it with a lookup table that enriches the ZIP codes with their geographical data , see &lt;A href="http://answers.splunk.com/answers/57174/google-maps-geo-lookup-a-zip-code"&gt;this previous Splunk Answers&lt;/A&gt; posting for pointers.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Aug 2014 19:16:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191992#M11998</guid>
      <dc:creator>ChrisG</dc:creator>
      <dc:date>2014-08-29T19:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a map in dashboard panel from pivot zip code data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191993#M11999</link>
      <description>&lt;P&gt;Thanks, I am trying to build the MAP with the below query, i could see some results in the statistics view but its nothing showing in Map (zip, Lat and Long). Can you please review this query and correct me if anything wrong.&lt;/P&gt;

&lt;P&gt;index="abcindex" | stats sum(Primary_Address_ZIP) as _geo_count by Primary_Address_ZIP | lookup geolookup Zipcode as Primary_Address_ZIP OUTPUT Lat, Long | where Lat not null AND Long not null | eval _geo=Lat+","+Long&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 17:28:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191993#M11999</guid>
      <dc:creator>dhavamanis</dc:creator>
      <dc:date>2020-09-28T17:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a map in dashboard panel from pivot zip code data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191994#M12000</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I don't know whether this is a typo:&lt;/P&gt;

&lt;P&gt;You need 'lat' and 'lon' fields to use a map.&lt;/P&gt;

&lt;P&gt;If you use the 'geostats' command you can set the field name with 'geostats latfield=Lat longfield=Long ...'.&lt;/P&gt;

&lt;P&gt;With 'iplocation ip_fieldname' you get 'lat' and 'lon'.&lt;/P&gt;

&lt;P&gt;Just small differences but they count &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;HTH,&lt;/P&gt;

&lt;P&gt;Holger&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2014 11:11:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191994#M12000</guid>
      <dc:creator>hsesterhenn</dc:creator>
      <dc:date>2014-11-11T11:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a map in dashboard panel from pivot zip code data?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191995#M12001</link>
      <description>&lt;P&gt;Thanks. The below geostats command works fine.&lt;/P&gt;

&lt;P&gt;index=abcindex | lookup geolookup "Primary Address_ZIP" as "Primary Address_ZIP" OUTPUT latitude , longitude |geostats latfield=latitude longfield=longitude count by "Primary Address_ZIP"&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 18:25:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-create-a-map-in-dashboard-panel-from-pivot-zip-code-data/m-p/191995#M12001</guid>
      <dc:creator>dhavamanis</dc:creator>
      <dc:date>2020-09-28T18:25:07Z</dc:date>
    </item>
  </channel>
</rss>

