Nyall Dawson
65548436ad
[processing] Port reverse line direction alg to c++
2018-07-24 03:55:49 +10:00
Nyall Dawson
59ec2e0bce
[processing][FEATURE] Port extend lines algorithm to c++, allow dynamic start/end distance
...
Allows the start and end distance to be data defined
2018-07-24 03:54:21 +10:00
Harrissou Sant-anna
8a1964fb85
Display same symbol for "not equal" operator in "Select by attribute" algorithm
...
as in "Extract by attribute" algorithm and "select features by value" function
2018-07-24 03:51:54 +10:00
Nyall Dawson
c0f67327aa
Capitalization
2018-07-20 07:24:35 +10:00
Nyall Dawson
8b2d5d0374
Use sample instead of identify in raster sampling alg
...
About 25x faster on large layers
2018-07-20 07:24:35 +10:00
matteo
1a0d0dbb3f
fix exception?
2018-07-16 08:01:02 +02:00
matteo
92d1cdc17a
add None in Exception
2018-07-12 12:45:18 +02:00
matteo
b8ce7faf07
allow sampling with different CRS
2018-07-12 11:30:48 +02:00
matteo
efa236597a
make column prefix as advanced parameter
2018-07-12 11:20:59 +02:00
matteo
f8339c9b97
output column prexif added
2018-07-12 10:27:03 +02:00
matteo
a7130a0f97
indentation
2018-07-12 10:00:53 +02:00
matteo
0835b20d57
exception for multipart layers
2018-07-12 09:52:41 +02:00
matteo
a4c0c2e560
single raster instead of multi
2018-07-12 09:27:56 +02:00
matteo
eca6691055
fix travis?
2018-07-11 10:50:46 +02:00
matteo
22d7b6c5d0
fixing indentation?
2018-07-11 09:23:09 +02:00
matteo
b6cafe7ece
indentation fix
2018-07-10 15:36:21 +02:00
matteo
d1cedbcf92
[processing][needs-doc][FEATURE] Sample raster values to point
2018-07-10 15:19:56 +02:00
Alexander Bruy
6d751dcb70
Merge pull request #7363 from alexbruy/fix-sampling
...
[processing] fix Random extract/select within subset algorithms
2018-07-04 19:53:53 +03:00
Nyall Dawson
6c014b46ba
[processing] Use c++ recent algorithm log, remove python log
...
Indirectly fixes #19218
2018-07-05 02:37:03 +10:00
Alexander Bruy
b72f5d1a53
[processing] log cases when subset is smaller than requested number of
...
features
2018-07-04 19:15:29 +03:00
Alexander Bruy
29207a1617
[processing] fix Random extract/select within subset when subset is
...
smaller than number of requested features (fix #19322 )
2018-07-04 18:30:30 +03:00
nirvn
7cb80a2308
Rename mActionDraw.svg to more appropriate mActionRefresh.svg
...
(in doing so, rename current mActionRefresh.svg to mActionReload.svg)
2018-07-02 12:51:44 +07:00
Juergen E. Fischer
ac63b8e16e
Translation fix
2018-07-02 02:47:09 +02:00
Håvard Tveite
a756fb1034
Fix parameter type for the BUFFER parameter of the Voronoi polygons alg
...
Fixes #19294
2018-06-29 23:02:03 +10:00
Nyall Dawson
85fba799ea
[processing] Don't abort when missing field name specified in
...
delete columns algorithm
Fixes #19256
2018-06-28 17:10:23 +10:00
Nyall Dawson
31330ddffb
[processing] Fix random selection algorithm when filter is set on layer
2018-06-28 15:02:06 +10:00
Matthias Kuhn
7acfe037c4
Merge pull request #7064 from anitagraser/patch-1
...
[FEATURE] Create PostGISExecuteAndLoadSQL.py
2018-06-25 08:17:04 +02:00
Anita Graser
bebadef101
Fix parameter names
2018-06-22 18:40:17 +02:00
Nyall Dawson
41d6b9d967
Silence more plotly warnings on import
2018-06-22 14:26:55 +10:00
Nyall Dawson
6e7c07bc86
Mark regex
2018-06-22 13:37:58 +10:00
Nyall Dawson
4132dbc1c8
Typo
2018-06-20 15:06:36 +10:00
Nyall Dawson
8d6ce61a70
[processing] Silence warnings thrown from within plotly on import
2018-06-20 08:07:23 +10:00
Nyall Dawson
16ac437780
[processing] Fix bar and box plot exception when category field has NULL values
2018-06-20 08:07:23 +10:00
Nyall Dawson
f838001d0a
Indentation
2018-06-15 06:39:48 +10:00
Nyall Dawson
bde8b4303f
Fix exception in create constant raster alg
2018-06-15 06:39:48 +10:00
Nyall Dawson
b26957e41f
Throw exception when raster output could not be created
2018-06-13 14:54:40 +10:00
Nyall Dawson
d7a37fa3eb
Throw exception when invalid band number specified
2018-06-13 14:54:40 +10:00
nirvn
f1397f8439
[processing] fix geometry by expression algorithm geometryless input
2018-06-12 19:02:34 +10:00
Nyall Dawson
b637c7fe22
Prevent background execution of zonal stats
...
This algorithm is NEVER safe to run in the background, because
it directly modifies a layer in place.
We should:
- make a variant of this algorithm which returns a new layer
AND
- refactor the QgsZonalStats code to create a separate map
of feature->stats, and then modify the existing Zonal Stats
algorithm to apply these changes in a post processing step
2018-06-08 10:13:13 +10:00
Nyall Dawson
fc5eb96295
Make zonal statistics algorithm thread safe
2018-06-08 10:13:13 +10:00
Nyall Dawson
22a98fb680
[processing] Allow choice of field prefix for Join algorithms
...
Avoids clash of field names resulting in potentially misleading results
2018-06-07 14:24:16 +10:00
Tom Chadwin
6a8a622ea4
Processing: Avoid deprecated regex
...
Escape sequence avoided in DefinProjection by using raw string:
`re.compile('\|.*')` > `re.compile(r'\|.*')`
2018-06-06 06:24:24 +10:00
Nyall Dawson
8c689b2d36
[processing] Fix create constant raster layer modifies pixel size
...
Fixes #18446
2018-06-05 16:15:58 +10:00
Andrea Giudiceandrea
adf5eb77cf
Add vector icons to some qgs algorithms ( fixes #19082 ) ( #7149 )
2018-06-04 13:32:56 +07:00
Anita Graser
60d5e4cfa1
Autopep8
2018-05-31 13:43:00 +02:00
Nyall Dawson
37b06bcf29
[processing] Fix Rectangles/Ovals/...(variable) chokes on angle values of 0
...
Change the test to a NULL test instead, as angle values of 0 are valid
2018-05-31 08:55:26 +10:00
Nyall Dawson
6bf5274b11
[processing] Fix some missing references warnings
2018-05-30 08:51:30 +10:00
Anita Graser
70afe2d8eb
Add geometry and id field parameters
2018-05-29 20:57:12 +02:00
Anita Graser
1ed5bb54ce
Autopep8
2018-05-29 15:08:27 +02:00
Anita Graser
f3146537a2
Cleanup + pep8
2018-05-28 19:52:00 +02:00