The points module

The points module

This notebook demonstrates how to use the randomly.points module.

Note

This assumes you have already installed the randomly package.

Poisson points

Currently, the module only contains a single function, generate_poisson_points(). This function will generate random points in a defined rectangular space.

The function accepts two parameters:

  • bounds: a tuple (minx, miny, maxx, maxy) of the bounding box.

  • rate: theoretical events per unit area

from randomly.points import generate_poisson_points

Let’s generate random points within a 100 x 100 square with origin at (0, 0) at a rate of 0.01 (1%).

points = generate_poisson_points(bounds=(0, 0, 100, 100), rate=0.01)

With an area of 10,000 square units, we would expect about 100 points. If we look at the shape of the output array, we should see somewhere around 100 points represented.

points.shape
(93, 2)

Our points variable is a set of X-Y coordinate pairs.

points
array([[13.44282934, 55.17899021],
       [21.93647998, 51.86962319],
       [74.29871785,  8.72693531],
       [74.55576399, 95.3635709 ],
       [70.13819922, 68.78313533],
       [39.97938668, 22.56507099],
       [61.62855735, 83.48892149],
       [50.13068599, 34.37479094],
       [ 0.52258013, 34.16309366],
       [81.19152855, 59.48244415],
       [ 7.87068365, 52.53644301],
       [46.33746142, 88.61423971],
       [69.7533858 , 64.84584741],
       [61.70554506, 22.00660743],
       [34.81137655, 14.08068159],
       [83.01353003, 55.36058804],
       [39.79338152, 50.60544994],
       [43.11045842, 57.52901738],
       [42.32838378, 19.57050657],
       [46.64694168, 64.2988037 ],
       [56.61345046, 58.23809449],
       [33.66915047,  6.86997989],
       [52.33003295, 28.46337299],
       [60.45308919,  5.84720071],
       [93.87078746,  6.07583996],
       [26.56418088, 63.50334791],
       [81.34792927, 33.7907418 ],
       [29.04727724, 82.96335365],
       [38.12429858, 93.07593705],
       [16.62098308, 65.56662746],
       [46.15369555, 70.64821703],
       [12.50864033, 75.04003801],
       [89.32984033, 32.26245785],
       [33.13650731, 31.85376644],
       [74.18736257, 43.48658942],
       [49.56763471, 96.57224853],
       [66.34713267, 53.91027552],
       [79.15137587, 44.74943813],
       [50.74169717, 46.28406668],
       [ 4.90695401, 44.21698351],
       [93.48629644, 42.59597478],
       [47.45265367, 15.99376056],
       [88.98338133, 49.06579937],
       [60.51460567, 47.0151535 ],
       [59.87652939, 45.33242036],
       [45.24868264, 11.77366988],
       [80.48186828, 66.00388119],
       [67.16644752, 78.51770414],
       [63.58638859, 27.2765983 ],
       [98.71746483, 45.80609183],
       [43.50942856,  2.88158772],
       [86.55671992, 52.31372166],
       [13.8934984 , 32.55909991],
       [14.61406983, 32.11798987],
       [61.05491975,  2.14257015],
       [22.17136291, 17.25443294],
       [44.00041167, 81.01764176],
       [27.65393291, 56.7120346 ],
       [29.50316919, 87.50009805],
       [82.09811079, 63.45849961],
       [84.83065465, 16.50817459],
       [87.11508142, 54.19494168],
       [79.2994773 ,  7.78286902],
       [51.15755117, 51.75294567],
       [39.8263014 , 89.37662105],
       [17.76101908,  1.12612769],
       [95.69584747, 95.10010469],
       [75.33486739, 81.56184475],
       [ 5.93950161, 68.39185287],
       [91.63124371, 82.99985741],
       [ 2.97878641, 61.23592445],
       [43.1208419 , 63.74342691],
       [79.54705511, 47.66279529],
       [52.91615971, 13.57103243],
       [33.73203167, 92.77651243],
       [74.61292933,  9.76719729],
       [80.21458845, 47.40005415],
       [ 1.01987095,  4.81149147],
       [76.5954557 , 35.37527665],
       [49.2765627 , 31.4621533 ],
       [54.39057373, 31.46138227],
       [61.95792768, 78.44088468],
       [69.61068366, 24.24521414],
       [49.95982466, 83.58132194],
       [61.55193293, 60.07821979],
       [77.08623547, 24.61577766],
       [50.08555975, 88.33415102],
       [39.9716586 , 31.28333817],
       [27.70993201, 68.86036443],
       [74.51548541, 94.47096605],
       [27.28935406, 81.36209674],
       [ 1.78915778, 76.12197148],
       [63.63790651, 92.63866452]])