forked from maptiler/epsg.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CRS_exceptions.py
executable file
·217 lines (195 loc) · 7.13 KB
/
CRS_exceptions.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
CRS_EXCEPTATIONS = 'CRS_exceptions.csv'
INDEX = 'index'
import sys
import whoosh.index
import whoosh.qparser
import whoosh.fields
import csv
import os.path
import time
exceptations_mod_time=time.gmtime(os.path.getmtime(CRS_EXCEPTATIONS))
# exceptations_create_time=time.gmtime(os.path.getctime(CRS_EXCEPTATIONS))
index_mod_time=time.gmtime(os.path.getmtime(INDEX))
index_create_time=time.gmtime(os.path.getctime(INDEX))
# print "create CRS_ex: %s" % exceptations_create_time
# print "create index: %s" % index_create_time
# print
# print "last modified CRS_ex: %s" % exceptations_mod_time
# print "last modified index: %s" % index_mod_time
do_it = True
if exceptations_mod_time>=index_mod_time or index_mod_time!=index_create_time: # index is OLDER then exceptations
do_it = True
if do_it == True:
###############################################################################
print "INICIALIZING"
###############################################################################
crs_ex_line = {}
try:
with open(CRS_EXCEPTATIONS) as crs_ex:
text = csv.reader(crs_ex, delimiter = ',')
# skip the header
next(text, None)
for row in text:
crs_ex_line[row[0]] = row
#print crs_ex_line['4326'][2]
#print crs_ex_line
except:
print "!!! FAILED: NO CRS_EXCEPTATIONS !!!"
sys.exit(1)
try:
ix = whoosh.index.open_dir(INDEX)
except:
print "!!! FAILED: Connection to Index !!!"
sys.exit(1)
###############################################################################
print "UPDATING INDEX"
###############################################################################
for item in crs_ex_line:
alt_code = crs_ex_line[item][3].split(",")
doc = {}
# alt_code = []
# try:
# alt_code.append(str(crs_ex_line[item][3]))
# except:
# if crs_ex_line[item][3] != '':
# alt_code = [str(x) for x in crs_ex_line[item][3].split(",")]
# #if alt_code == []:
# # alt_code = None
with ix.searcher() as searcher:
parser = whoosh.qparser.QueryParser("code", ix.schema)
code_query = parser.parse(str(item) + " kind:CRS")
code_result = searcher.search(code_query)
if not code_result:
deprecated = 0
if "deprecated" in crs_ex_line[item][2]:
deprecated = 1
doc = {
'code':item.decode('utf-8'),
'code_id':item.decode('utf-8'),
'name': crs_ex_line[item][2].decode('utf-8'),
'alt_title': u"",
'alt_description' : crs_ex_line[item][4].decode('utf-8'),
'alt_code' : alt_code,
'code_trans' : 0,
'area_trans' : u"",
'accuracy' : u"",
'kind': u"CRS",
'area': u"",
'deprecated': deprecated,
'trans' : [],
'primary' : 0,
'description': u"",
'alt_name' : u"",
'trans_alt_name' : u"",
'trans_remarks': u"",
'bbox': u"",
'scope': u"",
'remarks': u"",
'information_source': u"",
'revision_date': u"",
'datum' : u"",
'geogcrs': u"",
#'children_code' : u"",
'data_source' : u"",
'uom_code' : u"",
'uom' : u"",
'target_uom': u"",
'primem' : u"",
'greenwich_longitude' : u"",
'concatop' : u"",
'method' : u"",
'files' : u"",
'reverse' : u"",
'orientation' : u"",
'abbreviation' : u"",
'order' : u"",
'area_code' : u"",
'area_trans_code': u"",
'ellipsoid' : u"",
'cs': u"",
}
with ix.writer() as writer:
writer.add_document(**doc)
elif code_result:
alt_title = u""
for result in code_result:
if 'alt_title' in result:
if str(result['name']) != str(result['alt_title']) and str(result['name']) != str(crs_ex_line[item][2].decode('utf-8')):
alt_title = crs_ex_line[item][2].decode('utf-8')
else:
alt_title = u""
area_trans_code = u""
if 'area_trans_code' in result:
area_trans_code = result['area_trans_code']
boost = 0
if result['kind'] == "CRS-PROJCRS":
boost = 0.2
if result['kind'] == "CRS-GEOGCRS" or result['kind'] == "CRS-GEOG3DCRS":
boost = 0.05
# boost by code from csv file
importance = 0
try:
importance = crs_ex_line[item][1]
if importance == u"":
importance = 0
except:
pass
score = float((1 + boost) * (1 + float(importance)*4))
doc = {
'code': result['code'],
'code_id':result['code_id'],
'code_trans' : result['code_trans'],
'name': result['name'],
'alt_title': alt_title ,
'alt_name' : result['alt_name'],
'kind': result['kind'],
'area': result['area'],
'deprecated': result['deprecated'],
'trans' : result['trans'],
'trans_alt_name' : result['trans_alt_name'],
'trans_remarks': result['trans_remarks'],
'area_trans' : result['area_trans'],
'accuracy' : result['accuracy'],
'bbox': result['bbox'],
'scope': result['scope'],
'remarks': result['remarks'],
'information_source': result['information_source'],
'revision_date': result['revision_date'],
'datum' : result['datum'],
'geogcrs': result['geogcrs'],
#'children_code' : result['children_code'],
'data_source' : result['data_source'],
'uom_code' : result['uom_code'],
'uom' : result['uom'],
'target_uom': result['target_uom'],
'primem' : result['primem'],
'greenwich_longitude' : result['greenwich_longitude'],
'concatop' : result['concatop'],
'method' : result['method'],
'files' : result['files'],
'reverse' : result['reverse'],
'orientation' : result['orientation'],
'abbreviation' : result['abbreviation'],
'order' : result['order'],
'description':result['description'],
'primary' : result['primary'],
'code_id':item.decode('utf-8'),
'alt_description' : crs_ex_line[item][4].decode('utf-8'),
'alt_code' : alt_code,
'area_code' : result['area_code'],
'area_trans_code' : area_trans_code,
'ellipsoid' : result['ellipsoid'],
'cs': result['cs'],
'_boost': score
}
with ix.writer() as writer:
writer.update_document(**doc)
###############################################################################
print "FINISH"
###############################################################################
else:
###############################################################################
print "NOT NECESSARY TO UPDATE DATABASE!"
###############################################################################