-
Notifications
You must be signed in to change notification settings - Fork 882
Expand file tree
/
Copy pathbuild_db.py
More file actions
executable file
·1517 lines (1316 loc) · 87 KB
/
build_db.py
File metadata and controls
executable file
·1517 lines (1316 loc) · 87 KB
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
###############################################################################
# $Id$
#
# Project: PROJ
# Purpose: Build SRS and coordinate transform database
# Author: Even Rouault <even.rouault at spatialys.com>
#
###############################################################################
# Copyright (c) 2018, Even Rouault <even.rouault at spatialys.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
###############################################################################
"""
Steps for updating proj.db with the latest EPSG data:
1. Download the latest version of the EPSG registry from epsg.org. Choose the PostgreSQL
scripts. You may need to register a user on the site.
2. Unzip the downloaded file into scripts/
3. Run this script:
> python build_db.py
4. Verify output of the script and fix any errors it may report
5. Update version number in `data/sql/metadata.sql`
6. Update the `PROJ_DB_SQL_EXPECTED_MD5` in `data/CmakeLists.txt`:
Build PROJ with CMake to get the new hash. Update the hash and
build again to verify that the hash is correct.
7. Run the test suite. Fix errors, if any.
"""
import os
import re
import sqlite3
import sys
EPSG_AUTHORITY = 'EPSG'
def ingest_sqlite_dump(cursor, filename):
sql = ''
f = open(filename, 'rb')
# Skip UTF-8 BOM
if f.read(3) != b'\xEF\xBB\xBF':
f.seek(0, os.SEEK_SET)
for line in f.readlines():
line = line.replace(b'\r\n', b'\n')
if sys.version_info >= (3, 0, 0):
line = line.decode('utf-8') #python3
else:
line = str(line) # python2
# Historically this script was developed with code columns using TEXT
# so keep it that way to minimized changes in it, and in the diff of
# generated .sql files
line = line.replace('INTEGER_OR_TEXT', 'TEXT')
# Same for WITHOUT ROWID
line = line.replace('WITHOUT ROWID', '')
sql += line
if sqlite3.complete_statement(sql):
sql = sql.strip()
if sql != 'COMMIT;':
try:
cursor.execute(sql)
except:
print(sql)
raise
sql = ''
def ingest_epsg():
for f in ['PostgreSQL_Data_Script.sql', 'PostgreSQL_Table_Script.sql']:
if not os.path.exists(f):
raise Exception('Missing file: ' + f)
epsg_tmp_db_filename = 'tmp_epsg.db'
if os.path.exists(epsg_tmp_db_filename):
os.unlink(epsg_tmp_db_filename)
conn = sqlite3.connect(epsg_tmp_db_filename)
cursor = conn.cursor()
cursor.execute('PRAGMA journal_mode = OFF;')
ingest_sqlite_dump(cursor, 'PostgreSQL_Table_Script.sql')
ingest_sqlite_dump(cursor, 'PostgreSQL_Data_Script.sql')
cursor.close()
conn.commit()
return (conn, epsg_tmp_db_filename)
def fill_unit_of_measure(proj_db_cursor):
proj_db_cursor.execute(
"INSERT INTO unit_of_measure SELECT ?, uom_code, unit_of_meas_name, unit_of_meas_type, factor_b / factor_c, NULL, deprecated FROM epsg.epsg_unitofmeasure", (EPSG_AUTHORITY,))
def fill_ellipsoid(proj_db_cursor):
proj_db_cursor.execute(
"INSERT INTO ellipsoid SELECT ?, ellipsoid_code, ellipsoid_name, NULL, 'PROJ', 'EARTH', semi_major_axis, ?, uom_code, inv_flattening, semi_minor_axis, deprecated FROM epsg.epsg_ellipsoid", (EPSG_AUTHORITY, EPSG_AUTHORITY))
def fill_extent(proj_db_cursor):
#proj_db_cursor.execute(
# "INSERT INTO extent SELECT ?, extent_code, extent_name, extent_description, bbox_south_bound_lat, bbox_north_bound_lat, bbox_west_bound_lon, bbox_east_bound_lon, deprecatedFROM epsg.epsg_extent", (EPSG_AUTHORITY,))
proj_db_cursor.execute(
"SELECT extent_code, extent_name, extent_description, bbox_south_bound_lat, bbox_north_bound_lat, bbox_west_bound_lon, bbox_east_bound_lon, deprecated FROM epsg.epsg_extent")
res = proj_db_cursor.fetchall()
for (extent_code, extent_name, extent_description, bbox_south_bound_lat, bbox_north_bound_lat, bbox_west_bound_lon, bbox_east_bound_lon, deprecated) in res:
try:
# Some new records have longitudes outside [-180,180]
if bbox_west_bound_lon and bbox_west_bound_lon < -180:
# print( extent_code, extent_name, extent_description, bbox_south_bound_lat, bbox_north_bound_lat, bbox_west_bound_lon, bbox_east_bound_lon, deprecated)
bbox_west_bound_lon += 360
if bbox_east_bound_lon and bbox_east_bound_lon > 180:
# print( extent_code, extent_name, extent_description, bbox_south_bound_lat, bbox_north_bound_lat, bbox_west_bound_lon, bbox_east_bound_lon, deprecated)
bbox_east_bound_lon -= 360
proj_db_cursor.execute(
"INSERT INTO extent VALUES (?,?,?,?,?,?,?,?,?)", (EPSG_AUTHORITY, extent_code, extent_name, extent_description, bbox_south_bound_lat, bbox_north_bound_lat, bbox_west_bound_lon, bbox_east_bound_lon, deprecated))
except sqlite3.IntegrityError as e:
print(e)
print(extent_code, extent_name, extent_description, bbox_south_bound_lat, bbox_north_bound_lat, bbox_west_bound_lon, bbox_east_bound_lon, deprecated)
raise
def fill_scope(proj_db_cursor):
proj_db_cursor.execute(
"INSERT INTO scope SELECT ?, scope_code, scope, deprecated FROM epsg.epsg_scope", (EPSG_AUTHORITY,))
def fill_usage(proj_db_cursor):
proj_db_cursor.execute(
"SELECT usage_code, object_table_name, object_code, extent_code, scope_code FROM epsg.epsg_usage")
res = proj_db_cursor.fetchall()
for (usage_code, object_table_name, object_code, extent_code, scope_code) in res:
if object_table_name == 'epsg_coordinatereferencesystem':
proj_db_cursor.execute('SELECT table_name FROM crs_view WHERE auth_name = ? AND code = ?', (EPSG_AUTHORITY, object_code))
proj_table_name = proj_db_cursor.fetchone()
if proj_table_name is None:
continue
elif object_table_name == 'epsg_coordoperation':
proj_db_cursor.execute("SELECT table_name FROM coordinate_operation_view WHERE auth_name = ? AND code = ? UNION ALL SELECT 'conversion' FROM conversion WHERE auth_name = ? AND code = ?", (EPSG_AUTHORITY, object_code, EPSG_AUTHORITY, object_code))
proj_table_name = proj_db_cursor.fetchone()
if proj_table_name is None:
continue
elif object_table_name == 'epsg_datum':
proj_db_cursor.execute("SELECT 'geodetic_datum' FROM geodetic_datum WHERE auth_name = ? AND code = ? UNION ALL SELECT 'vertical_datum' FROM vertical_datum WHERE auth_name = ? AND code = ? UNION ALL SELECT 'engineering_datum' FROM engineering_datum WHERE auth_name = ? AND code = ?", (EPSG_AUTHORITY, object_code, EPSG_AUTHORITY, object_code, EPSG_AUTHORITY, object_code))
proj_table_name = proj_db_cursor.fetchone()
if proj_table_name is None:
continue
proj_table_name = proj_table_name[0]
proj_db_cursor.execute(
"INSERT INTO usage VALUES (?,?,?,?,?,?,?,?,?)", (EPSG_AUTHORITY, usage_code, proj_table_name, EPSG_AUTHORITY, object_code, EPSG_AUTHORITY, extent_code, EPSG_AUTHORITY, scope_code))
def fill_prime_meridian(proj_db_cursor):
proj_db_cursor.execute(
"INSERT INTO prime_meridian SELECT ?, prime_meridian_code, prime_meridian_name, greenwich_longitude, ?, uom_code, deprecated FROM epsg.epsg_primemeridian", (EPSG_AUTHORITY, EPSG_AUTHORITY))
def compute_publication_date(datum_code, datum_name, frame_reference_epoch, publication_date):
if frame_reference_epoch is not None:
epoch = float(frame_reference_epoch)
fractional = epoch - int(epoch)
if fractional == 0:
publication_date = '%04d-01-01' % int(epoch)
elif abs(fractional - 0.4) < 1e-6:
publication_date = '%04d-05-01' % int(epoch)
elif abs(fractional - 0.5) < 1e-6:
publication_date = '%04d-07-01' % int(epoch)
else:
assert False, (datum_code, datum_name, frame_reference_epoch, fractional)
elif publication_date != '':
if len(publication_date) == 4:
publication_date += '-01-01'
elif len(publication_date) == 7:
publication_date += '-01'
elif len(publication_date) == 4+1+4:
m = re.search('([0-9]{4})-([0-9]{4})', publication_date)
if m:
publication_date = m.group(1)
else:
assert False, (datum_code, datum_name, publication_date)
else:
assert len(publication_date) == 10, (datum_code, datum_name, publication_date)
else:
publication_date = None
return publication_date
def fill_geodetic_datum(proj_db_cursor):
proj_db_cursor.execute(
"SELECT DISTINCT * FROM epsg.epsg_datum WHERE datum_type NOT IN ('geodetic', 'dynamic geodetic', 'ensemble', 'vertical', 'engineering')")
res = proj_db_cursor.fetchall()
if res:
raise Exception('Found unexpected datum_type in epsg_datum: %s' % str(res))
proj_db_cursor.execute("SELECT datum_code, datum_name, ellipsoid_code, prime_meridian_code, publication_date, frame_reference_epoch, anchor_epoch, deprecated FROM epsg.epsg_datum WHERE datum_type IN ('geodetic', 'dynamic geodetic')")
res = proj_db_cursor.fetchall()
for (datum_code, datum_name, ellipsoid_code, prime_meridian_code, publication_date, frame_reference_epoch, anchor_epoch, deprecated) in res:
publication_date = compute_publication_date(datum_code, datum_name, frame_reference_epoch, publication_date)
proj_db_cursor.execute(
"INSERT INTO geodetic_datum VALUES (?, ?, ?, NULL, ?, ?, ?, ?, ?, ?, NULL, NULL, ?, ?)", (EPSG_AUTHORITY, datum_code, datum_name, EPSG_AUTHORITY, ellipsoid_code, EPSG_AUTHORITY, prime_meridian_code, publication_date, frame_reference_epoch, anchor_epoch, deprecated))
def fill_vertical_datum(proj_db_cursor):
proj_db_cursor.execute("SELECT datum_code, datum_name, publication_date, frame_reference_epoch, anchor_epoch, deprecated FROM epsg.epsg_datum WHERE datum_type IN ('vertical')")
res = proj_db_cursor.fetchall()
for (datum_code, datum_name, publication_date, frame_reference_epoch, anchor_epoch, deprecated) in res:
publication_date = compute_publication_date(datum_code, datum_name, frame_reference_epoch, publication_date)
proj_db_cursor.execute(
"INSERT INTO vertical_datum VALUES (?, ?, ?, NULL, ?, ?, NULL, NULL, ?, ?)", (EPSG_AUTHORITY, datum_code, datum_name, publication_date, frame_reference_epoch, anchor_epoch, deprecated))
def fill_engineering_datum(proj_db_cursor):
proj_db_cursor.execute("SELECT datum_code, datum_name, publication_date, frame_reference_epoch, anchor_epoch, deprecated FROM epsg.epsg_datum WHERE datum_type IN ('engineering') AND datum_name NOT LIKE 'EPSG example%'")
res = proj_db_cursor.fetchall()
for (datum_code, datum_name, publication_date, frame_reference_epoch, anchor_epoch, deprecated) in res:
publication_date = compute_publication_date(datum_code, datum_name, frame_reference_epoch, publication_date)
proj_db_cursor.execute(
"INSERT INTO engineering_datum VALUES (?, ?, ?, ?, NULL, ?, ?)", (EPSG_AUTHORITY, datum_code, datum_name, publication_date, anchor_epoch, deprecated))
def fill_datumensemble(proj_db_cursor):
proj_db_cursor.execute("SELECT datum_code, datum_name, ensemble_accuracy, deprecated FROM epsg.epsg_datum JOIN epsg.epsg_datumensemble ON datum_code = datum_ensemble_code WHERE datum_type = 'ensemble'")
rows = proj_db_cursor.fetchall()
for (datum_code, datum_name, ensemble_accuracy, deprecated) in rows:
assert ensemble_accuracy is not None
proj_db_cursor.execute("SELECT DISTINCT replace(datum_type, 'dynamic ',''), ellipsoid_code, prime_meridian_code FROM epsg.epsg_datum WHERE datum_code IN (SELECT datum_code FROM epsg.epsg_datumensemblemember WHERE datum_ensemble_code = ?)", (datum_code,))
subrows = proj_db_cursor.fetchall()
assert len(subrows) == 1, (datum_code, subrows)
datum_type = subrows[0][0]
if datum_type == 'vertical':
datum_ensemble_member_table = 'vertical_datum_ensemble_member'
proj_db_cursor.execute("INSERT INTO vertical_datum (auth_name, code, name, description, publication_date, frame_reference_epoch, ensemble_accuracy, deprecated) VALUES (?, ?, ?, ?, ?, ?, ?, ?)", (EPSG_AUTHORITY, datum_code, datum_name, None, None, None, ensemble_accuracy, deprecated))
else:
datum_ensemble_member_table = 'geodetic_datum_ensemble_member'
assert datum_type in ('dynamic geodetic', 'geodetic'), datum_code
ellipsoid_code = subrows[0][1]
prime_meridian_code = subrows[0][2]
assert ellipsoid_code, datum_code
assert prime_meridian_code, datum_code
proj_db_cursor.execute(
"INSERT INTO geodetic_datum (auth_name, code, name, description, ellipsoid_auth_name, ellipsoid_code, prime_meridian_auth_name, prime_meridian_code, publication_date, frame_reference_epoch, ensemble_accuracy, anchor, deprecated) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", (EPSG_AUTHORITY, datum_code, datum_name, None, EPSG_AUTHORITY, ellipsoid_code, EPSG_AUTHORITY, prime_meridian_code, None, None, ensemble_accuracy, None, deprecated))
proj_db_cursor.execute("SELECT datum_code, datum_sequence FROM epsg.epsg_datumensemblemember WHERE datum_ensemble_code = ? ORDER by datum_sequence", (datum_code,))
for member_code, sequence in proj_db_cursor.fetchall():
proj_db_cursor.execute(
"INSERT INTO " + datum_ensemble_member_table + " (ensemble_auth_name, ensemble_code, member_auth_name, member_code, sequence) VALUES (?, ?, ?, ?, ?)", (EPSG_AUTHORITY, datum_code, EPSG_AUTHORITY, member_code, sequence))
def find_crs_code_name_extent_from_geodetic_datum_code(proj_db_cursor, datum_code):
proj_db_cursor.execute("SELECT coord_ref_sys_code, coord_ref_sys_name FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind = 'geographic 2D' AND deprecated = 0 AND datum_code = ? AND coord_ref_sys_name NOT LIKE '%(lon-lat)'", (datum_code,))
subrows = proj_db_cursor.fetchall()
assert len(subrows) == 1, (subrows, datum_code)
crs_code = subrows[0][0]
crs_name = subrows[0][1]
proj_db_cursor.execute("SELECT extent_code FROM epsg.epsg_usage WHERE object_table_name = 'epsg_coordinatereferencesystem' AND object_code = ?", (crs_code,))
subrows = proj_db_cursor.fetchall()
assert len(subrows) == 1, (subrows, datum_code)
crs_extent = subrows[0][0]
return crs_code, crs_name, crs_extent
def find_crs_code_name_extent_from_vertical_datum_code(proj_db_cursor, datum_code):
proj_db_cursor.execute("SELECT coord_ref_sys_code, coord_ref_sys_name FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind = 'vertical' AND deprecated = 0 AND datum_code = ?", (datum_code,))
subrows = proj_db_cursor.fetchall()
assert len(subrows) == 1, (subrows, datum_code)
crs_code = subrows[0][0]
crs_name = subrows[0][1]
proj_db_cursor.execute("SELECT extent_code FROM epsg.epsg_usage WHERE object_table_name = 'epsg_coordinatereferencesystem' AND object_code = ?", (crs_code,))
subrows = proj_db_cursor.fetchall()
assert len(subrows) == 1, (subrows, datum_code)
crs_extent = subrows[0][0]
return crs_code, crs_name, crs_extent
def create_datumensemble_transformations(proj_db_cursor):
proj_db_cursor.execute("SELECT datum_code, datum_name, ensemble_accuracy, deprecated FROM epsg.epsg_datum JOIN epsg.epsg_datumensemble ON datum_code = datum_ensemble_code WHERE datum_type = 'ensemble'")
rows = proj_db_cursor.fetchall()
for (datum_code, datum_name, ensemble_accuracy, deprecated) in rows:
assert ensemble_accuracy is not None
proj_db_cursor.execute("SELECT DISTINCT replace(datum_type, 'dynamic ',''), ellipsoid_code, prime_meridian_code FROM epsg.epsg_datum WHERE datum_code IN (SELECT datum_code FROM epsg.epsg_datumensemblemember WHERE datum_ensemble_code = ?)", (datum_code,))
subrows = proj_db_cursor.fetchall()
assert len(subrows) == 1, (datum_code, subrows)
datum_type = subrows[0][0]
if datum_type == 'vertical':
datum_ensemble_member_table = 'vertical_datum_ensemble_member'
ensemble_crs_code, ensemble_crs_name, ensemble_crs_extent = find_crs_code_name_extent_from_vertical_datum_code(proj_db_cursor, datum_code)
else:
datum_ensemble_member_table = 'geodetic_datum_ensemble_member'
assert datum_type in ('dynamic geodetic', 'geodetic'), datum_code
ensemble_crs_code, ensemble_crs_name, ensemble_crs_extent = find_crs_code_name_extent_from_geodetic_datum_code(proj_db_cursor, datum_code)
proj_db_cursor.execute("SELECT datum_code FROM epsg.epsg_datumensemblemember WHERE datum_ensemble_code = ? ORDER by datum_sequence", (datum_code,))
list_datums = list(proj_db_cursor.fetchall())
for member_code, in list_datums:
if datum_ensemble_member_table == 'geodetic_datum_ensemble_member':
# Insert a null transformation between the representative CRS of the datum ensemble
# and each representative CRS of its members.
crs_code, crs_name, crs_extent = find_crs_code_name_extent_from_geodetic_datum_code(proj_db_cursor, member_code)
assert crs_extent == ensemble_crs_extent or (crs_extent in (2830, 1262) and ensemble_crs_extent in (2830, 1262)) or (ensemble_crs_code == 4258 and ensemble_crs_extent == 4755 and crs_extent in (1298, 1162, 4543, 1096, 1305, 1090, 1225, 1139, 1145, 3343, 1076, 1212, 1056, 4542, 1192, 1103, 1050, 1095, 1182, 1264, 1172, 1037, 1044, 1079, 1211, 1093, 1106, 1148, 4832, 1197, 4833, 1119, 1286, 1080, 1025, 1146, 4795)), (ensemble_crs_code, ensemble_crs_name, ensemble_crs_extent, crs_code, crs_name, crs_extent)
# Check if there's already any transformation registered between
# the member crs and the ensemble crs
proj_db_cursor.execute(f"SELECT coord_op_name FROM epsg.epsg_coordoperation WHERE coord_op_name = '{crs_name} to {ensemble_crs_name} (1)' OR coord_op_name = '{ensemble_crs_name} to {crs_name} (1)'")
v = proj_db_cursor.fetchone()
if v:
print(f"Skipping {ensemble_crs_name} to {crs_name} because of {v}")
continue
code = '%s_TO_%s' % (ensemble_crs_name, crs_name)
code = code.replace(' ', '')
code = code.replace('(', '_')
code = code.replace(')', '')
code = code.upper()
name = '%s to %s' % (ensemble_crs_name, crs_name)
remarks = 'Accuracy %s m, from datum ensemble definition' % ensemble_accuracy
method_code = '9603'
method_name = 'Geocentric translations (geog2D domain)'
source_crs_code = ensemble_crs_code
target_crs_code = crs_code
coord_op_accuracy = ensemble_accuracy
arg = ('PROJ', code, name,
remarks,
EPSG_AUTHORITY, method_code, method_name,
EPSG_AUTHORITY, source_crs_code,
EPSG_AUTHORITY, target_crs_code,
coord_op_accuracy,
0,0,0,EPSG_AUTHORITY,'9001',
None,None,None,None,None,
None,None,None,
None,None,None,None,None,
None,None,None,None,None,
None,None,None,
None,None,None,
None,None,None,None,None,
'',0)
proj_db_cursor.execute('INSERT INTO helmert_transformation VALUES (' +
'?,?,?, ?, ?,?,?, ?,?, ?,?, ?, ?,?,?,?,?, ?,?,?,?,?, ?,?,?, ?,?,?,?,?, ?,?,?,?,?, ?,?,?, ?,?,?, ?,?,?,?,?, ?,?)', arg)
proj_db_cursor.execute('INSERT INTO usage VALUES (?,?,?,?,?,?,?,?,?)',
('PROJ',
code + '_USAGE',
'helmert_transformation',
'PROJ',
code,
EPSG_AUTHORITY, crs_extent,
EPSG_AUTHORITY,'1024')) # unknown scope
else:
# Insert a null transformation between the representative CRS of the datum ensemble
# and each representative CRS of its members.
crs_code, crs_name, crs_extent = find_crs_code_name_extent_from_vertical_datum_code(proj_db_cursor, member_code)
code = '%s_TO_%s' % (ensemble_crs_name, crs_name)
code = code.replace(' ', '_')
code = code.replace('St.', 'St')
code = code.replace('(', '_')
code = code.replace(')', '')
code = code.replace('__', '_')
code = code.upper()
name = '%s to %s' % (ensemble_crs_name, crs_name)
remarks = 'Accuracy %s m, from datum ensemble definition' % ensemble_accuracy
method_code = '9616'
method_name = 'Vertical Offset'
source_crs_code = ensemble_crs_code
target_crs_code = crs_code
coord_op_accuracy = ensemble_accuracy
arg = ('PROJ', code, name,
remarks,
EPSG_AUTHORITY, method_code, method_name,
EPSG_AUTHORITY, source_crs_code,
EPSG_AUTHORITY, target_crs_code,
coord_op_accuracy,
'EPSG','8603','Vertical Offset',0,'EPSG','9001',
None,None,None,None,None,None,
None,None,None,None,None,None,
None,None,None,None,None,None,
None,None,None,None,None,None,
None,None,None,None,None,None,
None,None,None,None,None,None,
None,None,None,None,None,None,
None,None,None,None,None,None,
None,None,None,None,
None,None,
'',0)
proj_db_cursor.execute('INSERT INTO other_transformation VALUES (' +
'?,?,?, ?, ?,?,?, ?,?, ?,?, ?, ?,?,?,?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ' +
'?,?,?,?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ?,?,?,?, ?,?, ?,?)', arg)
proj_db_cursor.execute('INSERT INTO usage VALUES (?,?,?,?,?,?,?,?,?)',
('PROJ',
code + '_USAGE',
'other_transformation',
'PROJ',
code,
EPSG_AUTHORITY, crs_extent,
EPSG_AUTHORITY,'1024')) # unknown scope
handled_coord_sys_type = "('Cartesian', 'vertical', 'ellipsoidal', 'spherical', 'ordinal')"
def fill_coordinate_system(proj_db_cursor):
proj_db_cursor.execute(
"INSERT INTO coordinate_system SELECT ?, coord_sys_code, coord_sys_type, dimension FROM epsg.epsg_coordinatesystem WHERE coord_sys_type IN " + handled_coord_sys_type, (EPSG_AUTHORITY,))
proj_db_cursor.execute("SELECT coord_sys_name, coord_sys_code, coord_sys_type, dimension FROM epsg.epsg_coordinatesystem WHERE coord_sys_type NOT IN " + handled_coord_sys_type)
res = proj_db_cursor.fetchall()
for row in res:
print('Skipping coordinate system %s' % str(row))
def fill_axis(proj_db_cursor):
proj_db_cursor.execute(
"INSERT INTO axis "
"SELECT ?, coord_axis_code, coord_axis_name, coord_axis_abbreviation, "
"coord_axis_orientation, ?, ca.coord_sys_code, coord_axis_order, "
"CASE WHEN uom_code IS NULL THEN NULL ELSE ? END, uom_code "
"FROM epsg.epsg_coordinateaxis ca "
"LEFT JOIN epsg.epsg_coordinateaxisname can "
"ON ca.coord_axis_name_code = can.coord_axis_name_code "
"JOIN epsg.epsg_coordinatesystem cs "
"ON cs.coord_sys_code = ca.coord_sys_code "
"WHERE coord_sys_type IN " + handled_coord_sys_type,
(EPSG_AUTHORITY, EPSG_AUTHORITY, EPSG_AUTHORITY))
def fill_geodetic_crs(proj_db_cursor):
# TODO?: address 'derived'
proj_db_cursor.execute(
"SELECT DISTINCT * FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind NOT IN ('projected', 'geographic 2D', 'geographic 3D', 'geocentric', 'vertical', 'compound', 'engineering', 'derived')")
res = proj_db_cursor.fetchall()
if res:
raise Exception('Found unexpected coord_ref_sys_kind in epsg_coordinatereferencesystem: %s' % str(res))
#proj_db_cursor.execute(
# "INSERT INTO crs SELECT ?, coord_ref_sys_code, coord_ref_sys_kind FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('geographic 2D', 'geographic 3D', 'geocentric') AND datum_code IS NOT NULL", (EPSG_AUTHORITY,))
# There are a few deprecated records of code 61 000 000 that we have never imported in versions <= 10.039 because
# they lacked a datum code. We will continue to ignore them.
proj_db_cursor.execute("INSERT INTO geodetic_crs SELECT ?, coord_ref_sys_code, coord_ref_sys_name, remarks, coord_ref_sys_kind, ?, coord_sys_code, ?, datum_code, NULL, deprecated FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('geographic 2D', 'geographic 3D', 'geocentric') AND datum_code IS NOT NULL AND NOT (coord_ref_sys_code > 61000000 AND deprecated)", (EPSG_AUTHORITY, EPSG_AUTHORITY, EPSG_AUTHORITY))
def fill_vertical_crs(proj_db_cursor):
#proj_db_cursor.execute(
# "INSERT INTO crs SELECT ?, coord_ref_sys_code, coord_ref_sys_kind FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('vertical') AND datum_code IS NOT NULL", (EPSG_AUTHORITY,))
proj_db_cursor.execute("INSERT INTO vertical_crs SELECT ?, coord_ref_sys_code, coord_ref_sys_name, NULL, ?, coord_sys_code, ?, datum_code, deprecated FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('vertical') AND datum_code IS NOT NULL", (EPSG_AUTHORITY, EPSG_AUTHORITY, EPSG_AUTHORITY))
proj_db_cursor.execute("SELECT * FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('vertical') AND datum_code IS NULL AND projection_conv_code NOT IN (7812, 7813)")
res = proj_db_cursor.fetchall()
for row in res:
assert False, row
proj_db_cursor.execute("SELECT * FROM epsg.epsg_coordinatereferencesystem crs1 WHERE crs1.coord_ref_sys_kind IN ('vertical') AND crs1.datum_code IS NULL AND NOT EXISTS (SELECT 1 FROM epsg.epsg_coordinatereferencesystem crs2 WHERE crs2.coord_ref_sys_code = crs1.base_crs_code AND crs2.coord_ref_sys_kind IN ('vertical'))")
res = proj_db_cursor.fetchall()
for row in res:
assert False, row
# Insert vertical_crs that are based on another one, such as EPSG:8228 that is based on EPSG:5703
proj_db_cursor.execute("INSERT INTO vertical_crs SELECT ?, crs1.coord_ref_sys_code, crs1.coord_ref_sys_name, NULL, ?, crs1.coord_sys_code, ?, crs2.datum_code, crs1.deprecated FROM epsg.epsg_coordinatereferencesystem crs1 JOIN epsg.epsg_coordinatereferencesystem crs2 ON crs1.base_crs_code = crs2.coord_ref_sys_code WHERE crs1.coord_ref_sys_kind IN ('vertical') AND crs1.datum_code IS NULL AND crs2.datum_code iS NOT NULL", (EPSG_AUTHORITY, EPSG_AUTHORITY, EPSG_AUTHORITY))
# Extra punishment for EPSG:8051 that is based on EPSG:5715 which is based on EPSG:5714
proj_db_cursor.execute("INSERT INTO vertical_crs SELECT ?, crs1.coord_ref_sys_code, crs1.coord_ref_sys_name, NULL, ?, crs1.coord_sys_code, ?, crs3.datum_code, crs1.deprecated FROM epsg.epsg_coordinatereferencesystem crs1 JOIN epsg.epsg_coordinatereferencesystem crs2 ON crs1.base_crs_code = crs2.coord_ref_sys_code JOIN epsg.epsg_coordinatereferencesystem crs3 ON crs2.base_crs_code = crs3.coord_ref_sys_code WHERE crs1.coord_ref_sys_kind IN ('vertical') AND crs1.datum_code IS NULL AND crs2.datum_code IS NULL", (EPSG_AUTHORITY, EPSG_AUTHORITY, EPSG_AUTHORITY))
def fill_engineering_crs(proj_db_cursor):
proj_db_cursor.execute("SELECT ?, coord_ref_sys_code, coord_ref_sys_name, NULL, ?, coord_sys_code, ?, datum_code, deprecated FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('engineering') AND datum_code IS NOT NULL AND coord_ref_sys_name NOT LIKE 'EPSG%example%' AND coord_ref_sys_name NOT LIKE 'enter here name%'", (EPSG_AUTHORITY, EPSG_AUTHORITY, EPSG_AUTHORITY))
res = proj_db_cursor.fetchall()
for row in res:
proj_db_cursor.execute("INSERT INTO engineering_crs VALUES (?,?,?,?,?,?,?,?,?)", (row[0],row[1],row[2],row[3],row[4],row[5],row[6],row[7],row[8]))
proj_db_cursor.execute("SELECT * FROM epsg.epsg_coordinatereferencesystem crs1 WHERE crs1.coord_ref_sys_kind IN ('engineering') AND crs1.datum_code IS NULL AND NOT EXISTS (SELECT 1 FROM epsg.epsg_coordinatereferencesystem crs2 WHERE crs2.coord_ref_sys_code = crs1.base_crs_code AND crs2.coord_ref_sys_kind IN ('engineering'))")
res = proj_db_cursor.fetchall()
for row in res:
assert False, row
def fill_conversion(proj_db_cursor):
# TODO? current we deal with point motion operation as transformation in grid_transformation table
proj_db_cursor.execute(
"SELECT DISTINCT * FROM epsg.epsg_coordoperation WHERE coord_op_type NOT IN ('conversion', 'transformation', 'concatenated operation', 'point motion operation')")
res = proj_db_cursor.fetchall()
if res:
raise Exception('Found unexpected coord_op_type in epsg_coordoperation: %s' % str(res))
already_mapped_methods = set()
trigger_sql = """
CREATE TRIGGER conversion_method_check_insert_trigger
BEFORE INSERT ON conversion
BEGIN
"""
# 1068 and 1069 are Height Depth Reversal and Change of Vertical Unit
# In EPSG, there is one generic instance of those as 7812 and 7813 that
# don't refer to particular CRS, and instances pointing to CRS names
# The later are imported in the other_transformation table since we recover
# the source/target CRS names from the transformation name.
# Method EPSG:9666 'P6 I=J+90 seismic bin grid coordinate operation' requires more than 7 parameters. Not supported by PROJ for now
# Idem for EPSG:1049 'P6 I=J-90 seismic bin grid coordinate operation'
proj_db_cursor.execute("SELECT coord_op_code, coord_op_name, coord_op_method_code, coord_op_method_name, epsg_coordoperation.deprecated, epsg_coordoperation.remarks FROM epsg.epsg_coordoperation LEFT JOIN epsg.epsg_coordoperationmethod USING (coord_op_method_code) WHERE coord_op_type = 'conversion' AND coord_op_name NOT LIKE '%to DMSH' AND (coord_op_method_code NOT IN (1068, 1069, 9666, 1049) OR coord_op_code IN (7812,7813))")
for (code, name, method_code, method_name, deprecated, remarks) in proj_db_cursor.fetchall():
# If skipping some projection methods is needed
if method_code in ():
print(f"Skipping conversion {code}, {name}, {method_code}, {method_name} as the map projection is not handled")
continue
expected_order = 1
max_n_params = 7
param_auth_name = [None for i in range(max_n_params)]
param_code = [None for i in range(max_n_params)]
param_name = [None for i in range(max_n_params)]
param_value = [None for i in range(max_n_params)]
param_uom_auth_name = [None for i in range(max_n_params)]
param_uom_code = [None for i in range(max_n_params)]
param_uom_type = [None for i in range(max_n_params)]
iterator = proj_db_cursor.execute("SELECT sort_order, cop.parameter_code, parameter_name, parameter_value, uom_code, uom.unit_of_meas_type FROM epsg_coordoperationparam cop LEFT JOIN epsg_coordoperationparamvalue copv LEFT JOIN epsg_unitofmeasure uom USING (uom_code) LEFT JOIN epsg_coordoperationparamusage copu ON cop.parameter_code = copv.parameter_code AND copu.parameter_code = copv.parameter_code WHERE copu.coord_op_method_code = copv.coord_op_method_code AND coord_op_code = ? AND copv.coord_op_method_code = ? ORDER BY sort_order", (code, method_code))
for (order, parameter_code, parameter_name, parameter_value, uom_code, uom_type) in iterator:
# Modified Krovak and Krovak North Oriented: keep only the 7 first parameters
if order == max_n_params + 1 and method_code in (1042, 1043):
break
assert order <= max_n_params, (method_code, method_name, order)
assert order == expected_order, (code, name, method_code, method_name)
param_auth_name[order - 1] = EPSG_AUTHORITY
param_code[order - 1] = parameter_code
param_name[order - 1] = parameter_name
param_value[order - 1] = parameter_value
param_uom_auth_name[order - 1] = EPSG_AUTHORITY if uom_code else None
param_uom_code[order - 1] = uom_code
param_uom_type[order - 1] = uom_type
expected_order += 1
if method_code not in already_mapped_methods:
already_mapped_methods.add(method_code)
trigger_sql += """
SELECT RAISE(ABORT, 'insert on conversion violates constraint: bad parameters for %(method_name)s')
WHERE NEW.deprecated != 1 AND NEW.method_auth_name = 'EPSG' AND NEW.method_code = '%(method_code)s' AND (NEW.method_name != '%(method_name)s'""" % {'method_name': method_name, 'method_code' : method_code}
for i in range(expected_order-1):
trigger_sql += " OR NEW.param%(n)d_auth_name != 'EPSG' OR NEW.param%(n)d_code != '%(code)d' OR NEW.param%(n)d_name != '%(param_name)s'" % {'n': i+1, 'code': param_code[i], 'param_name': param_name[i]}
if method_name in ('Change of Vertical Unit'):
trigger_sql += " OR (NOT((NEW.param%(n)d_value IS NULL AND NEW.param%(n)d_uom_auth_name IS NULL AND NEW.param%(n)d_uom_code IS NULL) OR (NEW.param%(n)d_value IS NOT NULL AND (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param%(n)s_uom_auth_name AND code = NEW.param%(n)s_uom_code) = 'scale')))" % {'n': i+1, 'param_name': param_name[i]}
else:
trigger_sql += " OR NEW.param%(n)d_value IS NULL OR NEW.param%(n)d_uom_auth_name IS NULL OR NEW.param%(n)d_uom_code IS NULL" % {'n': i+1, 'param_name': param_name[i]}
if param_uom_type[i]:
trigger_sql += " OR (SELECT type FROM unit_of_measure WHERE auth_name = NEW.param%(n)s_uom_auth_name AND code = NEW.param%(n)s_uom_code) != '%(uom_type)s'" % {'n': i+1, 'uom_type': param_uom_type[i]}
for i in range(expected_order-1, max_n_params):
trigger_sql += " OR NEW.param%(n)d_auth_name IS NOT NULL OR NEW.param%(n)d_code IS NOT NULL OR NEW.param%(n)d_name IS NOT NULL OR NEW.param%(n)d_value IS NOT NULL OR NEW.param%(n)d_uom_auth_name IS NOT NULL OR NEW.param%(n)d_uom_code IS NOT NULL" % {'n': i+1}
trigger_sql += ");\n"
arg = (EPSG_AUTHORITY, code, name,
remarks,
EPSG_AUTHORITY, method_code, method_name,
param_auth_name[0], param_code[0], param_name[0],
param_value[0], param_uom_auth_name[0], param_uom_code[0],
param_auth_name[1], param_code[1], param_name[1], param_value[1],
param_uom_auth_name[1], param_uom_code[1], param_auth_name[2],
param_code[2], param_name[2], param_value[2],
param_uom_auth_name[2], param_uom_code[2],
param_auth_name[3], param_code[3], param_name[3], param_value[3],
param_uom_auth_name[3], param_uom_code[3], param_auth_name[4],
param_code[4], param_name[4], param_value[4],
param_uom_auth_name[4], param_uom_code[4], param_auth_name[5],
param_code[5], param_name[5], param_value[5],
param_uom_auth_name[5], param_uom_code[5], param_auth_name[6],
param_code[6], param_name[6], param_value[6],
param_uom_auth_name[6], param_uom_code[6],
deprecated)
#proj_db_cursor.execute("INSERT INTO coordinate_operation VALUES (?,?,'conversion')", (EPSG_AUTHORITY, code))
proj_db_cursor.execute('INSERT INTO conversion VALUES (' +
'?,?,?, ?, ?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ' +
'?,?,?,?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ?)', arg)
trigger_sql += "END;";
#print(trigger_sql)
proj_db_cursor.execute(trigger_sql)
def fill_projected_crs(proj_db_cursor):
#proj_db_cursor.execute(
# "INSERT INTO crs SELECT 'EPSG', coord_ref_sys_code, coord_ref_sys_kind FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('projected')")
#proj_db_cursor.execute("INSERT INTO projected_crs SELECT 'EPSG', coord_ref_sys_code, coord_ref_sys_name, 'EPSG', coord_sys_code, 'EPSG', base_crs_code, 'EPSG', projection_conv_code, deprecated FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('projected')")
proj_db_cursor.execute("SELECT ?, coord_ref_sys_code, coord_ref_sys_name, NULL, ?, coord_sys_code, ?, base_crs_code, ?, projection_conv_code, crs.deprecated, co.coord_op_method_code, com.coord_op_method_name FROM epsg.epsg_coordinatereferencesystem crs LEFT JOIN epsg.epsg_coordoperation co ON crs.projection_conv_code = co.coord_op_code LEFT JOIN epsg.epsg_coordoperationmethod com USING (coord_op_method_code) WHERE coord_ref_sys_kind IN ('projected')", (EPSG_AUTHORITY, EPSG_AUTHORITY, EPSG_AUTHORITY, EPSG_AUTHORITY))
for (auth_name, code, name, description, coordinate_system_auth_name, coordinate_system_code, geodetic_crs_auth_name, geodetic_crs_code, conversion_auth_name, conversion_code, deprecated, coord_op_method_code, coord_op_method_name) in proj_db_cursor.fetchall():
# If skipping some projection methods is needed
if coord_op_method_code in ():
print(f'Skipping EPSG:{code} {name} as we do not handle yet projection method EPSG:{coord_op_method_code} / {coord_op_method_name}')
continue
proj_db_cursor.execute("SELECT 1 FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_code = ? AND coord_ref_sys_kind IN ('geographic 2D', 'geographic 3D', 'geocentric')", (geodetic_crs_code,))
if proj_db_cursor.fetchone():
#proj_db_cursor.execute("INSERT INTO crs VALUES (?, ?, 'projected')", (EPSG_AUTHORITY, code))
try:
proj_db_cursor.execute("INSERT INTO projected_crs VALUES (?,?,?,?,?,?,?,?,?,?,NULL,?)", (auth_name, code, name, description, coordinate_system_auth_name, coordinate_system_code, geodetic_crs_auth_name, geodetic_crs_code, conversion_auth_name, conversion_code, deprecated))
except sqlite3.IntegrityError as e:
print(e)
print(row)
raise
def fill_compound_crs(proj_db_cursor):
#proj_db_cursor.execute(
# "INSERT INTO crs SELECT ?, coord_ref_sys_code, coord_ref_sys_kind FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('compound')", (EPSG_AUTHORITY,))
proj_db_cursor.execute("SELECT ?, coord_ref_sys_code, coord_ref_sys_name, NULL, ?, cmpd_horizcrs_code, ?, cmpd_vertcrs_code, deprecated FROM epsg.epsg_coordinatereferencesystem WHERE coord_ref_sys_kind IN ('compound') AND coord_ref_sys_name NOT LIKE 'EPSG%example%'", (EPSG_AUTHORITY, EPSG_AUTHORITY, EPSG_AUTHORITY))
for auth_name, code, name, description, horiz_auth_name, horiz_code, vert_auth_name, vert_code, deprecated in proj_db_cursor.fetchall():
try:
proj_db_cursor.execute("INSERT INTO compound_crs VALUES (?,?,?,?,?,?,?,?,?)", (auth_name, code, name, description, horiz_auth_name, horiz_code, vert_auth_name, vert_code, deprecated))
except sqlite3.IntegrityError as e:
print(e)
print(auth_name, code, name, description, horiz_auth_name, horiz_code, vert_auth_name, vert_code, deprecated)
raise
def fill_helmert_transformation(proj_db_cursor):
proj_db_cursor.execute("SELECT coord_op_code, coord_op_name, coord_op_method_code, coord_op_method_name, source_crs_code, target_crs_code, coord_op_accuracy, coord_tfm_version, epsg_coordoperation.deprecated, epsg_coordoperation.remarks FROM epsg.epsg_coordoperation LEFT JOIN epsg.epsg_coordoperationmethod USING (coord_op_method_code) WHERE coord_op_type = 'transformation' AND coord_op_method_code IN (1031, 1032, 1033, 1034, 1035, 1037, 1038, 1039, 1053, 1054, 1055, 1056, 1057, 1058, 1061, 1062, 1063, 1065, 1066, 1132, 1133, 1140, 1149, 9603, 9606, 9607, 9636) ")
for (code, name, method_code, method_name, source_crs_code, target_crs_code, coord_op_accuracy, coord_tfm_version, deprecated, remarks) in proj_db_cursor.fetchall():
expected_order = 1
max_n_params = 15
param_auth_name = [None for i in range(max_n_params)]
param_code = [None for i in range(max_n_params)]
param_name = [None for i in range(max_n_params)]
param_value = [None for i in range(max_n_params)]
param_uom_code = [None for i in range(max_n_params)]
iterator = proj_db_cursor.execute("SELECT sort_order, cop.parameter_code, parameter_name, parameter_value, uom_code from epsg_coordoperationparam cop LEFT JOIN epsg_coordoperationparamvalue copv LEFT JOIN epsg_coordoperationparamusage copu ON cop.parameter_code = copv.parameter_code AND copu.parameter_code = copv.parameter_code WHERE copu.coord_op_method_code = copv.coord_op_method_code AND coord_op_code = ? AND copv.coord_op_method_code = ? ORDER BY sort_order", (code, method_code))
for (order, parameter_code, parameter_name, parameter_value, uom_code) in iterator:
assert order <= max_n_params
assert order == expected_order
param_auth_name[order - 1] = EPSG_AUTHORITY
param_code[order - 1] = parameter_code
param_name[order - 1] = parameter_name
param_value[order - 1] = parameter_value
param_uom_code[order - 1] = uom_code
expected_order += 1
n_params = expected_order - 1
if param_value[0] is None and deprecated:
continue # silently discard non sense deprecated transforms (like EPSG:1076)
assert param_code[0] == 8605
assert param_code[1] == 8606
assert param_code[2] == 8607
assert param_uom_code[0] == param_uom_code[1]
assert param_uom_code[0] == param_uom_code[2]
px = None
py = None
pz = None
pivot_uom_code = None
if n_params > 3:
assert param_code[3] == 8608
assert param_code[4] == 8609
assert param_code[5] == 8610
assert param_code[6] == 8611
assert param_uom_code[3] == param_uom_code[4]
assert param_uom_code[3] == param_uom_code[5]
for i in range(7):
assert param_uom_code[i] is not None
if n_params == 8: # Time-specific transformation
assert param_code[7] == 1049, (code, name, param_code[7])
param_value[14] = param_value[7]
param_uom_code[14] = param_uom_code[7]
param_value[7] = None
param_uom_code[7] = None
elif n_params == 10: # Molodensky-Badekas
assert param_code[7] == 8617, (code, name, param_code[7])
assert param_code[8] == 8618, (code, name, param_code[8])
assert param_code[9] == 8667, (code, name, param_code[9])
assert param_uom_code[7] == param_uom_code[8]
assert param_uom_code[7] == param_uom_code[9]
px = param_value[7]
py = param_value[8]
pz = param_value[9]
pivot_uom_code = param_uom_code[7]
param_value[7] = None
param_uom_code[7] = None
param_value[8] = None
param_uom_code[8] = None
param_value[9] = None
param_uom_code[9] = None
elif n_params > 7: # Time-dependant transformation
assert param_code[7] == 1040, (code, name, param_code[7])
assert param_code[8] == 1041
assert param_code[9] == 1042
assert param_code[10] == 1043
assert param_code[11] == 1044
assert param_code[12] == 1045
assert param_code[13] == 1046
assert param_code[14] == 1047
assert param_uom_code[7] == param_uom_code[8]
assert param_uom_code[7] == param_uom_code[9]
assert param_uom_code[10] == param_uom_code[11]
assert param_uom_code[10] == param_uom_code[12]
for i in range(15):
assert param_uom_code[i] is not None, (code, name, i, param_name[i])
arg = (EPSG_AUTHORITY, code, name,
remarks,
EPSG_AUTHORITY, method_code, method_name,
EPSG_AUTHORITY, source_crs_code,
EPSG_AUTHORITY, target_crs_code,
coord_op_accuracy,
param_value[0], param_value[1], param_value[2], EPSG_AUTHORITY, param_uom_code[0],
param_value[3], param_value[4], param_value[5], EPSG_AUTHORITY if param_uom_code[3] else None, param_uom_code[3],
param_value[6], EPSG_AUTHORITY if param_uom_code[6] else None, param_uom_code[6],
param_value[7], param_value[8], param_value[9], EPSG_AUTHORITY if param_uom_code[7] else None, param_uom_code[7],
param_value[10], param_value[11], param_value[12], EPSG_AUTHORITY if param_uom_code[10] else None, param_uom_code[10],
param_value[13], EPSG_AUTHORITY if param_uom_code[13] else None, param_uom_code[13],
param_value[14], EPSG_AUTHORITY if param_uom_code[14] else None, param_uom_code[14],
px, py, pz, EPSG_AUTHORITY if px else None, pivot_uom_code,
coord_tfm_version,
deprecated
)
#proj_db_cursor.execute("INSERT INTO coordinate_operation VALUES (?,?,'helmert_transformation')", (EPSG_AUTHORITY, code))
try:
proj_db_cursor.execute('INSERT INTO helmert_transformation VALUES (' +
'?,?,?, ?, ?,?,?, ?,?, ?,?, ?, ?,?,?,?,?, ?,?,?,?,?, ?,?,?, ?,?,?,?,?, ?,?,?,?,?, ?,?,?, ?,?,?, ?,?,?,?,?, ?,?)', arg)
except Exception:
print(arg)
raise
def fill_grid_transformation(proj_db_cursor):
proj_db_cursor.execute("SELECT coord_op_code, coord_op_name, coord_op_method_code, coord_op_method_name, source_crs_code, target_crs_code, coord_op_accuracy, coord_tfm_version, epsg_coordoperation.deprecated, epsg_coordoperation.remarks FROM epsg.epsg_coordoperation LEFT JOIN epsg.epsg_coordoperationmethod USING (coord_op_method_code) WHERE coord_op_type IN ('transformation', 'point motion operation') AND coord_op_method_code NOT IN (1131, 1136) AND (coord_op_method_name LIKE 'Geographic3D to%' OR coord_op_method_name LIKE 'Geog3D to%' OR coord_op_method_name LIKE 'Point motion % grid%' OR coord_op_method_name LIKE 'Vertical Offset %rid%' OR coord_op_method_name LIKE 'Geographic3D Offset % velocity %rid%' OR coord_op_method_name IN ('NADCON', 'NADCON5 (2D)', 'NADCON5 (3D)', 'NTv1', 'NTv2', 'VERTCON', 'Geocentric translations (geog2D domain) by grid (IGN)', 'Geocentric translations using NEU velocity grid (gtg)', 'Geocen translations by grid (gtg) & Geocen translations NEU velocities (gtg)', 'New Zealand Deformation Model', 'Cartesian Grid Offsets by TIN Interpolation (JSON)', 'Vertical Offset by TIN Interpolation (JSON)', 'Geographic2D Offsets by TIN Interpolation (JSON)', 'Vertical change by geoid grid difference (NRCan)'))")
for (code, name, method_code, method_name, source_crs_code, target_crs_code, coord_op_accuracy, coord_tfm_version, deprecated, remarks) in proj_db_cursor.fetchall():
if code == 10929: # SOPAC deformation model for California v1
print(f"Skipping transformation {code} ({name})")
continue
expected_order = 1
if method_name == 'Geocentric translations (geog2D domain) by grid (IGN)':
max_n_params = 3
elif method_name == 'Geocentric translations using NEU velocity grid (gtg)':
max_n_params = 4
elif method_name == 'Geocen translations by grid (gtg) & Geocen translations NEU velocities (gtg)':
max_n_params = 6
else:
max_n_params = 2
param_auth_name = [None for i in range(max_n_params)]
param_code = [None for i in range(max_n_params)]
param_name = [None for i in range(max_n_params)]
param_value = [None for i in range(max_n_params)]
param_uom_code = [None for i in range(max_n_params)]
iterator = proj_db_cursor.execute("SELECT sort_order, cop.parameter_code, parameter_name, parameter_value, param_value_file_ref, uom_code from epsg_coordoperationparam cop LEFT JOIN epsg_coordoperationparamvalue copv LEFT JOIN epsg_coordoperationparamusage copu ON cop.parameter_code = copv.parameter_code AND copu.parameter_code = copv.parameter_code WHERE copu.coord_op_method_code = copv.coord_op_method_code AND coord_op_code = ? AND copv.coord_op_method_code = ? ORDER BY sort_order", (code, method_code))
first = True
order_inc = 0
for (order, parameter_code, parameter_name, parameter_value, param_value_file_ref, uom_code) in iterator:
if first and order == 0:
# Some new records have sort_order starting at 0 rather than 1
# print(code, name, method_code, method_name, param_code, param_name, order)
order_inc = 1
order += order_inc
first = False
if method_name == "Point motion (geocen domain) using NEU velocity grid (Gravsoft)":
# We skip the second and third grid
if order in (2, 3):
continue
# but keep the interpolation CRS
if order == 4:
order = 2
# NADCON5 lists 3 grids (lat_shift, lon_shift, ellipsoidal_height_shift). Our database
# can only list 2. Truncate. Not critical as we ultimately have one GeoTIFF
# grid for the 3 original grids
if method_name == "NADCON5 (3D)" and order > max_n_params:
break
assert order <= max_n_params, (code, name)
assert order == expected_order, (code, name, method_code, method_name, param_code, param_name, order)
if parameter_value is not None:
assert param_value_file_ref is None or len(param_value_file_ref) == 0, (order, parameter_code, parameter_name, parameter_value, param_value_file_ref, uom_code)
if param_value_file_ref is not None and len(param_value_file_ref) != 0:
assert parameter_value is None, (order, parameter_code, parameter_name, parameter_value, param_value_file_ref, uom_code)
param_auth_name[order - 1] = EPSG_AUTHORITY
param_code[order - 1] = parameter_code
param_name[order - 1] = parameter_name
param_value[order - 1] = parameter_value if parameter_value else param_value_file_ref
param_uom_code[order - 1] = uom_code
expected_order += 1
n_params = expected_order - 1
assert param_code[0] in (1048, 1050, 1063, 1064, 1072, 8656, 8657, 8666, 8732, 8727), (code, param_code[0])
grid2_param_auth_name = None
grid2_param_code = None
grid2_param_name = None
grid2_value = None
interpolation_crs_auth_name = None
interpolation_crs_code = None
sql_param_auth_name = [None] * 2
sql_param_code = [None] * 2
sql_param_name = [None] * 2
sql_param_value = [None] * 2
sql_param_uom_auth_name = [None] * 2
sql_param_uom_code = [None] * 2
if method_code == 9613: # NADCON
assert param_code[1] == 8658, param_code[1]
grid2_param_auth_name = EPSG_AUTHORITY
grid2_param_code = param_code[1]
grid2_param_name = param_name[1]
grid2_value = param_value[1]
elif method_code in (1074, 1075): # NADCON5 (2D) and NADCON5 (3D)
assert param_code[1] == 8658, param_code[1]
grid2_param_auth_name = EPSG_AUTHORITY
grid2_param_code = param_code[1]
grid2_param_name = param_name[1]
grid2_value = param_value[1]
# 1071: Vertical Offset by Grid Interpolation (NZLVD)
# 1080: Vertical Offset by Grid Interpolation (BEV AT)
# 1081: Geographic3D to GravityRelatedHeight (BEV AT)
# 1083: Geog3D to Geog2D+Vertical (AUSGeoid v2)
# 1084: Vertical Offset by Grid Interpolation (gtx)
# 1085: Vertical Offset by Grid Interpolation (asc)
# 1086: Point motion (geocen domain) using XYZ velocity grid (INADEFORM)
# 1088: Geog3D to Geog2D+GravityRelatedHeight (gtx)
# 1089: Geog3D to Geog2D+GravityRelatedHeight (BEV AT)
# 1090: Geog3D to Geog2D+GravityRelatedHeight (CGG 2013)
# 1091: Geog3D to Geog2D+GravityRelatedHeight (CI)
# 1092: Geog3D to Geog2D+GravityRelatedHeight (EGM2008)
# 1093: Geog3D to Geog2D+GravityRelatedHeight (Gravsoft)
# 1094: Geog3D to Geog2D+GravityRelatedHeight (IGN1997)
# 1095: Geog3D to Geog2D+GravityRelatedHeight (IGN2009)
# 1096: Geog3D to Geog2D+GravityRelatedHeight (OSGM15-Ire)
# 1097: Geog3D to Geog2D+GravityRelatedHeight (OSGM-GB)
# 1098: Geog3D to Geog2D+GravityRelatedHeight (SA 2010)
# 1100: Geog3D to Geog2D+GravityRelatedHeight (PL txt)
# 1101: Vertical Offset by Grid Interpolation (PL txt)
# 1103: Geog3D to Geog2D+GravityRelatedHeight (EGM)
# 1105: Geog3D to Geog2D+GravityRelatedHeight (ITAL2005)
# 1110: Geog3D to Geog2D+Depth (Gravsoft)
# 1112: Vertical Offset by Grid Interpolation (NRCan byn)
# 1113: Vertical Offset by velocity grid (NRCan byn)
# 1114: Geographic3D Offset by velocity grid (NTv2_Vel)
# 1115: Geog3D to Geog2D+Depth (txt)
# 1118: Geog3D to Geog2D+GravityRelatedHeight (ISG)
# 1120: Point motion (geocen domain) using XYZ velocity grid (BGN)
# 1122: Geog3D to Geog2D+Depth (gtx)
# 1124: Geog3D to Geog2D+GravityRelatedHeight (gtg)
# 1126: Vertical change by geoid grid difference (NRCan)
# 1135: Geog3D to Geog2D+GravityRelatedHeight (NGS bin)
# 1137: Vertical Offset by TIN Interpolation (JSON)
# 1138: Cartesian Grid Offsets by TIN Interpolation (JSON)
# 1139: Point motion (geocen domain) using NEU velocity grid (Gravsoft)
# 1141: Point motion by grid (NEU domain) (NTv2_Vel)
# WARNING: update Transformation::isGeographic3DToGravityRelatedHeight()
# in src/iso19111/operation/singleoperation.cpp if adding new methods
elif method_code in (1071, 1080, 1081, 1083, 1084, 1085, 1086, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1100, 1101, 1103, 1105, 1110, 1112, 1113, 1114, 1115, 1118, 1120, 1122, 1124, 1126, 1128, 1129, 1135, 1137, 1138, 1139, 1141) and n_params == 2:
assert param_code[1] == 1048, (code, method_code, param_code[1])
interpolation_crs_auth_name = EPSG_AUTHORITY
interpolation_crs_code = str(int(param_value[1])) # needed to avoid codes like XXXX.0
# 1087: Geocentric translation by Grid Interpolation (IGN)
elif method_code in (1087, ) and n_params == 3:
assert param_code[1] == 1048, (code, method_code, param_code[1])
interpolation_crs_auth_name = EPSG_AUTHORITY
interpolation_crs_code = str(int(param_value[1])) # needed to avoid codes like XXXX.0
# ignoring parameter 2 Standard CT code
elif method_code == 1144 and n_params == 4:
assert param_code[1] == 1048, (code, method_code, param_code[1])
interpolation_crs_auth_name = EPSG_AUTHORITY
interpolation_crs_code = str(int(param_value[1])) # needed to avoid codes like XXXX.0
iout = 0
for i in (2, 3):
if param_value[i] != -999:
sql_param_auth_name[iout] = EPSG_AUTHORITY
sql_param_code[iout] = param_code[i]
sql_param_name[iout] = param_name[i]
sql_param_value[iout] = param_value[i]
sql_param_uom_auth_name[iout] = EPSG_AUTHORITY
sql_param_uom_code[iout] = param_uom_code[i]
iout += 1
elif method_code == 1142 and n_params == 6:
assert param_code[1] == 1070, (code, method_code, param_code[1])
interpolation_crs_auth_name = EPSG_AUTHORITY
interpolation_crs_code = str(int(param_value[1])) # needed to avoid codes like XXXX.0
assert param_code[3] == 1071, (code, method_code, param_code[3])
assert param_value[3] == param_value[1]
grid2_param_auth_name = EPSG_AUTHORITY
grid2_param_code = param_code[2]
grid2_param_name = param_name[2]
grid2_value = param_value[2]
iout = 0
for i in (4, 5):
if param_value[i] != -999:
sql_param_auth_name[iout] = EPSG_AUTHORITY
sql_param_code[iout] = param_code[i]
sql_param_name[iout] = param_name[i]
sql_param_value[iout] = param_value[i]
sql_param_uom_auth_name[iout] = EPSG_AUTHORITY
sql_param_uom_code[iout] = param_uom_code[i]
iout += 1
else:
assert n_params == 1, (code, name, method_code, n_params)
arg = (EPSG_AUTHORITY, code, name,
remarks,
EPSG_AUTHORITY, method_code, method_name,
EPSG_AUTHORITY, source_crs_code,
EPSG_AUTHORITY, target_crs_code,
coord_op_accuracy,
EPSG_AUTHORITY, param_code[0], param_name[0], param_value[0],
grid2_param_auth_name, grid2_param_code, grid2_param_name, grid2_value,
sql_param_auth_name[0], sql_param_code[0], sql_param_name[0], sql_param_value[0], sql_param_uom_auth_name[0], sql_param_uom_code[0],
sql_param_auth_name[1], sql_param_code[1], sql_param_name[1], sql_param_value[1], sql_param_uom_auth_name[1], sql_param_uom_code[1],
interpolation_crs_auth_name, interpolation_crs_code,
coord_tfm_version,
deprecated
)
#proj_db_cursor.execute("INSERT INTO coordinate_operation VALUES (?,?,'grid_transformation')", (EPSG_AUTHORITY, code))
try:
proj_db_cursor.execute('INSERT INTO grid_transformation VALUES (' +
'?,?,?, ?, ?,?,?, ?,?, ?,?, ?, ?,?,?,?, ?,?,?,?, ?,?,?,?,?,?, ?,?,?,?,?,?, ?,?, ?,?)', arg)
except sqlite3.IntegrityError:
print(arg)
raise
def fill_other_transformation(proj_db_cursor):
# 9601: Longitude rotation
# 9616: Vertical offset
# 9618: Geographic2D with Height offsets
# 9619: Geographic2D offsets
# 9624: Affine Parametric Transformation
# 9660: Geographic3D offsets
# 1131: Geog3D to Geog2D+GravityRelatedHeight
# 1136: Geographic3D to GravityRelatedHeight
# 1068: Height Depth Reversal
# 1069: Change of Vertical Unit
# 1046: Vertical Offset and Slope
# 9621: Similarity transformation
# 9656: Cartesian Grid Offsets
# 1143: Position Vector (geocen) & Geocen translations NEU velocities (gtg)
proj_db_cursor.execute("SELECT coord_op_code, coord_op_name, coord_op_method_code, coord_op_method_name, source_crs_code, target_crs_code, coord_op_accuracy, coord_tfm_version, epsg_coordoperation.deprecated, epsg_coordoperation.remarks FROM epsg.epsg_coordoperation LEFT JOIN epsg.epsg_coordoperationmethod USING (coord_op_method_code) WHERE coord_op_method_code IN (9601, 9616, 9618, 9619, 9624, 9660, 1068, 1069, 1046, 1131, 1136, 9621, 9656, 1143)")
for (code, name, method_code, method_name, source_crs_code, target_crs_code, coord_op_accuracy, coord_tfm_version, deprecated, remarks) in proj_db_cursor.fetchall():
# 1068 and 1069 are Height Depth Reversal and Change of Vertical Unit
# In EPSG, there is one generic instance of those as 7812 and 7813 that
# don't refer to particular CRS, and instances pointing to CRS names
# The later are imported in the other_transformation table since we recover
# the source/target CRS names from the transformation name.
if method_code in (1068, 1069) and source_crs_code is None and target_crs_code is None:
parts = name.split(" to ")
if len(parts) != 2:
continue
proj_db_cursor.execute("SELECT coord_ref_sys_code FROM epsg_coordinatereferencesystem WHERE coord_ref_sys_name = ?", (parts[0],))
source_codes = proj_db_cursor.fetchall()
proj_db_cursor.execute("SELECT coord_ref_sys_code FROM epsg_coordinatereferencesystem WHERE coord_ref_sys_name = ?", (parts[1],))
target_codes = proj_db_cursor.fetchall()
if len(source_codes) != 1 and len(target_codes) != 1:
continue
source_crs_code = source_codes[0][0]
target_crs_code = target_codes[0][0]
expected_order = 1
max_n_params = 11
param_auth_name = [None for i in range(max_n_params)]
param_code = [None for i in range(max_n_params)]
param_name = [None for i in range(max_n_params)]
param_value = [None for i in range(max_n_params)]
param_uom_auth_name = [None for i in range(max_n_params)]
param_uom_code = [None for i in range(max_n_params)]
interpolation_crs_auth_name = None
interpolation_crs_code = None