Skip to content

wburt/sporacle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Apr 22, 2024
af8f7b3 · Apr 22, 2024

History

12 Commits
Apr 18, 2024
Apr 18, 2024
Apr 18, 2024
Apr 22, 2024
Apr 22, 2024
Apr 18, 2024

Repository files navigation

sporacle

Common components for query of spatial data in Oracle database. Some testing has been done using kml area of interest inputs. More testing is needed to see if intersects are faster on client(local) or on db. For now both methods exist.

Examples: iterating intersect of different aoi kml with 44 input layers

test Database Geopandas
1 78 s 86 s
2 83 s 73 s

Requirements

oracledb Geopandas

Known issues

Very little testing has been done. The multi-polygon aoi is not implimented muiltiple issues to resolve

Usage Example

db = OracleSpatialQueries(
    user=os.environ.get("o_user"), 
    password=os.environ.get("o_pass")
)
datatable = "WHSE_FOREST_VEGETATION.VEG_COMP_LYR_R1_POLY" 
q = "PROJ_AGE_1 > 30"
db.add_aoi("mytest_aoi.kml")
if db.has_relate(table=datatable, dfn_query=q):
    db.get_intersecting(table=datatable,dfn_query=q)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published