Skip to content

Instantly share code, notes, and snippets.

@davidstrategicaci
Created October 19, 2018 14:02
Embed
What would you like to do?
from dijkstar import Graph, find_path, NoPathError
import sqlite3
from tabulate import tabulate
from IPython.display import HTML
GeoPackageFile = "AGC_USGS-Topo_DistricOfColumbia_NSG_4326-V1-0_18OCT18.gpkg"
databaseConnection = sqlite3.connect(GeoPackageFile)
cursor = databaseConnection.cursor()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment