-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmapillary_api.py
100 lines (83 loc) · 3.87 KB
/
mapillary_api.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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
go2mapillary
A QGIS plugin
mapillary explorer
-------------------
begin : 2016-01-21
git sha : $Format:%H$
copyright : (C) 2016 by enrico ferreguti
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
import os
import sys
import requests
import webbrowser
from qgis.PyQt.QtCore import QSettings
from qgis.PyQt.QtWidgets import QFileDialog
from qgis.core import QgsMessageLog, Qgis
ROOT = 'https://graph.mapillary.com/'
ACCESS_TOKEN = 'MLY|4756369651124824|daee50b6cb15570a90b6a151bbd97bf3'
DOWNLOAD_ENDPOINT = 'https://d1cuyjsrcm0gby.cloudfront.net/%s/thumb-2048.jpg'
BROWSER_ENDPOINT = 'https://www.mapillary.com/app/?pKey=%s&focus=photo'
def getProxySettings():
s = QSettings() #getting proxy from qgis options settings
if s.value("proxy/proxyEnabled", "") == "true":
return {
'type': s.value("proxy/proxyType", ""),
'host': s.value("proxy/proxyHost", ""),
'port': s.value("proxy/proxyPort", ""),
'user': s.value("proxy/proxyUser", ""),
'password': s.value("proxy/proxyPassword", "")
}
else:
return None
def getProxiesConf():
proxy = getProxySettings()
if proxy and proxy['type'] == 'HttpProxy': # test if there are proxy settings
proxyDict = {
"http" : "http://%s:%s@%s:%s" % (proxy['user'],proxy['password'],proxy['host'],proxy['port']),
"https" : "http://%s:%s@%s:%s" % (proxy['user'],proxy['password'],proxy['host'],proxy['port'])
}
return proxyDict
else:
return None
class mapillaryApi:
def users(self, **kwargs):
return self.proto_method('users', **kwargs)
def sequences(self, **kwargs):
return self.proto_method('sequences', **kwargs)
def image(self, key):
return self.proto_method('images/'+key)
def images(self, **kwargs):
return self.proto_method('images', **kwargs)
def map_features(self, **kwargs):
return self.proto_method('map_features', **kwargs)
def map_features(self, **kwargs):
return self.proto_method('map_features', **kwargs)
def proto_method(self, endpoint, **kwargs):
kwargs['access_token'] = ACCESS_TOKEN
res = requests.get(ROOT+endpoint, params=kwargs, proxies=getProxiesConf())
if res.status_code == 200:
return res.json()
else:
QgsMessageLog.logMessage("mapillary connection error: %d" % res.status_code, tag="go2mapillary",level=Qgis.Info)
def download(self,key):
res = requests.get(DOWNLOAD_ENDPOINT % key, proxies=getProxiesConf())
if res.status_code == 200:
fileName = QFileDialog.getSaveFileName(None,'Save mapillary Image',key+'.jpg',"JPG (*.jpg)")
if fileName:
with open(fileName[0], 'wb') as f:
f.write(res.content)
def browser(self,key):
webbrowser.open_new_tab(BROWSER_ENDPOINT % key)