David Marteau
6af744da82
Remove plugin module path when unloading
...
Unloading plugin must remove added module path
in order to prevent wrong package import when reloading
2019-04-24 16:09:09 +02:00
Martin Dobias
1106f6ab23
Merge pull request #9839 from wonder-sk/fix-3d-extra-terrain-updates
...
[3d] Fix unnecessary terrain map updates when changing 3D renderer
2019-04-23 16:27:19 +02:00
Martin Dobias
60572ac4d4
[3d] Fix unnecessary terrain map updates when changing 3D renderer
...
When using layer styling dock, every change in 3D rendering configuration
was also triggering update of 2D map which also forces update of all
terrain tile textures with a new 2D map which wasn't really needed.
The fix makes the triggerRefresh() call on layer optional - each layer
styling dock config widget can tell whether its updates require 2D map
refresh (true by default).
2019-04-21 21:01:01 +02:00
Alexander Bruy
c706cdeb06
[processing] ensure that output temporary directory exists ( fix #21701 )
2019-04-20 11:53:47 +03:00
Nyall Dawson
9da6a03b50
Add API for specifying fallback CRS and layer WKB type to use
...
for QgsVectorLayer, when constructing a layer with a URI which
may be invalid
These may be used for layers where the geometry type/CRS is
known in advance, and where the layer path may not be
initially resolvable. (E.g. layers with a URI pointing to a
non-existant file). It is only ever used if the layer cannot
be resolved, otherwise the actual layer geometry type will be
detected and used for the layer.
2019-04-19 06:07:13 +10:00
Nyall Dawson
0f1660990f
Store vector layer wkb type in xml
...
We can use this when restoring the layer, if the uri turns out
to be invalid at that stage (e.g. a file has moved). By storing
and falling back to the last known wkb type, we avoid unnecessarily
discarding the existing layer renderer, and can still show the
expected layer type in the layer tree.
2019-04-18 18:41:09 +10:00
Juergen E. Fischer
40c790f5d9
fix 3d7c711db (refs #21872 )
2019-04-17 23:56:31 +02:00
Juergen E. Fischer
3d7c711db0
fix #21872 (refs #21774 ; partly reverts e57d1e06f0 and 507e327c0c)
...
src/python/qgspythonutilsimpl.cpp:596 produces "lost sys.stdout" when
qgis.utils.updateAvailablePlugins() returns.
2019-04-17 22:30:01 +02:00
Alessandro Pasotti
7032db27fa
[server] Implement LAYERFONTCOLOR and ITEMFONTCOLOR
...
Fixes #21871
Fixes #21870
Funded by: Gis3w
2019-04-17 12:01:06 +02:00
Blottiere Paul
3c6299a199
Merge pull request #9775 from signedav/default_symbol_scale
...
[server] Default scale/mupmm on GetLegendGraphics
2019-04-17 10:47:27 +02:00
Matthias Kuhn
8416e7588c
Merge pull request #9781 from m-kuhn/processing_parameter_as_boolean
...
Add QgsProcessingAlgorithm::parameterAsBoolean
2019-04-17 09:20:07 +02:00
Alessandro Pasotti
56a6df4d71
Fix doxy deprecated
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
3d687e5558
Add transform context to raster file writer task
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
87998f7f7d
Pass transformContext to raster writer
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
400e1c76ee
doxy
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
ac04339434
Pass transform context to raster calculator
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
0d7841a0d8
Fix grass alg combineLayerExtents
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
394a189682
Fix class documentation
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
654a78d6ff
Raster transform context
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
b3a448a2b2
Do not store context in layer (but in provider) ...
...
... also use transform context in raster projector
and deprecate setCrs without context
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
7f52e2938a
doxy
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
7b6f9c0dbc
Restore default ctor for options and layer
2019-04-17 10:06:41 +10:00
Nyall Dawson
b6bc1ee2d4
Tweak QgsProcessingUtils::combineLayerExtents for future proofing, remove deprecated usage
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
82f2cb18b2
Deprecate default ctor for mesh layer options
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
f8dfdc4aa0
Deprecate method without transformContext
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
e930bee9e2
Add mandatory options to QgsVectorLayer ctor
...
... and deprecate the rest.
In QGIS 4 we'll have to get rid of the deprecated default ctor and
create a new one which takes no arguments.
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
6813a55fce
Deprecate vector layer ctor with default constructed options
...
replaced by QgsVectorLayer( const QgsVectorLayer::LayerOptions &options,
...
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
4614c3e0bd
Dox typos
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
5f3dc50ccc
Remove deprecated QgsCoordinateTransform ctor ...
...
... and add a getter for coordinateTransform to QgsMapLayer
The reason is that I think we should reduce the dataProvider API
usage and rely on the higher level QgsMapLayer API whenever it
is possible, QgsMapLayer checks for data provider validity
and returns a default constructed QgsCoordinateTransform instead
of crashing.
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
7f271d1ebd
More coordinateTranformContext -> tranformContext
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
470759833e
coordinateTransformContext -> transformContext for consistency
...
I like "coordinateTransformContext" more btw.
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
df2bdf9c1a
Handle the coordinate tranform context in the layer ctor
...
Also use the context when read/write XML by passing it
in the R/W context
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
71698bf707
Remove all deprecated usages of QgsCoordinateTransform without context
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
3d5e67e72c
Fix SIP (sipify does not like inline initializers)
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
dcf206232c
Step2 of coordinate traform context passing: SIP broken
2019-04-17 10:06:41 +10:00
Alessandro Pasotti
c21cd35fe0
Add coordinate transform context to data provider options
...
First step to pass the context down into the rabbit hole.
2019-04-17 10:06:41 +10:00
Matthias Kuhn
b90a01847f
Prefer parameterAsBoolean over parameterAsBool
2019-04-16 08:30:00 +02:00
Juergen E. Fischer
891ea18bab
debian packaging: add ubuntu disco
2019-04-15 23:38:20 +02:00
Matthias Kuhn
4771f802fc
Add QgsProcessingParameters::parameterAsBoolean for consistency
2019-04-15 14:08:41 +02:00
David Signer
27fc381600
fix comment
2019-04-12 22:24:42 +02:00
Matthias Kuhn
d0e24e8bc4
Add QgsProcessingAlgorithm::parameterAsBoolean
...
For consistency
Alias to QgsProcessingAlgorithm::parameterAsBool(), because the parameter class is called
QgsProcessingParameterBoolean
2019-04-12 21:26:09 +02:00
Alessandro Pasotti
507e327c0c
Handle broken plugins when searching for dependencies
2019-04-12 14:38:52 +02:00
David Signer
1c3cfd1e13
use calculation factor for scale
2019-04-11 11:42:45 +02:00
David Signer
7ef426b0ef
using of configured default map units per mm for legend symbols in case no BBOX parameter is passed
2019-04-11 11:42:45 +02:00
nirvn
9ce1093bce
[FEATURE][ogr] Add string list field type support
2019-04-10 08:06:12 +07:00
Blottiere Paul
c2840a26eb
Merge pull request #9699 from pblottiere/server_split
...
[server] Move specialised funtions in correponding service cpp files
2019-04-09 16:35:24 +02:00
Blottiere Paul
c09e10ceb2
Update doc and sip binding
2019-04-09 15:43:11 +02:00
Blottiere Paul
911ef98677
Update sip binding
2019-04-09 15:43:11 +02:00
Alessandro Pasotti
e57d1e06f0
Fix plugin loading from zip (dependencies followup)
2019-04-09 15:21:09 +02:00
Martin Dobias
b5fec5872b
Edge settings for polygons + GUI to configure edge rendering
2019-04-09 09:42:08 +02:00