-
Notifications
You must be signed in to change notification settings - Fork 66
/
geoscape.py
269 lines (200 loc) · 9.06 KB
/
geoscape.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
# import io
import multiprocessing
import math
import os
# import platform
import psycopg
import settings
import subprocess
# import sys
# takes a list of sql queries or command lines and runs them using multiprocessing
def multiprocess_list(mp_type, work_list, logger):
pool = multiprocessing.Pool(processes=settings.max_processes)
num_jobs = len(work_list)
if mp_type == "sql":
results = pool.imap_unordered(run_sql_multiprocessing, work_list)
else:
results = pool.imap_unordered(run_command_line, work_list)
pool.close()
pool.join()
result_list = list(results)
num_results = len(result_list)
if num_jobs > num_results:
logger.warning("\t- A MULTIPROCESSING PROCESS FAILED WITHOUT AN ERROR\nACTION: Check the record counts")
for result in result_list:
if result != "SUCCESS":
logger.info(result)
def run_sql_multiprocessing(the_sql):
pg_conn = psycopg.connect(settings.pg_connect_string)
pg_conn.autocommit = True
pg_cur = pg_conn.cursor()
# set raw gnaf database schema (it's needed for the primary and foreign key creation)
if settings.raw_gnaf_schema != "public":
pg_cur.execute(f"SET search_path = {settings.raw_gnaf_schema}, public, pg_catalog")
try:
pg_cur.execute(the_sql)
result = "SUCCESS"
except Exception as ex:
result = f"SQL FAILED! : {the_sql} : {ex}"
pg_cur.close()
pg_conn.close()
return result
def run_command_line(cmd):
# run the command line without any output (it'll still tell you if it fails miserably)
try:
f_null = open(os.devnull, "w")
subprocess.call(cmd, shell=True, stdout=f_null, stderr=subprocess.STDOUT)
result = "SUCCESS"
except Exception as ex:
result = f"COMMAND FAILED! : {cmd} : {ex}"
return result
def open_sql_file(file_name):
sql = open(os.path.join(settings.sql_dir, file_name), "r").read()
return prep_sql(sql)
# change schema names in an array of SQL script if schemas not the default
def prep_sql_list(sql_list):
output_list = []
for sql in sql_list:
output_list.append(prep_sql(sql))
return output_list
# set schema names in the SQL script
def prep_sql(sql):
if settings.raw_gnaf_schema is not None:
sql = sql.replace(" raw_gnaf.", f" {settings.raw_gnaf_schema}.")
if settings.raw_admin_bdys_schema is not None:
sql = sql.replace(" raw_admin_bdys.", f" {settings.raw_admin_bdys_schema}.")
if settings.gnaf_schema is not None:
sql = sql.replace(" gnaf.", f" {settings.gnaf_schema}.")
if settings.admin_bdys_schema is not None:
sql = sql.replace(" admin_bdys.", f" {settings.admin_bdys_schema}.")
if settings.pg_user != "postgres":
# alter create table script to run with correct Postgres username
sql = sql.replace(" postgres;", f" {settings.pg_user};")
return sql
def split_sql_into_list(pg_cur, the_sql, table_schema, table_name, table_alias, table_gid, logger):
# get min max gid values from the table to split
min_max_sql = f"SELECT MIN({table_gid}) AS min, MAX({table_gid}) AS max FROM {table_schema}.{table_name}"
pg_cur.execute(min_max_sql)
try:
result = pg_cur.fetchone()
min_pkey = int(result[0])
max_pkey = int(result[1])
diff = max_pkey - min_pkey
# Number of records in each query
rows_per_request = int(math.floor(float(diff) / float(settings.max_processes))) + 1
# If less records than processes or rows per request,
# reduce both to allow for a minimum of 15 records each process
if float(diff) / float(settings.max_processes) < 10.0:
rows_per_request = 10
processes = int(math.floor(float(diff) / 10.0)) + 1
logger.info(f"\t\t- running {processes} processes (adjusted due to low row count in table to split)")
else:
processes = settings.max_processes
# create list of sql statements to run with multiprocessing
sql_list = []
start_pkey = min_pkey - 1
for i in range(0, processes):
end_pkey = start_pkey + rows_per_request
where_clause = \
f" WHERE {table_alias}.{table_gid} > {start_pkey} AND {table_alias}.{table_gid} <= {end_pkey}"
if "WHERE " in the_sql:
mp_sql = the_sql.replace(" WHERE ", where_clause + " AND ")
elif "GROUP BY " in the_sql:
mp_sql = the_sql.replace("GROUP BY ", where_clause + " GROUP BY ")
elif "ORDER BY " in the_sql:
mp_sql = the_sql.replace("ORDER BY ", where_clause + " ORDER BY ")
else:
if ";" in the_sql:
mp_sql = the_sql.replace(";", where_clause + ";")
else:
mp_sql = the_sql + where_clause
logger.warning("\t\t- NOTICE: no ; found at the end of the SQL statement")
sql_list.append(mp_sql)
start_pkey = end_pkey
# logger.info("\n".join(sql_list))
return sql_list
except Exception as ex:
logger.fatal(f"Looks like the table in this query is empty: {min_max_sql}\n{ex}")
return None
def multiprocess_shapefile_load(work_list, logger):
pool = multiprocessing.Pool(processes=settings.max_processes)
num_jobs = len(work_list)
results = pool.imap_unordered(intermediate_shapefile_load_step, work_list)
pool.close()
pool.join()
result_list = list(results)
num_results = len(result_list)
if num_jobs > num_results:
logger.warning("\t- A MULTIPROCESSING PROCESS FAILED WITHOUT AN ERROR\nACTION: Check the record counts")
for result in result_list:
if result != "SUCCESS":
logger.info(result)
def intermediate_shapefile_load_step(work_dict):
file_path = work_dict["file_path"]
pg_table = work_dict["pg_table"]
pg_schema = work_dict["pg_schema"]
delete_table = work_dict["delete_table"]
spatial = work_dict["spatial"]
result = import_shapefile_to_postgres(file_path, pg_table, pg_schema, delete_table, spatial)
return result
# imports a Shapefile into Postgres in 2 steps: SHP > SQL; SQL > Postgres
# overcomes issues trying to use psql with PGPASSWORD set at runtime
def import_shapefile_to_postgres(file_path, pg_table, pg_schema, delete_table, spatial):
# delete target table or append to it?
if delete_table:
# add delete and spatial index flag
delete_append_flag = "-d -I"
else:
delete_append_flag = "-a"
# assign coordinate system if spatial, otherwise flag as non-spatial
if spatial:
spatial_or_dbf_flags = f"-s {settings.srid}"
else:
spatial_or_dbf_flags = "-G -n"
# build shp2pgsql command line (note: forces 2D as some files erroneously have Z values in their geometries)
shp2pgsql_cmd = f"shp2pgsql -t 2D {delete_append_flag} {spatial_or_dbf_flags}" \
f" -i \"{file_path}\" {pg_schema}.{pg_table}"
# print(shp2pgsql_cmd)
# convert the Shapefile to SQL statements
try:
process = subprocess.Popen(shp2pgsql_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
sqlobj, err = process.communicate()
except Exception as ex:
return f"Importing {file_path} - Couldn't convert Shapefile to SQL : {ex}"
# prep Shapefile SQL
sql = sqlobj.decode("utf-8") # this is required for Python 3
sql = sql.replace("Shapefile type: ", "-- Shapefile type: ")
sql = sql.replace("Postgis type: ", "-- Postgis type: ")
sql = sql.replace("SELECT DropGeometryColumn", "-- SELECT DropGeometryColumn")
# # bug in shp2pgsql? - an append command will still create a spatial index if requested - disable it
# if not delete_table or not spatial:
# sql = sql.replace("CREATE INDEX ", "-- CREATE INDEX ")
# this is required due to differing approaches by different versions of PostGIS
sql = sql.replace("DROP TABLE ", "DROP TABLE IF EXISTS ")
sql = sql.replace("DROP TABLE IF EXISTS IF EXISTS ", "DROP TABLE IF EXISTS ")
# import data to Postgres
pg_conn = psycopg.connect(settings.pg_connect_string)
pg_conn.autocommit = True
pg_cur = pg_conn.cursor()
try:
pg_cur.execute(sql)
except Exception as ex:
# if import fails for some reason - output sql to file for debugging
file_name = os.path.basename(file_path)
target = open(os.path.join(os.path.dirname(os.path.realpath(__file__)), f"error_debug_{file_name}.sql"), "w")
target.write(sql)
pg_cur.close()
pg_conn.close()
return f"\tImporting {file_name} - Couldn't run Shapefile SQL\nshp2pgsql result was: {ex} "
# Cluster table on spatial index for performance
if delete_table and spatial:
sql = f"ALTER TABLE {pg_schema}.{pg_table} CLUSTER ON {pg_table}_geom_idx"
try:
pg_cur.execute(sql)
except Exception as ex:
pg_cur.close()
pg_conn.close()
return f"\tImporting {pg_table} - Couldn't cluster on spatial index : {ex}"
pg_cur.close()
pg_conn.close()
return "SUCCESS"