gitextract_f4gt1_zi/ ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── clients/ │ ├── QtMapServiceClient.py │ └── QtMapServiceClient.ui ├── core/ │ ├── __init__.py │ ├── basemaps/ │ │ ├── __init__.py │ │ ├── gpkg.py │ │ ├── mapservice.py │ │ └── servicesDefs.py │ ├── checkdeps.py │ ├── errors.py │ ├── georaster/ │ │ ├── __init__.py │ │ ├── bigtiffwriter.py │ │ ├── georaster.py │ │ ├── georef.py │ │ ├── img_utils.py │ │ └── npimg.py │ ├── lib/ │ │ ├── Tyf/ │ │ │ ├── VERSION │ │ │ ├── __init__.py │ │ │ ├── decoders.py │ │ │ ├── encoders.py │ │ │ ├── gkd.py │ │ │ ├── ifd.py │ │ │ ├── tags.py │ │ │ └── values.py │ │ ├── imageio/ │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── core/ │ │ │ │ ├── __init__.py │ │ │ │ ├── fetching.py │ │ │ │ ├── findlib.py │ │ │ │ ├── format.py │ │ │ │ ├── functions.py │ │ │ │ ├── request.py │ │ │ │ └── util.py │ │ │ ├── freeze.py │ │ │ ├── plugins/ │ │ │ │ ├── __init__.py │ │ │ │ ├── _freeimage.py │ │ │ │ └── freeimage.py │ │ │ ├── resources/ │ │ │ │ └── shipped_resources_go_here │ │ │ └── testing.py │ │ ├── imghdr.py │ │ ├── shapefile.py │ │ └── shapefile123.py │ ├── maths/ │ │ ├── __init__.py │ │ ├── akima.py │ │ ├── fillnodata.py │ │ ├── interpo.py │ │ └── kmeans1D.py │ ├── proj/ │ │ ├── __init__.py │ │ ├── ellps.py │ │ ├── reproj.py │ │ ├── srs.py │ │ ├── srv.py │ │ └── utm.py │ ├── settings.json │ ├── settings.py │ └── utils/ │ ├── __init__.py │ ├── bbox.py │ ├── gradient.py │ ├── timing.py │ └── xy.py ├── geoscene.py ├── issue_template.md ├── operators/ │ ├── __init__.py │ ├── add_camera_exif.py │ ├── add_camera_georef.py │ ├── io_export_shp.py │ ├── io_get_dem.py │ ├── io_import_asc.py │ ├── io_import_georaster.py │ ├── io_import_osm.py │ ├── io_import_shp.py │ ├── lib/ │ │ └── osm/ │ │ ├── nominatim.py │ │ └── overpy/ │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── exception.py │ │ └── helper.py │ ├── mesh_delaunay_voronoi.py │ ├── mesh_earth_sphere.py │ ├── nodes_terrain_analysis_builder.py │ ├── nodes_terrain_analysis_reclassify.py │ ├── object_drop.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── bgis_utils.py │ │ ├── delaunay_voronoi.py │ │ └── georaster_utils.py │ └── view3d_mapviewer.py └── prefs.py