J.J. Guy
J.J. Guy
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...
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...
Running easy_install heatmap should also install PIL / Pillow if it's not already on the system. As currently written, it's not. ``` [root@localhost pip-1.2.1]# easy_install heatmap Searching for heatmap Reading...
feed.py", line 175, in validate() has the following line: ``` if not re.match("^[a-zA-Z0-9-_.]+$", self.data["id"]): ``` The use of regex presumes the report id field is a string. If it's an...
``` Traceback (most recent call last): File "/usr/lib/python2.6/site-packages/cballiance/feed_blueprint.py", line 93, in get_feed feed_io.write(feed.dump(validate=False)) File "/usr/lib/python2.6/site-packages/cbfeeds/feed.py", line 25, in dump return json.dumps(self.data, cls=CbJSONEncoder, indent=2) File "/usr/lib64/python2.6/json/__init__.py", line 237, in dumps **kw).encode(obj)...