-
Notifications
You must be signed in to change notification settings - Fork 0
/
natusfera_qgis.py
335 lines (310 loc) · 13.8 KB
/
natusfera_qgis.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
# -*- coding: utf-8 -*-
from PyQt4.QtCore import QUrl, QCoreApplication, Qt, QThread, QObject, SIGNAL
from PyQt4.QtGui import QAction, QIcon, QFileDialog, QMessageBox, QDialog
from PyQt4 import uic
from qgis.core import QgsVectorLayer, QgsMapLayerRegistry
import resources, urllib2, os.path, unicodedata, re, csv
from urllib2 import HTTPError, URLError
BASE_FORM, _ = uic.loadUiType(
os.path.join(os.path.dirname(__file__), 'natusfera_qgis_dialog_base.ui'))
class NatusferaQGISDialogBase(QDialog, BASE_FORM):
def __init__(self, parent=None):
# set up dialog
super(NatusferaQGISDialogBase, self).__init__(parent)
self.setWindowFlags(self.windowFlags() | Qt.CustomizeWindowHint)
self.setWindowFlags(self.windowFlags() & ~Qt.WindowMaximizeButtonHint)
self.setupUi(self)
def closeEvent(self, event):
# clean dialog
self.username_line_edit.clear()
self.username_line_edit.setFocus()
self.project_line_edit.clear()
self.species_line_edit.clear()
# close dialog
event.accept()
class DownloadingThread(QThread):
def __init__(
self, parent, csv_page, csv_totalpages, csv_dir, csv_corrected_dir,
url):
# set up thread
QThread.__init__(self, parent)
# set up variables
self.parent = parent
self.csv_page = csv_page
self.csv_totalpages = csv_totalpages
self.csv_dir = csv_dir
self.csv_corrected_dir = csv_corrected_dir
self.url = url
self.csv_invalid_fields = []
def run(self):
# open csv files
with open(self.csv_dir, 'w+') as csv_file, \
open(self.csv_corrected_dir, 'w') as csv_corrected_file:
# get csv headers
csv_headers = urllib2.urlopen(
self.url.format(1)).readline().replace('\n', '').split(',')
# add them to both csv files
csv_file.write(','.join(csv_headers) + '\n')
csv_corrected_file.write(','.join(csv_headers) + '\n')
# for each natusfera csv page
for page in range(self.csv_page, self.csv_totalpages):
# write csv lines excepting headers
csv_file.writelines(
urllib2.urlopen(self.url.format(page)).readlines()[1:])
# update download dialog
self.emit(SIGNAL('update'))
# set up csv writer
csv_file.seek(0)
csv_writer = csv.DictWriter(
csv_corrected_file, fieldnames = csv_headers)
# for each csv row
for csv_row in csv.DictReader(csv_file):
# if row has invalid latitude and/or invalid longitude
if csv_row['Latitude'] == '' or csv_row['Longitude'] == '':
# add field to 'csv_invalid_fields' list
if csv_row['Scientific name'] != '':
self.csv_invalid_fields.append(
csv_row['Scientific name'])
else:
self.csv_invalid_fields.append(
'Unspecified scientific name')
# else (if latitude and longitude are correct)
else:
# write row to the corrected csv file
csv_writer.writerow(csv_row)
# display download info
self.emit(SIGNAL('info'))
DOWNLOADING_FORM, _ = uic.loadUiType(
os.path.join(os.path.dirname(__file__),
'natusfera_qgis_dialog_downloading.ui'))
class NatusferaQGISDialogDownloading(QDialog, DOWNLOADING_FORM):
def __init__(
self, parent, csv_page, csv_totalpages, text, csv_dir,
csv_corrected_dir, url):
# set up dialog
super(NatusferaQGISDialogDownloading, self).__init__(parent)
self.setWindowFlags(self.windowFlags() | Qt.CustomizeWindowHint)
self.setWindowFlags(self.windowFlags() & ~Qt.WindowMaximizeButtonHint)
self.setupUi(self)
self.downloading_progress_bar.setValue(csv_page)
self.downloading_progress_bar.setMaximum(csv_totalpages)
self.downloading_label.setText(text)
# set up variables
self.csv_page = csv_page
self.csv_dir = csv_dir
self.csv_corrected_dir = csv_corrected_dir
# create thread and make connections
self.downloading_thread = DownloadingThread(
self, csv_page, csv_totalpages + 1, csv_dir, csv_corrected_dir, url)
QObject.connect(self.downloading_thread, SIGNAL('update'), self.update)
QObject.connect(self.downloading_thread, SIGNAL('info'), self.info)
self.downloading_thread.finished.connect(lambda: self.close())
self.downloading_cancel_button.clicked.connect(lambda: self.close())
self.downloading_thread.start()
# display dialog
self.show()
def update(self):
# update progress bar
self.csv_page += 1
self.downloading_progress_bar.setValue(self.csv_page)
def info(self):
# if errors ocurred
if len(self.downloading_thread.csv_invalid_fields) > 0:
# set up info dialog
download_info = QMessageBox()
download_info.setWindowTitle('Invalid fields found')
download_info.setText(
'{0} invalid fields were found and deleted'.format(
len(self.downloading_thread.csv_invalid_fields)))
download_info.setDetailedText(
'\n'.join(self.downloading_thread.csv_invalid_fields))
download_info.setStandardButtons(QMessageBox.Ok)
download_info.setDefaultButton(QMessageBox.Ok)
download_info.setEscapeButton(QMessageBox.Ok)
# display info dialog
ret = download_info.exec_()
def closeEvent(self, event):
# remove csv
if os.path.isfile(self.csv_dir):
os.remove(self.csv_dir)
# if thread is running (this means that the dialog was cancelled)
if self.downloading_thread.isRunning():
# terminate thread
self.downloading_thread.terminate()
# remove corrected csv
if os.path.isfile(self.csv_corrected_dir):
os.remove(self.csv_corrected_dir)
# close dialog
event.accept()
class NatusferaQGIS:
def __init__(self, iface):
# initialize plugin
self.iface = iface
self.plugin_dir = os.path.dirname(__file__)
def initGui(self):
# inti graphical user interface and connect components
self.dialog = NatusferaQGISDialogBase()
self.dialog.load_csv_username_button.clicked.connect(
lambda: self.load(input_type = 'username'))
self.dialog.load_csv_project_button.clicked.connect(
lambda: self.load(input_type = 'project'))
self.dialog.load_csv_species_button.clicked.connect(
lambda: self.load(input_type = 'species'))
self.dialog.load_csv_everything_button.clicked.connect(
lambda: self.load(input_type = 'everything'))
self.dialog.username_line_edit.returnPressed.connect(
lambda: self.load(input_type = 'username'))
self.dialog.project_line_edit.returnPressed.connect(
lambda: self.load(input_type = 'project'))
self.dialog.species_line_edit.returnPressed.connect(
lambda: self.load(input_type = 'species'))
# create an action that will start plugin configuration
self.action = QAction(
QIcon(':/plugins/NatusferaQGIS/icon.png'),
'Natusfera QGIS', self.iface.mainWindow())
# connect the action to the run method
self.action.triggered.connect(lambda: self.dialog.show())
# add toolbar button and menu item
self.iface.addPluginToMenu('Natusfera QGIS', self.action)
self.iface.addToolBarIcon(self.action)
def unload(self):
# removes the plugin menu item and icon from QGIS GUI
self.iface.removePluginMenu('Natusfera QGIS', self.action)
self.iface.removeToolBarIcon(self.action)
def load(self, input_type):
# username input
if input_type == 'username':
# set up url, name and filename
url = 'http://natusfera.gbif.es/observations/'\
'{0}.csv/?page={1}&per_page={2}'
name = self.dialog.username_line_edit.text().lower()
name = unicodedata.normalize('NFKD', name).encode('ASCII', 'ignore')
name = re.sub(' +', ' ', name)
name = name.strip()
filename = name
# project input
elif input_type == 'project':
# set up url, name and filename
url = 'http://natusfera.gbif.es/observations/project/'\
'{0}.csv/?page={1}&per_page={2}'
name = self.dialog.project_line_edit.text().lower()
name = unicodedata.normalize('NFKD', name).encode('ASCII', 'ignore')
name = re.sub(r'([^\s\w])+', ' ', name)
name = re.sub(' +', ' ', name)
name = name.strip()
name = name.replace(' ', '-')
filename = name
# species input
elif input_type == 'species':
# set up url, name and filename
url = 'http://natusfera.gbif.es/observations.csv/'\
'?taxon_name={0}&page={1}&per_page={2}'
name = self.dialog.species_line_edit.text().lower()
name = unicodedata.normalize('NFKD', name).encode('ASCII', 'ignore')
name = re.sub(' +', ' ', name)
name = name.strip()
filename = name.replace(' ', '-')
# everything input
elif input_type == 'everything':
# set up url, name and filename
url = 'http://natusfera.gbif.es/observations.csv/'\
'?taxon_name={0}&page={1}&per_page={2}'
name = ''
filename = 'everything'
if filename == '':
# empty input error
QMessageBox.critical(self.dialog, 'error', 'Please enter text.')
return
try:
name.decode('utf-8')
except UnicodeError:
# ascii error
QMessageBox.critical(
self.dialog, 'error', 'Invalid ascii characters found.')
return
try:
# url_test is a testing variable (will be deleted later)
url_test = urllib2.urlopen(url.format(name, 1, 1))
except HTTPError:
# invalid username error
QMessageBox.critical(self.dialog, 'error', 'Username not found.')
return
except URLError:
QMessageBox.critical(
# internet error
self.dialog, 'error', 'No internet connection.')
return
try:
url_test.info()['X-Page']
except KeyError:
# invalid project error
QMessageBox.critical(self.dialog, 'error', 'Project not found.')
return
if url_test.read() == '':
if input_type == 'species':
# invalid species error
QMessageBox.critical(self.dialog, 'error', 'Species not found.')
return
if input_type == 'username':
# username with no observations error
QMessageBox.critical(
self.dialog, 'error', 'This user has no observations.')
return
if input_type == 'project':
# project with no observations error
QMessageBox.critical(
self.dialog, 'error', 'This project has no observations.')
return
del url_test
# display file dialog and save chosen directory
csv_output = QFileDialog.getExistingDirectory(
self.dialog, 'Working directory')
# if dialog is canceled, return
if not csv_output:
return
if os.path.isdir(csv_output) == False:
# invalid output directory error
QMessageBox.critical(self.dialog, 'error', 'Folder not found.')
return
# set up csv directories
csv_dir = '{0}/.{1}.csv'.format(csv_output, filename)
csv_corrected_dir = '{0}/{1}.csv'.format(csv_output, filename)
# update url template
url = url.format(name, '{0}', 200)
# save http variables
url_info = urllib2.urlopen(url.format(1))
csv_page = int(url_info.info()['X-Page'])
csv_perpage = int(url_info.info()['X-Per-Page'])
csv_totalentries = int(url_info.info()['X-Total-Entries'])
csv_totalpages = float(csv_totalentries) / float(csv_perpage)
del url_info
# if total pages is a decimal number
if csv_totalpages.is_integer() == False:
# convert it to integer and add one
csv_totalpages = int(csv_totalpages) + 1
# start download
dialog_downloading = NatusferaQGISDialogDownloading(
self.dialog, csv_page, csv_totalpages + 1,
'Downloading {0}.csv'.format(filename), csv_dir, csv_corrected_dir,
url)
# while downloading keep updating the user interface
while dialog_downloading.downloading_thread.isRunning():
QCoreApplication.processEvents()
# if csv file does not exist, return
if not os.path.isfile(csv_corrected_dir):
return
# set up QGIS delimited text layer
uri = QUrl.fromLocalFile(csv_corrected_dir)
uri.addQueryItem('type', 'csv')
uri.addQueryItem('xField', 'Longitude')
uri.addQueryItem('yField', 'Latitude')
uri.addQueryItem('spatialIndex', 'no')
uri.addQueryItem('subsetIndex', 'no')
uri.addQueryItem('watchFile', 'no')
uri.addQueryItem('crs', 'EPSG:4326')
layer = QgsVectorLayer(
str(uri.toEncoded()), '{0}_layer'.format(filename), 'delimitedtext')
# display QGIS layer
QgsMapLayerRegistry.instance().addMapLayer(layer)
# close dialog
self.dialog.close()