Re: [Qgis-developer] Compiling QGIS with GRASS Plugin

2016-02-29 Thread m roy
Radim, thank you so much it worked! Il 29/02/2016 09:21, Radim Blazek ha scritto: > If the lib, provider and plugin are really compiled > (lib/libqgisgrass7.so, lib/qgis/plugins/libgrassprovider7.so, > libgrassrasterprovider7.so, libgrassplugin7.so) try to add path to > GRASS libs dir (containi

Re: [Qgis-developer] Compiling QGIS with GRASS Plugin

2016-02-27 Thread m roy
see what switches you can use. Ciao On 26 February 2016 17:48:05 CET, m roy <mailto:royr...@outlook.com> wrote: Ciao Marco, is it mandatory to use ccmake? because i compiled with "regular" cmake, make, make install ... Il 26/02/2016 17:44, Marco Bernasocchi ha scritto: In ccmake

Re: [Qgis-developer] Compiling QGIS with GRASS Plugin

2016-02-26 Thread m roy
Ciao Marco, is it mandatory to use ccmake? because i compiled with "regular" cmake, make, make install ... Il 26/02/2016 17:44, Marco Bernasocchi ha scritto: In ccmake there with_grass iirc Ciao On 26 February 2016 17:32:37 CET, m roy <mailto:royr...@outlook.com> wrote: Hi,

[Qgis-developer] Compiling QGIS with GRASS Plugin

2016-02-26 Thread m roy
Hi, i'm learning to compile QGIS in Ubuntu 14.04, managed to compile QGIS 2.14 and installed in a custom dir with make install, with: export LD_LIBRARY_PATH QGIS starts (by the way the 2.14 splash screen image is HUGE :)) with some warnings and one error: ERROR 4: `/initrd.img' not recognised

Re: [Qgis-developer] Learning to zoom with PyQGIS

2016-01-27 Thread m roy
Thanks Tom , got it what i find confusing is ## # This below does not work canvas = QgsMapCanvas() canvas.zoomScale(1) ## # This below does work ### canvas = qgis.utils.iface.mapCanvas() canvas.zoomScale(1) so there seems

[Qgis-developer] Learning to zoom with PyQGIS

2016-01-27 Thread m roy
Hi, i'm trying to learn a bit of "pyqgis" and cannot find how to zoom to a certain scale, here what i'm doing so far using QGIS python console: ### # Set some variables to define the layer shapefile_path = r'C:\data\shp\area.shp' legend_layer_name = 'sam

[Qgis-developer] QGIS and GRASS Plugin: How?

2016-01-22 Thread m roy
Hi, I'd like very much to use QGIS with the awesome new GRASS plugin, but lately it seems to be harder and harder (at least for me) to achieve this goal. What i find really very confusing is what release (on windows) or PPA (personal package archive on ubuntu) we are supposed to use to have QGIS

Re: [Qgis-developer] Malfunction in setCrsTransformEnabled(bool): coordinates displayed are wrong

2015-12-07 Thread m roy
Il 07/12/2015 16:29, //./\\-/_.\\ ha scritto: Hi, Thank you for your response. Could you indicate version of QGIS you use ? This error recurs on Win and OSX platforms with QGIS > 2.8.3 Please find enclosed a screen shot of the error. I used win 2.12.1 32bit but i had a layer loaded. It seem

Re: [Qgis-developer] SPIT core plugin - can be we remove it?

2015-12-07 Thread m roy
Il 07/12/2015 13:05, Etienne Trimaille ha scritto: 2015-12-07 12:04 GMT+01:00 m roy mailto:royr...@outlook.com>>: It would be nice to have an option to select the schema for all layers to be imported Set the schema on the first row and then double click on the column name. Nice,

Re: [Qgis-developer] SPIT core plugin - can be we remove it?

2015-12-07 Thread m roy
Il 07/12/2015 09:51, Nyall Dawson ha scritto: > On 7 December 2015 at 19:49, m roy wrote: >> Il 07/12/2015 02:51, Nathan Woodrow ha scritto: >> >> Hi all, >> >> SPIT is now removed from core. If there is anything missing in the current >> stuff that was

Re: [Qgis-developer] SPIT core plugin - can be we remove it?

2015-12-07 Thread m roy
Il 07/12/2015 09:51, Nyall Dawson ha scritto: > On 7 December 2015 at 19:49, m roy wrote: >> Il 07/12/2015 02:51, Nathan Woodrow ha scritto: >> >> Hi all, >> >> SPIT is now removed from core. If there is anything missing in the current >> stuff that was

Re: [Qgis-developer] SPIT core plugin - can be we remove it?

2015-12-07 Thread m roy
Il 07/12/2015 02:51, Nathan Woodrow ha scritto: Hi all, SPIT is now removed from core. If there is anything missing in the current stuff that was in SPIT please open a ticket so it can be address in DB Manager. Shapefile bulk import, is there a way with DBmanager to import say 15 shapefile at

Re: [Qgis-developer] Malfunction in setCrsTransformEnabled(bool): coordinates displayed are wrong

2015-12-04 Thread m roy
Hi, i tried and do not see any problem with coordinates... Il 04/12/2015 10:22, //./\\-/_.\\ ha scritto: Please try: >>> iface.mapCanvas().setCrsTransformEnabled(True) >>> crs = QgsCoordinateReferenceSystem(3857, >>> QgsCoordinateReferenceSystem.EpsgCrsId) >>> iface.mapCanvas().setDestination

Re: [Qgis-developer] What is Processing Provider Plugin Builder option?

2015-12-02 Thread m roy
Il 02/12/2015 09:19, Etienne Trimaille ha scritto: You can add your own plugin into the processing framework. It will add a new entry in the "Advanced interface" of Processing. Unfortunately, I couldn't find any documentation, but you can have a look to this example : https://github.com/qgis/Q

[Qgis-developer] What is Processing Provider Plugin Builder option?

2015-12-01 Thread m roy
Hi, testing the plugin builder i found it offers three option for the creation of a new plugin but i cannot find any information about the "Processing provider" what is it supposed to do and how can i activate a processing provider plugin? any help or link to docs or book that covers this topic?

[Qgis-developer] QGIS pyqt Dockwidget plugin with pushButton

2015-11-30 Thread m roy
Hi, i'm trying to setup a dock widget python plugin, using the plugin builder i managed to setup the plugin and now i need to execute a query: def execute_query: connection_parameres = connpar defineQuery = "SELECT attribute FROM mytable" cursor.execute(defineQuery) ...e

Re: [Qgis-developer] Qgis & Qt Designer

2015-11-29 Thread m roy
I think this should help: http://docs.qgis.org/testing/en/docs/pyqgis_developer_cookbook/plugins.html and also take a look at the "Plugin builder" Qgis plugin Il 29/11/2015 13:51, James89 ha scritto: > Hello Everyone. > I'm a newbie in open source programming, so i hope i'm in the right section.

Re: [Qgis-developer] [GRASS-user] GRASS toolbar in QGIS

2015-11-01 Thread m roy
Il 01/11/2015 15.10, Pedro Venâncio ha scritto: Hi Roy, Hi, testing the new GRASS plugin, i cannot find a way to start a new project from scratch (option maybe removed while cleaning up the toolbar); what I mean: there is no more way to create a new GRASS LOCATION, so that if there is not an

Re: [Qgis-developer] QGIS 2.12 New Geometry Checker Plugin crash

2015-10-30 Thread m roy
Il 29/10/2015 11.08, Sandro Mani ha scritto: > On 29.10.2015 09:24, m roy wrote: >> If with test suite you mean steps to reproduce the crash: >> >> [...] >> >> 100% crash > Thanks for the detailed steps, I've fixed this in my > geom_checker_fixe

Re: [Qgis-developer] QGIS 2.12 New Geometry Checker Plugin crash

2015-10-29 Thread m roy
le (6) on Error resolution settings select "Convert to corresponding multi or single ..." and press OK (7) click "Fix selected errors using default resolution" 100% crash Il 29/10/2015 08.57, Paolo Cavallini ha scritto: > Il 29/10/2015 08:54, m roy ha scritto: >>

[Qgis-developer] QGIS 2.12 New Geometry Checker Plugin crash

2015-10-29 Thread m roy
Hi, QGIS 2.12: testing the new features of the new geometry checker plugin (very nice indeed) i got QGIS to crash trying to fix a multipolygon shapefile layer, in windows; if you can confirm this issue I can open a bug report best regards. ___ Qgis-de

Re: [Qgis-developer] About digitizing with GRASS Plugin

2015-10-19 Thread m roy
Thanks Radim now it's more clear. Il 19/10/2015 17.46, Radim Blazek ha scritto: > On Mon, Oct 19, 2015 at 3:05 PM, m roy wrote: >> Il 19/10/2015 12.41, Radim Blazek ha scritto: >>> It is not possible to add in QGIS a layer without a type. So when a >>> new empty

Re: [Qgis-developer] About digitizing with GRASS Plugin

2015-10-19 Thread m roy
Il 19/10/2015 12.41, Radim Blazek ha scritto: > It is not possible to add in QGIS a layer without a type. So when a > new empty layer is created, a type must be chosen. The type selected > by user is only used for the layer added to canvas/legend, the created > vector map is empty. Ok, I see

[Qgis-developer] GRASS Plugin Split features results in corrupted topology

2015-10-17 Thread m roy
Found this issue testing GRASS plugin in edit mode: Draw a closed boundary in a GRASS vector layer add a centroid inside the boundary now I need to add a node on the boundary (cannot find how to do that is there a way to add a node on a boundary?) split features seems to do the trick but the

[Qgis-developer] About digitizing with GRASS Plugin

2015-10-17 Thread m roy
I ran some test with GRASS Plugin in particular digitizing some vetor layers. Given that is quite nice how well it's already integrated with QGIS edit tools, I found some minor issue, this may be by design but i'm saharig my thoughts *(IMHO)*, hoping i'll find some time for further testing. (1) *C

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-16 Thread m roy
Il 15/10/2015 13.25, Radim Blazek ha scritto: > On Thu, Oct 15, 2015 at 10:49 AM, m roy wrote: > >> After some quick vector digitizing tests: awesome tool >> for QGIS !! >> >> the only (minor) issue i found is that area boundary color does not >> matc

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-15 Thread m roy
Il 14/10/2015 19.01, Radim Blazek ha scritto: > On Thu, Oct 8, 2015 at 1:07 PM, m roy wrote: >> Vector digitizing: QGIS crash when deleting a line and the layer >> is not longer loadable in QGIS because of broken topology, > Fixed, it was the different off_t size in GRASS a

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-15 Thread m roy
Il 14/10/2015 19.01, Radim Blazek ha scritto: > On Thu, Oct 8, 2015 at 1:07 PM, m roy wrote: >> Vector digitizing: QGIS crash when deleting a line and the layer >> is not longer loadable in QGIS because of broken topology, > Fixed, it was the different off_t size in GRASS a

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-14 Thread m roy
Il 14/10/2015 19.01, Radim Blazek ha scritto: > On Thu, Oct 8, 2015 at 1:07 PM, m roy wrote: >> Vector digitizing: QGIS crash when deleting a line and the layer >> is not longer loadable in QGIS because of broken topology, > Fixed, it was the different off_t size in GRASS a

Re: [Qgis-developer] Release schedule discussion - again

2015-10-14 Thread m roy
Il 14/10/2015 08.20, Paolo Cavallini ha scritto: > Sure. Another option, if we feel there are no compelling reasons to > have another LTR (I believe 2.11 have few additional function people > can't really miss, and 2.8 seems generally quite well accepted), to > skip next LTR and go straight aw

Re: [Qgis-developer] Composer Legend items: what are the differences between "auto-update" and "update all" options?

2015-10-14 Thread m roy
> Isn't there another way to provide same capabilities without two buttons? > If i understood what bother you is the fact that there are two options (check box and button) to do quite the same thing, to me it's ok because i see they have different behaviour (one is fully automatic). If this both

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-12 Thread m roy
Il 12/10/2015 20.51, Pedro Venâncio ha scritto: 2015-10-12 19:15 GMT+01:00 Pedro Venâncio mailto:pedrongvenan...@gmail.com>>: Maybe this was already fixed: https://github.com/qgis/QGIS/commit/de8b045b2647b6ceb9ca2f34e729c549419d101a I will compile again and check. I confirm, this is alrea

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-12 Thread m roy
Il 12/10/2015 19.32, Radim Blazek ha scritto: > On Mon, Oct 12, 2015 at 6:33 PM, m roy wrote: >>>> another issue I discovered while testing QGIS digitizer with GRASS vectors >>>> is that there is no difference between node and vertex, in GRASS they have >>>

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-12 Thread m roy
Il 12/10/2015 17.12, Radim Blazek ha scritto: > I think that the QGIS "Add Area" should be renamed to "Add closed boundary" > (or something like that) because GRASS has the "Add Area" tool that in fact > allow you to add boundary and centroid in one go; > OK, if I don't manage to add centroid plac

Re: [Qgis-developer] Composer Legend items: what are the differences between "auto-update" and "update all" options?

2015-10-12 Thread m roy
purpose of "update item" Il 12/10/2015 18.02, DelazJ ha scritto: For the recall : http://docs.qgis.org/2.0/en/docs/user_manual/print_composer/print_composer.html#legend-items 2015-10-12 17:51 GMT+02:00 m roy mailto:royr...@outlook.com>>: > In previous releases (till 2.4 I thi

Re: [Qgis-developer] Composer Legend items: what are the differences between "auto-update" and "update all" options?

2015-10-12 Thread m roy
> In previous releases (till 2.4 I think), there was another option > "Update item" that keeps user customization and can explain why there > was an "Update all" option that resets all modifications. Now, both > options do reset. > Well this is another issue, but i don't remember what was Upda

Re: [Qgis-developer] Composer Legend items: what are the differences between "auto-update" and "update all" options?

2015-10-12 Thread m roy
Il 12/10/2015 16.14, DelazJ ha scritto: Hitting "update all" behaves like checking "auto-update". Have I missed something ? Is it worth keeping both ? Yes, one is automatic (e.g. for servers), the other update is triggered (or not) by user choice.

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-12 Thread m roy
Il 12/10/2015 10.06, Radim Blazek ha scritto: > The user must have some minimum knowledge about GRASS topological > model. Note that 'Add Area' makes only sense for isolated areas, > common boundaries of adjacent areas must be digitized by 'Add > Boundary' because the boundary is shared by areas on

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-12 Thread m roy
Il 12/10/2015 10.06, Radim Blazek ha scritto: > The user must have some minimum knowledge about GRASS topological > model. Note that 'Add Area' makes only sense for isolated areas, > common boundaries of adjacent areas must be digitized by 'Add > Boundary' because the boundary is shared by areas on

Re: [Qgis-developer] Default fill/outline color for svg symbols

2015-10-10 Thread m roy
Il 10/10/2015 13.36, Mathieu Pellerin ha scritto: Argh, forgot one other related question: At the moment, changing the symbol resets the full and outline color to match the default fill/outline set in the SVG symbol. I'd like to change this behaviour so that whatever user-set fill/outline colo

Re: [Qgis-developer] Looking for sample shapefiles with m values

2015-10-09 Thread m roy
What do you mean with "m" values? Il 09/10/2015 12.12, Nyall Dawson ha scritto: > Hi all, > > I'm looking for some sample shapefiles which contain m values - my > googling hasn't been able to turn up any freely downloadable ones. > > Anyone able to share some with me for testing? > > Cheers, > Nya

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-09 Thread m roy
Il 08/10/2015 18.23, Radim Blazek ha scritto: > I have to debug on Windows. Does it happen with all data types (int, > float, double)? > > I have two raster type: FCELL (float) : the raster loads but visualization is weird and the raster is stretched and broken in two CELL (int): the raster do

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-08 Thread m roy
Il 08/10/2015 18.23, Radim Blazek ha scritto: > IMHO: i find it's confusing, and GRASS 7 default database is SQLite, > i think it could be smoother to expose only GRASS Locations and Mapset > being evident that we're dealing with a GRASS Database, but i can live > with that :-) > You are not the

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-08 Thread m roy
Testing on windows >> GRASS LOCATION is "duplicated" displayed as a regular file system folder >> and as GRASS LOCATION with the GRASS icon > That is correct, the regular directory is left there so that is it > possible to go for example to dbf directory and load dbf files as > standard QGIS layers

Re: [Qgis-developer] New GRASS plugin: a test drive

2015-10-08 Thread m roy
Testing GRASS Plugin with QGIS 2.11.0 Master 3dcabfb: with Browser Panel I can navigate to GRASS 7 db folder, GRASS LOCATION is "duplicated" displayed as a regular file system folder and as GRASS LOCATION with the GRASS icon I can load vector layers, GRASS raster layers visualization in QGIS is n