You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 13, 2024. It is now read-only.
Index the 'geometries' table (requires that libspatialite already be installed)
36
+
-index-alt value
37
+
Zero or more table names where alt geometry files should be indexed.
36
38
-index-alt-files
37
-
Index alt geometries
39
+
Index alt geometries. This flag is deprecated, please use -index-alt=TABLE,TABLE,etc. instead. To index alt geometries in all the applicable tables use -index-alt=*
38
40
-index-relations
39
41
Index the records related to a feature, specifically wof:belongsto, wof:depicts and wof:involves. Alt files for relations are not indexed at this time.
fs.BoolVar(&supersedes, "supersedes", false, "Index the 'supersedes' table")
64
69
65
70
fs.BoolVar(&spatial_tables, "spatial-tables", false, "If true then index the necessary tables for use with the whosonfirst/go-whosonfirst-spatial-sqlite package.")
71
+
fs.BoolVar(&spelunker_tables, "spelunker-tables", false, "If true then index the necessary tables for use with the whosonfirst/go-whosonfirst-spelunker packages")
66
72
67
73
fs.BoolVar(&live_hard, "live-hard-die-fast", true, "Enable various performance-related pragmas at the expense of possible (unlikely) database corruption")
68
74
fs.BoolVar(&timings, "timings", false, "Display timings during and after indexing")
69
75
fs.BoolVar(&optimize, "optimize", true, "Attempt to optimize the database before closing connection")
70
76
71
-
fs.BoolVar(&alt_files, "index-alt-files", false, "Index alt geometries")
77
+
fs.BoolVar(&alt_files, "index-alt-files", false, "Index alt geometries. This flag is deprecated, please use -index-alt=TABLE,TABLE,etc. instead. To index alt geometries in all the applicable tables use -index-alt=*")
78
+
fs.Var(&index_alt, "index-alt", "Zero or more table names where alt geometry files should be indexed.")
79
+
72
80
fs.BoolVar(&strict_alt_files, "strict-alt-files", true, "Be strict when indexing alt geometries")
73
81
74
82
fs.BoolVar(&index_relations, "index-relations", false, "Index the records related to a feature, specifically wof:belongsto, wof:depicts and wof:involves. Alt files for relations are not indexed at this time.")
0 commit comments