<?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 to animate more data points per time point in Geo Heatmap Custom Visualization animation? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385441#M46899</link>
    <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;So you want a heatmap that you can run through time in an animation like the example you provided, but the animation that is possible only does a single value across the whole heat map at this point?&lt;BR /&gt;
Yes, that's the problem!&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I'm using the Geo Heatmap Custom Visualization (3217) app. The basic search isn't the problem, it's more the documentation of the animated visualisation. I'm able to build a animated heatmap with one data point per time point, but if I use two, it doesn't work. Also if I use mvzip...&lt;BR /&gt;
Last but not least I couldn't find any example with more than one data point per time point.&lt;/P&gt;

&lt;P&gt;Best,&lt;BR /&gt;
Sebastian&lt;/P&gt;</description>
    <pubDate>Mon, 28 May 2018 14:02:15 GMT</pubDate>
    <dc:creator>sebastianstruwe</dc:creator>
    <dc:date>2018-05-28T14:02:15Z</dc:date>
    <item>
      <title>How to animate more data points per time point in Geo Heatmap Custom Visualization animation?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385437#M46895</link>
      <description>&lt;P&gt;Hi splunkers,&lt;/P&gt;

&lt;P&gt;Is there a way to animate more than one data point per time point? For example:&lt;BR /&gt;
t represents time point&lt;BR /&gt;
x represents longitude&lt;BR /&gt;
y represents latitude&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;t | x  |  y |  value
1|25|42 |31
1|32|51 |28
1|12|52 |30
2|13|31 |24
2|17|35 |20
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;At the moment only this animation is possible:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;t | x |  y |  value
1|25|42 |31
2|13|31 |24
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you take a look at the heatmap.js plugin page, it should be possible (&lt;A href="https://www.patrick-wied.at/static/heatmapjs/example-heatmap-animation.html"&gt;https://www.patrick-wied.at/static/heatmapjs/example-heatmap-animation.html&lt;/A&gt;). &lt;/P&gt;

&lt;P&gt;So my goal is to get an animated heatmap and not just an animated point.&lt;BR /&gt;
Does anyone have an idea?&lt;/P&gt;

&lt;P&gt;Best,&lt;BR /&gt;
Sebastian&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 14:44:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385437#M46895</guid>
      <dc:creator>sebastianstruwe</dc:creator>
      <dc:date>2018-05-08T14:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to animate more data points per time point in Geo Heatmap Custom Visualization animation?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385438#M46896</link>
      <description>&lt;P&gt;I'm not sure about the plugin, but you can generate a multivalue "point" list by time with mvzip.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;...
| stats values(x) as lon values(y) as lat values(value) as val by t
| eval location=mvzip(lon, lat)
| eval point=mvzip(location, val)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/4921iD31B9AAD0874A584/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 17:26:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385438#M46896</guid>
      <dc:creator>nplamondon</dc:creator>
      <dc:date>2018-05-17T17:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to animate more data points per time point in Geo Heatmap Custom Visualization animation?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385439#M46897</link>
      <description>&lt;P&gt;So you want a heatmap that you can run through time in an animation like the example you provided, but the animation that is possible only does a single value across the whole heat map at this point? Can you provide the search that got you the data that you say is possible, including the heatmap  visualization you can use? Also if you can get the data in a search like you want, can you provide some more information about that search?&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 18:33:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385439#M46897</guid>
      <dc:creator>cpetterborg</dc:creator>
      <dc:date>2018-05-17T18:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to animate more data points per time point in Geo Heatmap Custom Visualization animation?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385440#M46898</link>
      <description>&lt;P&gt;Hi nplamondon,&lt;/P&gt;

&lt;P&gt;thanks for your reply, but unfortunately this doesn't work for the app. I think the app is only made to show one data point per time point...&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 13:54:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385440#M46898</guid>
      <dc:creator>sebastianstruwe</dc:creator>
      <dc:date>2018-05-28T13:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to animate more data points per time point in Geo Heatmap Custom Visualization animation?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385441#M46899</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;So you want a heatmap that you can run through time in an animation like the example you provided, but the animation that is possible only does a single value across the whole heat map at this point?&lt;BR /&gt;
Yes, that's the problem!&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I'm using the Geo Heatmap Custom Visualization (3217) app. The basic search isn't the problem, it's more the documentation of the animated visualisation. I'm able to build a animated heatmap with one data point per time point, but if I use two, it doesn't work. Also if I use mvzip...&lt;BR /&gt;
Last but not least I couldn't find any example with more than one data point per time point.&lt;/P&gt;

&lt;P&gt;Best,&lt;BR /&gt;
Sebastian&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 14:02:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-animate-more-data-points-per-time-point-in-Geo-Heatmap/m-p/385441#M46899</guid>
      <dc:creator>sebastianstruwe</dc:creator>
      <dc:date>2018-05-28T14:02:15Z</dc:date>
    </item>
  </channel>
</rss>

