]> git.openstreetmap.org Git - nominatim.git/blob - mytests/random_points_bbox.py
Tested Version of new Tiger line storage format.
[nominatim.git] / mytests / random_points_bbox.py
1 import numpy as np
2
3 def getPoints(num, sw_lng, sw_lat, ne_lng, ne_lat):
4     aResult = np.empty(shape=(num,2))
5     for i in range(0,num):
6         aResult[i] = [np.random.uniform(ne_lng, sw_lng), np.random.uniform(sw_lat, ne_lat)]
7     return aResult