Nyall Dawson
c24f51ece8
[processing] Fix exception in IDW interpolation
...
Fixes #21578
2019-03-15 08:38:01 +10:00
Nyall Dawson
db1645cf12
[processing] Fix processing.runAndLoadResults
...
Fixes #21551
2019-03-15 08:37:43 +10:00
Hugo Mercier
a7d060bb96
Merge pull request #9494 from mhugo/force_provider_constraints
...
Allow the strength of provider constraints to be soft
2019-03-14 08:42:12 +01:00
Hugo Mercier
1eaa5bbf96
Allow the strength of provider constraints to be set to soft
2019-03-13 15:30:29 +01:00
Nyall Dawson
46e3304d2c
Fix naming collision
2019-03-13 16:52:29 +10:00
Nyall Dawson
32fbf0a92b
[processing][FEATURE] New parameter type for map scales
...
This adds a new parameter type specifically for map scales,
QgsProcessingParameterScale. The values are evaluated using
self.parameterAsDouble, which returns the map scale
denominator (matching the standard in other parts of the
QGIS API).
Scale parameters are displayed to users using the standard
QgsScaleWidget, which includes the combo box of predefined
scales and a shortcut button to match the current map scale.
2019-03-13 16:52:29 +10:00
Nyall Dawson
ca7008c285
Add API to allow QgsScaleWidget to accept NULL values
2019-03-13 16:52:29 +10:00
Nyall Dawson
7c582063c1
Add API to allow null values in QgsScaleComboBox
2019-03-13 16:52:29 +10:00
Matthias Kuhn
857fe53773
[FEATURE] Merge pull request #9460 from m-kuhn/labeling_geometry_generator
...
➿ Geometry generators for labeling ➿
2019-03-12 14:15:51 +01:00
Julien Cabieces
1dc146a7ca
Change 'since' version to 3.4.6 ( #9480 )
2019-03-12 12:05:36 +01:00
Harrissou Sant-anna
4b9f4da929
Use Qt style "returns .." tense instead of "return .."
2019-03-12 14:42:36 +10:00
Nyall Dawson
021d1ef237
[FEATURE][processing] New parameter types for layouts and layout items
...
Allows processing algorithms which operate on a specific layout
and layout item selection
2019-03-12 08:16:52 +10:00
Nyall Dawson
f9fb4085b2
Tweaks to layout item combo box
2019-03-12 08:16:52 +10:00
Nyall Dawson
0003e91f27
Add methods to resolve parameters to layouts/layout items
2019-03-12 08:16:52 +10:00
Nyall Dawson
ba82954ac5
[processing] Add new parameter type for layout item objects
2019-03-12 08:16:52 +10:00
Nyall Dawson
dd49720863
[processing] Add new parameter type for print layout names
2019-03-12 08:16:52 +10:00
Nyall Dawson
5ec43cfdc1
[processing] Add project to QgsProcessingParameterWidgetContext
2019-03-12 08:16:52 +10:00
Nyall Dawson
8d77a6bdcc
New gui class QgsLayoutComboBox
...
Shows a list of layouts
2019-03-12 08:16:52 +10:00
Nyall Dawson
cba22770dc
Move layout manager model from app to core and add unit tests
2019-03-12 08:16:52 +10:00
Nyall Dawson
0b270f98fb
Merge pull request #9454 from nastasi-oq/distribute-equispaced2
...
[layout] add new vertical and horizontal equispaced distributions
2019-03-12 06:29:33 +10:00
Alessandro Pasotti
8e39f0f57a
Merge pull request #9478 from elpaso/bugfix-21028-db-manager-sqlite-thread
...
[db-manager] Invalidate sqlite connection if it was created in anothe…
2019-03-11 21:28:43 +01:00
Alessandro Pasotti
8fb112d26f
[db-manager] Invalidate sqlite connection if it was created in another thread
...
Fixes #21028 - DB manager: SQLite objects created in a thread can only be used in that same thread
2019-03-11 16:04:00 +01:00
Matthias Kuhn
05ff817a97
Update docs
2019-03-11 12:48:14 +01:00
Matthias Kuhn
f575656ddb
Merge pull request #9461 from m-kuhn/pal_cleanup
...
Some cleanup in labeling and pal
2019-03-11 07:38:47 +01:00
Etienne Trimaille
fa843f8705
drop old processing provider example which is not compatible QGIS 3
2019-03-11 09:38:23 +10:00
Giovanni Manghi
7aa7248b97
Better GRASS r.series description to help workaround a limitation of Processing
2019-03-11 09:22:02 +10:00
Alexander Bruy
8b621b6997
[feature][processing] expose GDAL pansharpening tool in the Processing
2019-03-11 08:48:02 +10:00
Alexander Bruy
0fcf567fb0
[processing] fix handling of the multiple layers parameter when inputs
...
are plain files
2019-03-11 08:29:03 +10:00
Nyall Dawson
82b186f00f
[processing] Allow data type for numeric inputs to be specified
2019-03-11 08:05:07 +10:00
Nyall Dawson
9f6ddaf5c5
Fix qt warning on modeler algorithm edit
2019-03-11 08:05:07 +10:00
Nyall Dawson
cf43446885
[processing] Show parameter type in input definition dialog title
2019-03-11 08:05:07 +10:00
Nyall Dawson
b66b944535
[FEATURE][processing] New Raster Boolean logical OR/AND algorithms
...
These algorithms calculate the boolean OR or AND for a set of input
rasters. For AND, if all of the input rasters have a non-zero value
for a pixel, that pixel will be set to 1 in the output raster, otherwise
it will be set to 0. For OR, if ANY of the input rasters have a non-zero
value for a pixel, that pixel will be set to 1 in the output raster,
else 0.
A reference layer parameter specifies an existing raster layer to use
as a reference when creating the output raster. The output raster will
have the same extent, CRS, and pixel dimensions as this layer
By default, a nodata pixel in ANY of the input layers will result in
a nodata pixel in the output raster. If the 'Treat nodata values
as false' option is checked, then nodata inputs will be treated the
same as a 0 input value.
Makes for much simpler raster boolean logic calculation without
the complexity of using the raster calculator (and that's not
always possible to do anyway, e.g. when ANY of the input rasters
has a nodata pixel). It's also scalable dynamic to any number of
input rasters (unlike raster calc), so is more flexible when
used within models.
2019-03-11 07:45:44 +10:00
Matthias Kuhn
a133bcae45
Fix sip bindings and ignore missing docs
2019-03-10 18:37:41 +01:00
Matthias Kuhn
2ab58c94db
Rule based labeling RAII
2019-03-10 17:27:50 +01:00
Matthias Kuhn
da0e4741c1
Pal should also use 64 bit fids
2019-03-10 17:27:50 +01:00
Matthias Kuhn
67e1c333ee
Save geometry generator enabled/disabled state independently
2019-03-10 13:36:52 +01:00
Matthias Kuhn
7ceb97aec6
Merge pull request #9456 from Gustry/pyqt
...
replace some PyQt5 to qgis.PyQt
2019-03-10 12:08:07 +01:00
Matthias Kuhn
312473c4dd
Update python/plugins/MetaSearch/util.py
...
Co-Authored-By: Gustry <gustrimaille@yahoo.fr>
2019-03-10 06:34:10 -04:00
Matthias Kuhn
a91ecd534c
Merge pull request #9444 from NaturalGIS/gdal_fix_improve_gdal_clip_raster_by_mask
...
Fixes/improves the GDAL clip by mask layer tool
2019-03-10 10:35:13 +01:00
Etienne Trimaille
2076ca4fe0
replace some PyQt5 to qgis.PyQt
2019-03-09 22:45:51 -04:00
Matteo Nastasi
37d482c696
Merge remote-tracking branch 'mainstream/master' into distribute-equispaced2
2019-03-10 01:00:05 +01:00
Alexander Bruy
80dd6d5203
[processing] add missed imports to batch panel ( fix #21486 )
2019-03-09 20:34:15 +02:00
Matteo Nastasi
7c6b66be8a
[FEATURE] [needs-docs] add new vertical and horizontal equispaced distributions
2019-03-09 18:18:07 +01:00
Giovanni Manghi
78cc5b2bf5
Fixes/improves the GDAL clip by mask layer tool: removes a an option (-te) that does not make sense for the clip by mask, and adds the option to allow choose the output resolution
2019-03-09 11:46:26 +00:00
Mathieu Pellerin
3057fd61b0
[plugin manager] Dont disconnect overall finished signal
2019-03-09 18:45:30 +07:00
Alessandro Pasotti
ec0ff4abb5
Merge pull request #9417 from elpaso/bugfix-21497-make-features-compatible
...
Fix makeFeatureCompatible wrong field count
2019-03-08 12:16:06 +01:00
Denis Rouzaud
0e5c91234f
add missing new line
2019-03-08 12:00:02 +01:00
Denis Rouzaud
d0fceef23a
Merge pull request #9425 from 3nids/scope_base_enum
...
Scope based enum
2019-03-08 11:38:01 +01:00
Nyall Dawson
cccf974211
[processing] Port enum widget wrapper to new API
...
Fixes:
- enum parameters set to "allow multiple" only allow a single
value selection when used in modeler
- optional enum parameters cannot be set to no value when
used outside of modeler
Fixes #20406
2019-03-08 15:46:59 +10:00
Denis Rouzaud
20883c9532
run sipify
2019-03-07 21:07:53 +01:00