Harrissou Sant-anna
30aa5f5f96
Allow double typed values in algorithm
...
Also homogenize the output name
2017-10-27 13:09:39 +11:00
Harrissou Sant-anna
c2577ec0fc
Full sentence should often begin by capitalized letter
...
and end by a full stop.
2017-10-27 01:46:08 +02:00
Harrissou Sant-anna
f5025cc668
Use a more appropriate dialog title for message boxes
...
and capitalise first letters
2017-10-27 01:43:26 +02:00
Harrissou Sant-anna
2614ca1a96
Remove trailing spacing and punctuation in ui items
2017-10-27 01:43:26 +02:00
Nyall Dawson
034baf1b53
Merge pull request #5436 from alexbruy/processing-gdal-memory
...
[processing] correctly handle layers without attributes in GDAL-based geoprocessing algorithms (fix #17287 )
2017-10-26 20:19:12 +11:00
Nyall Dawson
d8775fca55
Merge pull request #5398 from DelazJ/DelazJ-patch-1
...
[DB Manager] Set correct dialog alignment
2017-10-26 12:59:31 +11:00
Nyall Dawson
c50ee6d42f
Update python code to new API
2017-10-26 07:06:34 +10:00
Etienne Trimaille
386eef2e6c
new string concatenation algorithm in processing
2017-10-25 08:17:59 +11:00
Alexander Bruy
4a51c40821
[processing] correctly handle layers without attributes in GDAL-based
...
geoprocessing algorithms (fix #17287 )
2017-10-24 15:33:49 +03:00
Alexander Bruy
04a8418a32
add tests for distance matrix algorithm
2017-10-24 15:27:23 +03:00
Alexander Bruy
c64f03d0a4
[processing] keep column names in standard distance matrix ( fix #17150 )
2017-10-24 15:27:22 +03:00
Nyall Dawson
46a6f25d6f
Merge pull request #5418 from nyalldawson/from_polyline
...
Rename QgsGeometry::fromPolyline as QgsGeometry::fromPolylineXY
2017-10-24 08:21:30 +11:00
lbartoletti
977ce426db
[FEATURE][processing]Transect processing
...
Adds a C++ version of the "ststion lines" plugin as a
new processing algorithm for creating transect lines.
2017-10-24 05:42:03 +11:00
Nyall Dawson
c4f3832af2
Rename QgsGeometry::fromPolyline as QgsGeometry::fromPolylineXY
...
and add new QgsGeometry::fromPolyline which uses QgsPoint
We want to encourage people not to use the QgsPointXY method, as it drops
Z/M values. So it's moved across to a different name to make way
for a new QgsGeometry::fromPolyline which uses a QgsPoint list
instead of QgsPointXY, thus keeping Z/M values intact.
Similarly, QgsPolyline now is a list of QgsPoint (keeping z/m values)
and the old 2d QgsPolyline type was renamed to QgsPolylineXY.
Making the QgsPoint method the "preferred" method and making linestrings
just as easy to create from z/m dimensioned points as 2d points is
important to push people to write code which does not discard
these important dimensions.
As a bonus, the QgsPoint methods are more efficient anyway, since
they don't require creation of a temporary list.
2017-10-22 18:10:14 +10:00
Juergen E. Fischer
f243b8448e
postgres: add support for partitioned tables (implements #17302 )
2017-10-21 17:39:18 +02:00
Matthias Kuhn
6428fed8a3
Merge pull request #5385 from jachym/geopackage
...
Put GeoPackage at first place in the menu
2017-10-21 16:33:20 +02:00
rldhont
efb84fd2ca
Merge pull request #5337 from dmarteau/qgis_utils_refactoring
...
Disable message hook and import override at runtime
2017-10-20 10:25:45 +02:00
Jachym Cepicky
28daa1a0e0
Adding more default SHP->GPKG changes
2017-10-19 15:45:04 +02:00
Harrissou Sant-anna
60d0db9ebd
[DB Manager]Set dialog alignment instead of adding trailing spaces to labels
2017-10-19 07:14:58 +02:00
Nyall Dawson
4ce166241e
Allow processing providers to specify a long name, and show it in tooltips
...
Add version number to gdal provider long name
2017-10-19 13:12:31 +10:00
Nyall Dawson
a33376fe09
Drop version and count from algorithm item in tree view
2017-10-19 12:01:40 +10:00
Nyall Dawson
925ec6098c
[processing] Always list native algorithms before 3rd party providers
...
This change ensures that searching for algorithms always returns
native algorithms before matching 3rd party algorithms
TODO: we really need to replace the toolbox tree with a proper
model and redo the sorting/filtering using a sort/filter proxy
model.
2017-10-19 12:01:40 +10:00
Alexander Bruy
a6ac876d90
[processing] update test data
2017-10-18 18:41:39 +03:00
volaya
fe780afc81
[processing] allow reordering in multiple selection dialog
2017-10-18 16:20:47 +02:00
Alexander Bruy
d0623620a3
[processing] retrieve dissolve parameter as boolean value
2017-10-18 16:21:57 +03:00
Tom Kralidis
92e5de9e9e
[MetaSearch] update plugin icon ( fixes #11732 ) [needs-docs]
2017-10-17 14:29:56 -04:00
David Marteau
40b916c7a3
Disable message hook and import override at runtime
2017-10-17 09:40:22 +02:00
Matthias Kuhn
ba9e0437cc
Merge pull request #5386 from m-kuhn/pylintFixes
...
Pylint fixes
2017-10-17 08:31:48 +02:00
Nyall Dawson
5b1afd86bc
"Loosen" up acceptable parameter for model child inputs
...
Previously we took a harsher approach to filtering which inputs
were acceptable for child algorithm parameters. E.g. a child algorithm
with a vector layer input would only show outputs from other algorithms
which generated a vector layer output.
But this can needlessly restrict what's possible in models. E.g.
an algorithm which outputs a QgsProcessingOutputFile or
QgsProcessingOutputString could potentially be a valid source
to a vector layer. So we should allow these as possible
inputs for vector layer parameters too.
This commit adds many extra acceptable input types for
child parameters. It will probably expose "corner cases" where
algorithms may get unexpected input types, but these will
not affect existing model stability and can be fixed when
identified.
The payoff is a much more flexible modeler.
2017-10-17 08:55:27 +10:00
Matthias Kuhn
262836d5fd
Fix too-many-format-args
2017-10-17 00:32:35 +02:00
Matthias Kuhn
f1eba211f6
Fix call to non-existent method
2017-10-17 00:29:23 +02:00
Matthias Kuhn
7aae9454ec
Add abstract base method
2017-10-17 00:28:58 +02:00
Matthias Kuhn
b0855e2c41
Fix super call
2017-10-17 00:28:33 +02:00
Matthias Kuhn
506a831565
Fix typo in method name
2017-10-17 00:03:31 +02:00
Matthias Kuhn
b94612dffa
Properly raise NotImplementedError
2017-10-17 00:01:48 +02:00
Matthias Kuhn
740f58b1db
Remove broken and unused code
2017-10-16 23:55:25 +02:00
Matthias Kuhn
5bf300d79f
Fix access to member variable in classmethod
2017-10-16 23:45:55 +02:00
Matthias Kuhn
118e303a8d
Fix typo in method call
2017-10-16 23:36:38 +02:00
Matthias Kuhn
23c7517dc9
Migrate processing help to new processing registry
2017-10-16 23:34:34 +02:00
Matthias Kuhn
60db6b0665
Fix member access in postgis.py
2017-10-16 23:34:19 +02:00
Matthias Kuhn
6538ba0bf2
Fix too-many-format-args
2017-10-16 23:25:13 +02:00
Matthias Kuhn
d793f6c5ab
Fix typo in method name
2017-10-16 23:22:09 +02:00
Matthias Kuhn
7c8cdff216
Fix used-before-assignment
2017-10-16 23:21:51 +02:00
Matthias Kuhn
34a9d91488
Fix broken error handling
2017-10-16 23:16:30 +02:00
Matthias Kuhn
28c67e1c01
Remove double-defined __init__ function
2017-10-16 23:05:14 +02:00
Matthias Kuhn
8b3a348b6d
Fix file modes
2017-10-16 23:00:53 +02:00
Daniele Viganò
a3f7655030
Fix a syntax error in dlg_sql_layer_window.py
2017-10-16 21:46:45 +02:00
Nyall Dawson
54f8825350
Fix processing tests
2017-10-16 20:10:37 +11:00
Nyall Dawson
e92e20e613
Move native c++ processing algorithms from core library to analysis
...
And split into separate files for each algorithm
2017-10-16 20:10:37 +11:00
rldhont
949d216744
Merge pull request #5316 from rldhont/db_manager_update_dblayer
...
[FEATURE][needs-docs][DB Manager] Be able to update every Db layer from Postgres, Spatialite and Oracle
2017-10-14 15:58:11 +02:00