Add new gis.py module with spatialite helper methods

This commit is contained in:
Chris Amico 2022-01-13 22:52:08 -05:00
commit b579a9c8ae
7 changed files with 216 additions and 20 deletions

View file

@ -19,7 +19,6 @@ import tabulate
from .utils import (
_compile_code,
file_progress,
find_spatialite,
sqlite3,
decode_base64_values,
progressbar,
@ -28,6 +27,8 @@ from .utils import (
TypeTracker,
)
from .gis import find_spatialite
CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])
VALID_COLUMN_TYPES = ("INTEGER", "TEXT", "FLOAT", "BLOB")