Nicolas Godet
7b80b30c2a
Fixes #50963 : Index already passed don't call findText
2022-11-24 08:01:47 +10:00
Ondřej Holešovský
854598d3b9
TilesXYZ.py - setTransformContext before rendering
...
Set transform context in QgsMapSettings before rendering tiles in order to respect all the desired CRS transformations configured in QGIS project settings.
2022-10-23 10:41:38 +10:00
Germán Carrillo
e9fd5f1fe5
[processing] Harmonize tags in processing algorithms related to error finding and fixing
2022-08-22 11:16:07 +10:00
Zayne Tomlins
3f20c88a62
Fixed lint issue with unit tests
2022-08-01 12:35:58 +10:00
Thomas Stocker
a3a34e0de0
Enable Journal Wal, increase Timeout use only sqlite transaction ( #49090 )
...
Fixes Multithreading issues with Mbtile Creation on slow disks and or Machines with a lot of threads.
Fixes #47738
2022-06-22 09:50:56 +10:00
Jan Caha
061a96a9e7
fix missing bracket
2022-05-07 06:53:08 +10:00
Jan Caha
ab16477158
fix line break
2022-05-07 06:53:08 +10:00
Jan Caha
46dd681fd5
fix widget data reading - i.e. from History
2022-05-07 06:53:08 +10:00
Germán Carrillo
20dfa3c038
UI: Make sure users cannot enter values that are lower than the minimum value allowed in 'points displacement' algorithm
2022-03-29 06:22:14 +10:00
Nyall Dawson
ef85926a5d
Correctly raise exceptions from XYZ tiles algorithm threads, and fix Python 3.10 compatibility
2022-02-14 16:20:55 +10:00
Mathieu Pellerin
663a70901f
Apply suggestions from code review
...
Co-authored-by: Matthias Kuhn <matthias@opengis.ch>
2022-02-01 05:37:24 +10:00
nirvn
f949adc760
Add spaces to make flake8 happy
2022-02-01 05:37:24 +10:00
nirvn
835fe144cc
[processing] Add missing field types to the advanced (i.e. python) field calculator algorithm
2022-02-01 05:37:24 +10:00
Clemens Raffler
4c2e96aad4
[feature] Port Export to PostgreSQL algorithm to C++
2021-11-11 08:10:36 +10:00
Harrissou Sant-anna
ab42fbbda6
Relabel the geometric predicate option
...
Co-authored-by: Nyall Dawson <nyall.dawson@gmail.com>
2021-11-05 09:51:27 +11:00
Harrissou Sant-anna
7a2ae423ed
Relabel "join by location..." algorithms inputs
2021-11-05 09:51:27 +11:00
Harrissou Sant-anna
ffec1cc138
Fix some labels ( #45549 )
...
* [needs-docs] Correct name for mesh calculator output
* [needs-docs] Use same label for input layer
as in the "join attributes by location" alg
2021-10-19 08:21:40 +02:00
PeterPetrik
0150ab8708
fix #41870 force UTF-8 encoding for prj files
2021-10-06 06:10:30 +10:00
Nyall Dawson
4f56a42275
Fix processing algs
2021-08-04 09:54:32 +10:00
franc
a5402f74a7
[bugfix][ui][rastercalculator] commit for disabling translation for operators in raster calculator
...
fixes #42441
changed two files, unchecked the option for translation for the operators button of the calculator
2021-06-02 16:40:46 +02:00
Matthias Kuhn
6a83a2f676
Replace fstring
2021-04-21 07:01:44 +02:00
Matthias Kuhn
0073ab76e8
Add safety check for field name in StatisticsByCategories
...
So far we would only get a KeyError for -1
2021-04-20 15:13:24 +02:00
Nyall Dawson
e11801d34e
Require Proj version 6 or later, drop old proj 4 compatibility code
2021-02-23 12:47:04 +10:00
Evan Derickson
a366d5b26c
Refactor climb.py
2021-02-20 12:26:00 +10:00
Evan Derickson
ef6799fad4
More append thinning
...
Along with some other loop optimizations
2021-02-20 12:26:00 +10:00
Evan Derickson
0e63799012
Reduce appends
2021-02-20 12:26:00 +10:00
Evan Derickson
dcde81fb1b
Thin out unneeded function calls
2021-02-20 12:26:00 +10:00
Nyall Dawson
f545d13aa6
Bit less noise in Find Projection algorithm
2021-02-08 13:23:39 +10:00
uclaros
43e673a143
Complete points to paths port
2021-01-19 05:09:48 +10:00
nirvn
8a85cae92c
[processing] Add 'thiessen' tag to QGIS' voronoi polygons algorithm
2021-01-13 15:42:06 +10:00
Alex
b686336513
[bugfix] PTP check for output folder. ( #40488 )
...
Fixes #40486
2020-12-22 13:47:03 +10:00
Nyall Dawson
b07a58c028
[processing] Port delete fields algorithm to c++
...
1:1 port for speed/compile time safety, no user-facing changes
Also add tests
2020-11-23 19:20:40 +10:00
Denis Rouzaud
eddf6feb45
modernize CMakeLists.txt files
2020-11-12 07:14:46 +10:00
Matthias Kuhn
ae565f180a
Fix field type
2020-10-25 07:30:02 +10:00
Matthias Kuhn
be8a69fd9c
Ad hoc check for ORDER_EXPRESSION parameter
2020-10-25 07:30:02 +10:00
Matthias Kuhn
84e2d78d7d
[processing] Clean migration path to new order_expression parameter
2020-10-25 07:30:02 +10:00
Matthias Kuhn
e95b62d9fa
[processing] PointsToPath allow expression for order fields
...
Allows using `$id` as expression for a csv with ordered values
2020-10-25 07:30:02 +10:00
Nyall Dawson
ee7bea2305
[processing] Fix execution of "Eliminate selection" through Python
...
Fixes #38808
2020-10-09 05:17:21 +10:00
Henry Walshaw
1312cfe599
Add square brackets around the saved expression
...
When saving a raster expression the generated expression didn't contain square brackets around the letters used for band identifiers. Sticking with the NDVI example:
```
("NIR@1" - "Red@1") / ("NIR@1" + "Red@1")
```
becomes
```
(a - b) / (a + b)
```
Due to the way the expression is parsed these would not be interactie parameters for the user to set as the parameters requre square brackets around the layer tags. This change simply updates the string replacement to include the square brackets so you would get instead:
```
([a] - [b]) / ([a] + [b])
```
2020-09-14 15:58:38 +10:00
Ivan Ivanov
d32369f5ce
Translate qgis::fieldcalculator to C++ (simplistic UI)
2020-09-11 10:55:12 +03:00
DiGro
4aefe0d65b
Typo corrected. Added one space
...
Line 120 : "FieldPyculator code execute error.Global code block can't be executed!\n{0}\n{1}" " should probably be
"FieldPyculator code execute error. Global code block can't be executed!\n{0}\n{1}" "
Added one space bewteen "error." and "Gobal"
2020-08-20 06:59:48 +10:00
nirvn
d827faa2c8
[processing] Upgrade the sample raster value algorithm to native C++
2020-08-17 12:59:34 +07:00
Matthias Kuhn
6124b5c01f
Apply suggestions from code review
2020-08-15 18:59:50 +02:00
Matthias Kuhn
1c6a0a8f6f
Apply suggestions from code review
2020-08-15 18:59:28 +02:00
MrChebur
92914c5339
Apply suggestions from code review
...
Co-authored-by: Matthias Kuhn <matthias@opengis.ch>
2020-08-15 21:56:43 +05:00
Matthias Kuhn
a3c8d6dc29
Update python/plugins/processing/algs/qgis/PointsToPaths.py
2020-08-15 18:55:54 +02:00
MrChebur
e5246da109
Update PointsToPaths.py
...
spaces deleted
2020-08-15 21:50:47 +05:00
MrChebur
660703d696
Apply suggestions from code review
...
Co-authored-by: Matthias Kuhn <matthias@opengis.ch>
2020-08-15 21:31:53 +05:00
MrChebur
be613409b4
Update PointsToPaths.py
...
"line" is replaced by "path"
2020-08-15 21:27:30 +05:00
MrChebur
a30635d71e
Update PointsToPaths.py
...
Returned missing spaces
2020-08-15 21:20:51 +05:00