I've got a dataset of refineries in Texas (GeoJSON here - https://pastebin.com/R0D9fif9 ):
Name,Latitude,Longitude
Marathon Petroleum,29.374722,-94.933611
Marathon Petroleum,29.368733,-94.903253
Valero,29.367617,-94.909515
LyondellBasell,29.71584,-95.234814
Valero,29.722213,-95.255198
Exxon,29.743865,-95.009208
Shell,29.720425,-95.12495
Petrobras,29.722466,-95.208807
I would like to create a printed map out of these points. But they lie too closely together at a given resolution.
Since every refinery should get mentioned in the legend, I can't cluster. So I would like to
Get the centroid - that was easy
import json import csv from shapely.geometry import shape, Point, MultiPoint with open('refineries.csv', 'rU') as infile: reader = csv.DictReader(infile) data = {} for row in reader: for header, value in row.items(): try: data[header].append(value) except KeyError: data[header] = [value] listo = list(zip(data['Longitude'], data['Latitude'])) points1 = MultiPoint(points=listo) points = MultiPoint([(-94.933611, 29.374722), (-94.903253, 29.368733), (-94.909515, 29.367617), (-95.234814, 29.71584), (-95.255198, 29.722213), (-95.009208, 29.743865), (-95.12495, 29.720425), (-95.208807, 29.722466)]) print(points.centroid)
Shift all points away from the centroid until a minimum distance between all is reached
May you please help me here? Thanks in advance!