-
Notifications
You must be signed in to change notification settings - Fork 1
/
mapillary_crawler.py
181 lines (158 loc) · 6.47 KB
/
mapillary_crawler.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import os
import time
from pathlib import Path
from filelock import FileLock
from shapely.geometry import box, Point, shape
import geopandas as gpd
import concurrent.futures
import requests
from tqdm import tqdm
import wget
import json
import pandas as pd
def main():
if not os.path.exists("bcn/terme-municipal.geojson"):
site_url = 'https://raw.githubusercontent.com/martgnz/bcn-geodata/master/terme-municipal/terme-municipal.geojson'
file_name = wget.download(site_url, out='bcn/')
df_places = gpd.read_file('bcn/terme-municipal.geojson')
bcn_mp = df_places["geometry"].values[0]
bp = Path("bcn")
ACC_TOK = os.environ.get("MAPILLARY_ACC_TOK")
df = pd.DataFrame(columns=['id', 'url', 'lat', 'long', 'district'])
filename = 'bcn/mapillary_raw.csv'
df.to_csv(filename, index=False)
start = time.perf_counter()
crawl_multipolygon(bp, bcn_mp[0], ACC_TOK, filename, force_new_ids=True)
finish = time.perf_counter()
print(f'Finished in {round(finish-start, 2)} seconds')
def crawl_box(bounds, token):
coords = "{},{},{},{}".format(*bounds)
url = "https://graph.mapillary.com/images?access_token="+token+"&fields=id&bbox="+coords
payload={}
headers = {}
try:
response = requests.get(url, headers=headers, data=payload)
response = response.json()
while ("error" in response):
print("Error, retrying ", url)
response = requests.get(url, headers=headers, data=payload)
response = response.json()
except Exception as exc:
print('%s generated an exception: %s' % (url, exc))
raise exc
return response
def crawl_box_rec(executor, lock, csv_file, token, mp, bbox):
try:
if not mp.intersects(bbox):
print("Box is outside multipolygon, not crawling")
return
bounds = bbox.bounds
response = crawl_box(bounds, token)
images = response["data"]
if len(images) == 2000:
print("Splitting box ", bounds)
# Too many images, split box into 4
half_point_x = (bounds[0] + bounds[2]) / 2.
half_point_y = (bounds[1] + bounds[3]) / 2.
bboxes = [box(bounds[0], bounds[1], half_point_x, half_point_y),
box(half_point_x, bounds[1], bounds[2], half_point_y),
box(bounds[0], half_point_y, half_point_x, bounds[3]),
box(half_point_x, half_point_y, bounds[2], bounds[3])
]
futures = []
for bb in bboxes:
future = executor.submit(crawl_box_rec, executor, lock, csv_file, token, mp, bb)
futures.append(future)
concurrent.futures.wait(futures)
else:
print("Finished box ", bounds, " with ", len(images), " image candidates")
with lock:
with open(csv_file, "a") as f:
f.writelines([image["id"]+"\n" for image in images])
except Exception as exc:
print("Exception:",exc)
def ids_filename(bp):
csv_file = bp / "ids.csv"
return csv_file
# Crawls ids and stores them in ids.csv file
def crawl_multipolygon_ids(basepath:Path, mp, token:str, df, force_new_ids=True):
bbox = box(*mp.bounds)
basepath.mkdir(exist_ok=True)
lock_filename = basepath / "ids.csv.lock"
lock = FileLock(lock_filename)
csv_file = ids_filename(basepath)
if force_new_ids:
with open(csv_file,"w") as f:
pass
else:
csv_file.touch()
with concurrent.futures.ThreadPoolExecutor(max_workers=500) as executor:
future = executor.submit(crawl_box_rec, executor, lock, csv_file, token, mp, bbox)
try:
print("Finished all", future.result())
except Exception as exc:
print('%s generated an exception: %s' % (bbox.bounds, exc))
def get_info_from_id(index, token):
url = "https://graph.mapillary.com/"+str(index)+"?access_token="+token+"&fields=id,computed_geometry,detections.value,captured_at,thumb_1024_url,height,width"
payload={}
headers = {}
# retrieve data of a specific image from its ID
response = requests.get(url, headers=headers, data=payload).json()
return response
def make_file_name(basepath:Path, index, prefix=".png"):
start = 0
path = basepath
for i in range(3):
end = start + 2
path = path / index[start:end]
start = end
path.mkdir(parents=True, exist_ok=True)
outfile = path / (index + prefix)
return outfile
def download_image(basepath:Path, d):
index = d['id']
url = d['thumb_1024_url']
outfile = make_file_name(basepath, index)
if not outfile.exists():
img = requests.get(url)
with open(outfile, "wb") as f:
f.write(img.content)
def process_index(basepath:Path, mp, token, index, df):
d = get_info_from_id(index, token)
df_places = gpd.read_file('bcn/districtes.geojson')
coord = d["computed_geometry"]["coordinates"]
p = Point(coord[0],coord[1])
if mp.contains(p):
for district in range(0,len(df_places)):
try:
polygon = shape(df_places['geometry'][district])
except:
print("Error")
continue
if polygon.contains(p):
new_row = pd.DataFrame({'id': d['id'], 'url': d['thumb_1024_url'], 'lat': coord[1], 'long': coord[0],
'district': df_places['NOM'][district]}, index=[0])
new_row.to_csv(df, index=False, header=False, mode='a')
def bunchify(l, size):
n = len(l)
start = 0
while start <= n:
end = min(start + size, n + 1)
yield l[start:end]
start = end
def process_id_bunch(bp, mp, token, id_bunch, df):
with concurrent.futures.ThreadPoolExecutor(max_workers=100) as executor:
executor.map(lambda index:process_index(bp, mp, token, index, df), id_bunch)
def process_all_ids(bp, mp, token, ids, df, bunch_size=2000):
for id_bunch in tqdm(bunchify(ids, bunch_size)):
process_id_bunch(bp, mp, token, id_bunch, df)
def crawl_multipolygon(basepath:Path, mp, token:str, df, force_new_ids=False):
csv_file = ids_filename(basepath)
if not csv_file.exists() or force_new_ids:
crawl_multipolygon_ids(basepath, mp, token, df, force_new_ids=True)
with open(csv_file,"r") as f:
ids = f.read().splitlines()
print(len(ids))
process_all_ids(basepath, mp, token, ids, df)
if __name__ == '__main__':
main()