heatmap
heatmap copied to clipboard
Python module to create heatmaps
Made some small changes to support Python 3; printing, exception handling, import, and file handling. Changed how the library is imported, as the library file was renamed when building for...
I'm trying to create a KML file with a dot with custom opacity for the heatmap. The dots opacity/strength will warry on my gps signal strength. I also know the...
Hi there, I'm new to python but I saw your module for GoogleEarth and really really want to use it. I've managed to install the module but am struggling to...
Adds python3 support from #23 and based on work from @mpern . All changes backwards compatible with 2.6 and 2.7. Added Travis builds for 2.6,2.7,3.2,3.3,3.4 Added different data type support...
In the current implementation, each input point is directly translated into an image of DOTSIZE pixels and blended in. If there are a large number of points relative to the...
If input points are lat/long and cover a reasonably large distance (10s of miles) the resulting points will be slightly off due to the lack of mercator projections. The translation...
Have a fork based on work from @mpern port to python3 but with the latest code base. Changes include map as iter, subscript in lambda functions, print as a function...
SaveKML incorrectly computes the east/west boundaries from the data set when no area is specified when calling heatmap(). To reproduce, create any dataset with a wide range of longitude points...
saveKML() assumes: - the inputs are a set of a (latitude, longitude) coordinates. - the minimum latitude is east - the maximum latitude is west - the minimum longitude is...
whats the best way to calculate the bounding box for a heatmap of geo points (lng/lat)? The auto calculated way cuts off the circles at the edges of the image...