<?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: Heatmaps in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55137#M4858</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Matt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Let me know if you need the source code.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd like the source code please. Stephen dot Lead at Gmail dot com.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 08 Jan 2012 22:59:19 GMT</pubDate>
    <dc:creator>StephenLead</dc:creator>
    <dc:date>2012-01-08T22:59:19Z</dc:date>
    <item>
      <title>Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55128#M4849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I want to creat a heatmap. I seems that the examples points to using heatmapapi.com but it is unavailable and it seems that has been unavailable for a while.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What is the recommended way or library to use to create heatmaps. It seems that the silverlight library has it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jun 2010 13:16:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55128#M4849</guid>
      <dc:creator>JorgeFiallega</dc:creator>
      <dc:date>2010-06-25T13:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55129#M4850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well, using server side calculation, you can just wrap the kernel density tool in a tool service in order to do heat map.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What the silverlight example does, though, is execute kernel density server side and produce output using a png encoder. The intensity slider corresponds to the kernel bandwidth.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I've always been opposed to the concept behind the heatmap api though, because kernel density requires a lot of consideration of the bandwidth and the kernel shape in order to be used appropriately. A Gaussian kernel is not always the right way to go; a fixed kernel is not always best. The bandwidth requires a lot of examination of the dataset to get correct, and a variable bandwidth may or may not be appropriate.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Pushing all of this down into a single set of variables, or even into user side settings when the user does not have a spatial analysis background, is going to put out bad results more often than useful results.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, it might be better to use server side python scripts to produce the output you want with appropriate decisions in place on the kernel density output (even if esri only has a Gaussian kernel density tool right now - more versions are coming at 10). Push that output to a map service and server that out instead.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jun 2010 15:50:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55129#M4850</guid>
      <dc:creator>BrettLord-Castillo</dc:creator>
      <dc:date>2010-06-25T15:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55130#M4851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yepp, I've done it with the Kernel Density tool in a Geoprocessing layer in the MXD. The output is the raster of the tool. The task is done asynchronously.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jul 2010 14:04:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55130#M4851</guid>
      <dc:creator>AxelSchaefer</dc:creator>
      <dc:date>2010-07-06T14:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55131#M4852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Great Thanks, I will have to talk to my GIS group.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;On the mean time I found in one of the sample projects a library called hclayer.swc with packages like com.esri.ps.atl.rr.heatmap. I plugged it in and it did the trick (for what I needed it right now, and I totally understand and agree on lordcabs comments).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I can not find any documentation or mention to this library anywhere. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Seems to be an esri library by the packages names that contains. Can anybody point me or give me information about this libarary.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 12:00:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55131#M4852</guid>
      <dc:creator>JorgeFiallega</dc:creator>
      <dc:date>2010-07-16T12:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55132#M4853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jorge,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Were you able to implement a heatmap using the javascript api and the com.esri.ps.atl.rr.heatmap library? I'm interested in learning how to do this with the Google Extension API without resorting to the heatmapapi.com approach. Any insight as to how you implemented your solution would be greatly appreciated. Thanks Jorge!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2011 16:33:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55132#M4853</guid>
      <dc:creator>RickZawadzki</dc:creator>
      <dc:date>2011-04-15T16:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55133#M4854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Great Thanks, I will have to talk to my GIS group.&lt;BR /&gt;On the mean time I found in one of the sample projects a library called hclayer.swc with packages like com.esri.ps.atl.rr.heatmap. I plugged it in and it did the trick (for what I needed it right now, and I totally understand and agree on lordcabs comments).&lt;BR /&gt;I can not find any documentation or mention to this library anywhere. &lt;BR /&gt;Seems to be an esri library by the packages names that contains. Can anybody point me or give me information about this libarary.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Jorge , this libraryhclayer.swc is for flex api or javascript api ?. I also need to implement heat maps through arcgis javascript interface .&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;heatmapapi is not feasible as it only allows 100 points to used for its free version.also i need support for IE 6 , 7, 8 therefore cannot use javascript lib which utilize HTML5 elements.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am also trying to use kernal density tool to publish the&amp;nbsp; map as Geoprocessing service . I have point data and all the points have equal weights. Need to create heat map based upon the concentration.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2011 16:13:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55133#M4854</guid>
      <dc:creator>nidhiarora</dc:creator>
      <dc:date>2011-07-12T16:13:15Z</dc:date>
    </item>
    <item>
      <title>Simlar but different</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55134#M4855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am writing a script in python that uses the Kernel Density tool.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am having problems specifying the output raster. In the tool from the toolbox there is a field to specify the output location (which the default is giving me an error), but when using the python window it doesnt give me a space to designate the output location.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The syntax from the esri website is &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;KernelDensity (in_features, population_field, {cell_size}, {search_radius}, {area_unit_scale_factor})&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there anyway to give it an output location other than the default?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help would be much appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cody&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Aug 2011 18:33:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55134#M4855</guid>
      <dc:creator>CodyPriest</dc:creator>
      <dc:date>2011-08-17T18:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Simlar but different</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55135#M4856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Did you ever figure this out? I am having the same issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I am writing a script in python that uses the Kernel Density tool.&lt;BR /&gt;&lt;BR /&gt;I am having problems specifying the output raster. In the tool from the toolbox there is a field to specify the output location (which the default is giving me an error), but when using the python window it doesnt give me a space to designate the output location.&lt;BR /&gt;&lt;BR /&gt;The syntax from the esri website is &lt;BR /&gt;KernelDensity (in_features, population_field, {cell_size}, {search_radius}, {area_unit_scale_factor})&lt;BR /&gt;&lt;BR /&gt;Is there anyway to give it an output location other than the default?&lt;BR /&gt;&lt;BR /&gt;Any help would be much appreciated.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;Cody&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 15:01:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55135#M4856</guid>
      <dc:creator>ShaneBailey</dc:creator>
      <dc:date>2012-01-06T15:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55136#M4857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We're implementing heatmapping for an update to the Public Information Map template using Heatmap.js&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Screens attached on how it looks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's the link. Let me know if you need the source code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://www.patrick-wied.at/static/heatmapjs/"&gt;http://www.patrick-wied.at/static/heatmapjs/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jan 2012 01:51:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55136#M4857</guid>
      <dc:creator>MattDriscoll</dc:creator>
      <dc:date>2012-01-07T01:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55137#M4858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Matt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Let me know if you need the source code.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd like the source code please. Stephen dot Lead at Gmail dot com.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Jan 2012 22:59:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55137#M4858</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2012-01-08T22:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55138#M4859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Matt,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I'd like the source code please. Stephen dot Lead at Gmail dot com.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Steve&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sent.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;BTW the heatmapping uses HTML5 so no IE6, 7 or 8 support.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2012 15:05:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55138#M4859</guid>
      <dc:creator>MattDriscoll</dc:creator>
      <dc:date>2012-01-09T15:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55139#M4860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have been trying to come up with this myself. I would love the source code myself if possible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tony&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;mons0160 at gmail dot com&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Feb 2012 04:54:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55139#M4860</guid>
      <dc:creator>TonyMonsour</dc:creator>
      <dc:date>2012-02-12T04:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55140#M4861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I have been trying to come up with this myself. I would love the source code myself if possible.&lt;BR /&gt;Thanks,&lt;BR /&gt;Tony&lt;BR /&gt;mons0160 at gmail dot com&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if you got the code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2012 22:10:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55140#M4861</guid>
      <dc:creator>MattDriscoll</dc:creator>
      <dc:date>2012-02-13T22:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmaps</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55141#M4862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This code is now here: &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=3a6d8158252e4b96a8ecfb8b912df78d"&gt;http://www.arcgis.com/home/item.html?id=3a6d8158252e4b96a8ecfb8b912df78d&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 01:16:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/heatmaps/m-p/55141#M4862</guid>
      <dc:creator>MattDriscoll</dc:creator>
      <dc:date>2012-07-23T01:16:06Z</dc:date>
    </item>
  </channel>
</rss>

