Skip to content

Commit

Permalink
[feature] Port Export to PostgreSQL algorithm to C++
Browse files Browse the repository at this point in the history
  • Loading branch information
root676 committed Nov 10, 2021
1 parent bcab5f0 commit 4c2e96a
Show file tree
Hide file tree
Showing 7 changed files with 283 additions and 224 deletions.
5 changes: 0 additions & 5 deletions python/plugins/processing/algs/help/qgis.yaml
Expand Up @@ -146,11 +146,6 @@ qgis:hypsometriccurves: >
qgis:importintospatialite: >
This algorithm imports a vector layer into a SpatiaLite database, creating a new table.

qgis:importintopostgis: >
This algorithm imports a vector layer into a PostgreSQL database, creating a new table.

Prior to this a connection between QGIS and the PostgreSQL database has to be created (for example with the DB Manager).

qgis:joinbylocationsummary: >
This algorithm takes an input vector layer and creates a new vector layer that is an extended version of the input one, with additional attributes in its attribute table.

Expand Down
217 changes: 0 additions & 217 deletions python/plugins/processing/algs/qgis/ImportIntoPostGIS.py

This file was deleted.

2 changes: 0 additions & 2 deletions python/plugins/processing/algs/qgis/QgisAlgorithmProvider.py
Expand Up @@ -48,7 +48,6 @@
from .HubDistancePoints import HubDistancePoints
from .HypsometricCurves import HypsometricCurves
from .IdwInterpolation import IdwInterpolation
from .ImportIntoPostGIS import ImportIntoPostGIS
from .ImportIntoSpatialite import ImportIntoSpatialite
from .KeepNBiggestParts import KeepNBiggestParts
from .KNearestConcaveHull import KNearestConcaveHull
Expand Down Expand Up @@ -116,7 +115,6 @@ def getAlgs(self):
HubDistancePoints(),
HypsometricCurves(),
IdwInterpolation(),
ImportIntoPostGIS(),
ImportIntoSpatialite(),
KeepNBiggestParts(),
KNearestConcaveHull(),
Expand Down
1 change: 1 addition & 0 deletions src/analysis/CMakeLists.txt
Expand Up @@ -80,6 +80,7 @@ set(QGIS_ANALYSIS_SRCS
processing/qgsalgorithmexplodehstore.cpp
processing/qgsalgorithmexportlayersinformation.cpp
processing/qgsalgorithmexportmesh.cpp
processing/qgsalgorithmexporttopostgresql.cpp
processing/qgsalgorithmexporttospreadsheet.cpp
processing/qgsalgorithmextendlines.cpp
processing/qgsalgorithmextentfromlayer.cpp
Expand Down

0 comments on commit 4c2e96a

Please sign in to comment.