31842 Commits

Author SHA1 Message Date
Médéric RIBREUX
ae0b48d84c Add v.vect.stats algorithm 2016-03-12 12:54:49 +01:00
Médéric RIBREUX
2139d5fddc Add v.type algorithm 2016-03-12 12:45:35 +01:00
Médéric RIBREUX
b7a6037d51 Add v.to.3d algorithm 2016-03-12 12:34:15 +01:00
Médéric RIBREUX
09b9a6246d Add v.rast.stats algorithm 2016-03-12 12:21:45 +01:00
Médéric RIBREUX
3f1445998a Add v.pack algorithm 2016-03-12 11:48:37 +01:00
Médéric RIBREUX
2e0e7b6b17 Add v.out.vtk algorithm 2016-03-12 11:41:40 +01:00
Médéric RIBREUX
a7ec96ce46 Add v.kernel algorithm 2016-03-12 11:39:43 +01:00
Médéric RIBREUX
62b4d7ced7 Add v.in.mapgen algorithm 2016-03-12 11:34:57 +01:00
Médéric RIBREUX
33f3717c91 Add v.in.lines algorithm 2016-03-12 11:33:59 +01:00
Médéric RIBREUX
7f983e359d Add v.in.ascii algorithm 2016-03-12 11:27:14 +01:00
Nyall Dawson
3b40e2baa5 Fix broken $x_at, $y_at functions (fix #14462), add tests 2016-03-12 20:21:05 +11:00
Médéric RIBREUX
741d146362 Add v.in.geonames algorithm 2016-03-12 10:13:31 +01:00
Médéric RIBREUX
014355aa7e Add v.extrude algorithm 2016-03-12 10:05:38 +01:00
Médéric RIBREUX
2f579d2372 Add v.build.polylines algorithm 2016-03-12 09:42:43 +01:00
Médéric RIBREUX
8619b812cf Add v.build algorithm, only for topology checking 2016-03-12 09:27:49 +01:00
Matthias Kuhn
51d6f5f513 Merge pull request #2894 from rouault/fix_spatialite_insert
Fix spatialite insert
2016-03-12 08:38:48 +01:00
Matthias Kuhn
9167e1b679 Merge pull request #2902 from sebastic/qt5-globe-plugin
Add Qt5OpenGL variables to include_directories() & target_link_libraries()
2016-03-12 07:38:01 +01:00
Bas Couwenberg
2c5d56484a Add Qt5OpenGL variables to include_directories() & target_link_libraries(). 2016-03-12 02:08:21 +01:00
Matthias Kuhn
3fd3dae35a Hide subform in N:M relations 2016-03-11 17:26:04 +01:00
Bart Noordervliet
d7c477b078 Fix extension removal in exportVectorLayer
Taking the [:-4] slice from basename and splitext() try to do the same thing. Usually splitext() was failing silently, but if you're using the iterating function of processing, you can have filenames like <timestamp>.<sequenceno>.shp, which makes it cut off the sequencenumber and makes the OGR import fail.

I've left only the [:-4] slice because we check whether the file ends with .shp above anyway. This is also the way the grass7 file does it.
2016-03-11 16:56:12 +01:00
Matthias Kuhn
29d2d28330 Run more tests in Qt5 setup 2016-03-11 13:21:07 +01:00
Sandro Santilli
73caf352cc Merge pull request #2892 from SebDieBln/Test_CanvasPanByKeyboard
added a test for panning the canvas by keyboard
2016-03-11 11:04:52 +01:00
Hugo Mercier
145f24676f Merge pull request #2895 from rouault/missing_include_path_in_virtual_provider
[virtual provider] Add SQLITE3_INCLUDE_DIR to CMakeLists.txt
2016-03-11 09:54:17 +01:00
Matthias Kuhn
6805ba955b Merge pull request #2896 from m-kuhn/container-qt5
Add Qt5/Python3 builds to travis
2016-03-11 08:26:04 +01:00
Matthias Kuhn
cd96169579 Add Qt5 builds to travis 2016-03-10 20:23:04 +01:00
Matthias Kuhn
8d72e9f44c Convert some asserts to self.asserXXX methods in py tests 2016-03-10 19:52:39 +01:00
Matthias Kuhn
e6198c6929 Fix some warnings on Qt5 builds 2016-03-10 19:52:39 +01:00
Matthias Kuhn
4cc5c2cb4c Add some debug output when GDALRasterIO operations fail
Or the compiler will complain about unhandled returns
2016-03-10 19:52:39 +01:00
Matthias Kuhn
3dc40d72c5 Conditionalize tests which depend on QtWebkit 2016-03-10 18:44:23 +01:00
Matthias Kuhn
264527a495 [PyQt5] make pyuic4-wrapper PyQt5 aware 2016-03-10 18:44:22 +01:00
Matthias Kuhn
aa293704f3 More debug output when dependencies are not found 2016-03-10 18:44:22 +01:00
Matthias Kuhn
ae6fad3dc4 Decapitalize FindSpatiaLite cmake file 2016-03-10 18:44:22 +01:00
Even Rouault
455a473a28 [virtual provider] Add SQLITE3_INCLUDE_DIR to CMakeLists.txt
The virtual provider depends directly on sqlite3.h, but fails to add
explictly its paths, relying on it to be present in the other used
included paths, which may be not always the case in some setups.
2016-03-10 14:47:27 +01:00
Even Rouault
b253a29aa4 Add debug message in case of failure in QgsSLConnect::sqlite3_close()
and in QgsSLConnect::sqlite3_close_v2() too. This can make spotting
issues like the one fixed in b0f2b970ac8918e5cb0ec566ecb491a57054a093
easier.
2016-03-10 12:50:27 +01:00
Even Rouault
b0f2b970ac [BUGFIX] [Spatialite] Finalize statement in addFeatures()
The sqlite3_prepare_v2() call in QgsSpatiaLiteProvider::addFeatures() is
not associated with a matching sqlite3_finalize(). Consequently at
time of sqlite3_close(), the later returns a SQLITE_BUSY error and
fails to close the file descriptor (can be checked by runing 'lsof' on
qgis process).
2016-03-10 12:47:23 +01:00
Matthias Kuhn
e6785ba513 Be more verbose on exceptions in geoalgorithms 2016-03-10 12:14:29 +01:00
Matthias Kuhn
61366583b1 [processing] Fix default argument is SilentProgress for GeoAlgorithm.execute() 2016-03-10 12:14:28 +01:00
Matthias Kuhn
a98fefd2f3 Merge pull request #2889 from m-kuhn/py3improvements
Simplify some python3 handling, refs #13686 (redmine)
2016-03-10 10:39:28 +01:00
Giovanni Manghi
b073111f8a processing: add extent parameter to gdal_warp 2016-03-10 09:14:29 +00:00
Alexander Bruy
9b35a9885a Merge pull request #2890 from NaturalGIS/processing_better_grass7_r_cost
[processing] better GRASS 7 r.cost algorithms
2016-03-10 08:05:29 +02:00
Nyall Dawson
52621b9a55 Followup a112dfe, fix #14451 2016-03-10 14:10:17 +11:00
Nyall Dawson
8b34437192 Partially revert 3ec161 2016-03-10 12:59:58 +11:00
Nyall Dawson
3ec16131bc Indentation 2016-03-10 10:45:19 +11:00
Nyall Dawson
80afbeda93 Use doubles instead of float for min/max layer scales 2016-03-10 10:45:19 +11:00
Nyall Dawson
1563193707 Port more field iterating to Q_FOREACH, avoid some detachments 2016-03-10 10:45:19 +11:00
Nyall Dawson
0e5214cdec Don't crash when iterating empty QgsFields 2016-03-10 10:45:18 +11:00
Nyall Dawson
db69451a7d Add noexcept to astyle rules 2016-03-10 10:45:18 +11:00
Nyall Dawson
8389b7f703 Allow editing newly added diagram expression attributes (fix #14063) 2016-03-10 10:42:33 +11:00
Juergen E. Fischer
e62d8fe790 debian packaging update 2016-03-09 23:42:20 +01:00
Nyall Dawson
bb0ecf427f Fix reshape involving first/last vertex (fix #14443) 2016-03-10 07:53:23 +11:00