-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add GeoPackage support * Define GeoPackage dialect and rework the code accordingly * Fix comments from review * Filter GeoPackage tables in Alembic helpers * Create a view instead of a table for spatial_ref_sys * Fix docs
- Loading branch information
1 parent
8644ac7
commit 15ba005
Showing
25 changed files
with
1,387 additions
and
175 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.. _admin: | ||
|
||
Administration | ||
============== | ||
|
||
.. automodule:: geoalchemy2.admin | ||
:members: | ||
:private-members: | ||
:show-inheritance: | ||
|
||
|
||
Common objects | ||
-------------- | ||
|
||
.. automodule:: geoalchemy2.admin.dialects.common | ||
:members: | ||
:private-members: | ||
:show-inheritance: | ||
|
||
PostgreSQL-specific objects | ||
--------------------------- | ||
|
||
.. automodule:: geoalchemy2.admin.dialects.postgresql | ||
:members: | ||
:private-members: | ||
:show-inheritance: | ||
|
||
MySQL-specific objects | ||
--------------------------- | ||
|
||
.. automodule:: geoalchemy2.admin.dialects.mysql | ||
:members: | ||
:private-members: | ||
:show-inheritance: | ||
|
||
SQLite-specific objects | ||
--------------------------- | ||
|
||
.. automodule:: geoalchemy2.admin.dialects.sqlite | ||
:members: | ||
:private-members: | ||
:show-inheritance: | ||
|
||
GeoPackage-specific objects | ||
--------------------------- | ||
|
||
.. automodule:: geoalchemy2.admin.dialects.geopackage | ||
:members: | ||
:private-members: | ||
:show-inheritance: |
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 |
---|---|---|
|
@@ -108,6 +108,7 @@ Reference Documentation | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
admin | ||
types | ||
elements | ||
spatial_functions | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
"""This module defines some dialect-specific functions used for administration tasks.""" | ||
from geoalchemy2.admin.dialects import common # noqa | ||
from geoalchemy2.admin.dialects import geopackage # noqa | ||
from geoalchemy2.admin.dialects import mysql # noqa | ||
from geoalchemy2.admin.dialects import postgresql # noqa | ||
from geoalchemy2.admin.dialects import sqlite # noqa |
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
Oops, something went wrong.