-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from philiporlando/unnest-fgdb-to-gpkg
Refactor into `fgdb_to_gpkg()` into smaller functions, add tests
- Loading branch information
Showing
3 changed files
with
133 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
from .fgdb_to_gpkg import fgdb_to_gpkg | ||
from .fgdb_to_gpkg import ( | ||
remove_gpkg_if_overwrite, | ||
get_layer_lists, | ||
convert_layer, | ||
fgdb_to_gpkg, | ||
) | ||
|
||
__all__ = [ | ||
"remove_gpkg_if_overwrite", | ||
"get_layer_lists", | ||
"convert_layer", | ||
"fgdb_to_gpkg", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters