-
Notifications
You must be signed in to change notification settings - Fork 104
/
random_example.py
executable file
·75 lines (63 loc) · 2.47 KB
/
random_example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python3
#
# Plots some random data to a heatmap. This is not mainly useful for
# testing and to illustrate how to use heatmap.py from other python code.
#
# Copyright 2014 Seth Golub http://www.sethoscope.net/heatmap/
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General
# Public License along with this program. If not, see
# <http://www.gnu.org/licenses/>.
from __future__ import print_function
import random
import logging
import sys
import heatmap as hm
from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter
def shapes_generator(count):
for i in range(count):
a = random.gauss(10, 1.0)
b = random.gauss(10, 2.0)
yield hm.Point(hm.LatLon(a, b),)
def setup_config(count):
config = hm.Configuration()
config.shapes = shapes_generator(count)
config.projection = hm.EquirectangularProjection()
config.projection.pixels_per_degree = 30
config.decay = 1
config.kernel = hm.LinearKernel(5)
config.background = 'black'
config.fill_missing()
return config
def main():
logging.basicConfig(format='%(relativeCreated)8d ms // %(message)s')
description = 'plot random points'
parser = ArgumentParser(description=description,
formatter_class=ArgumentDefaultsHelpFormatter)
parser.add_argument('--output', metavar='FILE', default='/tmp/out.png')
parser.add_argument('-v', '--verbose', action='store_true')
parser.add_argument('--debug', action='store_true')
parser.add_argument('count', type=int)
args = parser.parse_args()
if args.verbose:
logging.getLogger().setLevel(logging.INFO)
if args.debug:
logging.getLogger().setLevel(logging.DEBUG)
logging.debug('python version %s' % str(sys.version))
config = setup_config(args.count)
matrix = hm.process_shapes(config)
matrix = matrix.finalized()
image = hm.ImageMaker(config).make_image(matrix)
image.save(args.output)
if __name__ == '__main__':
main()