-
-
Notifications
You must be signed in to change notification settings - Fork 124
Closed
Labels
Description
I built this for shapefile-to-sqlite but it would be useful in sqlite-utils too:
SPATIALITE_PATHS = (
"/usr/lib/x86_64-linux-gnu/mod_spatialite.so",
"/usr/local/lib/mod_spatialite.dylib",
)def find_spatialite():
for path in SPATIALITE_PATHS:
if os.path.exists(path):
return path
return NoneReactions are currently unavailable