Re: [Qgis-user] PostGIS- erroneous query : Unable to get list of tables from DB

2019-11-20 Thread Borys Jurgiel
Dnia środa, 20 listopada 2019 14:17:17 CET Borys Jurgiel pisze:
> Usually, reinstalling gives nothing. Please wait until next week for 3.10.1
> - it contains the fix for the topology extension at least. 

Ah sorry, a small correction: Now I see it's only fixed in master so far. A 
backport to 3.10 is still waiting for review, so no guarantee it will land in 
3.10.1 this Friday:

https://github.com/qgis/QGIS/pull/32887




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] PostGIS- erroneous query : Unable to get list of tables from DB

2019-11-20 Thread Borys Jurgiel
> Thanks Boris and Jason for your messages. I tried your suggestion but it
> still doesn't work (new error message 'permission denied for relation
> pointcloud_columns').

So apparently you successfully fixed permissions to the topology tables and 
then you hit a similar problem related to the pointcloud_columns table/view, 
coming from another extension: pointcloud. Just try to grant select on it 
(alternatively, you can just remove the extension if you don't use it).

The first problem is already fixed in master, for the new one I just opened a 
ticket: https://github.com/qgis/QGIS/issues/32972

> However, I think that you miss the point somehow:
> 1) I can retrieve the tables if I use my qgis 3.4 version, but I cannot
> if I use my 3.10 version (manage layers toolbar or browser). 

Yes, because it's a regression in 3.10.

> I have
> reinstalled the 3.10 - no changes. I have reinstalled postgis - no changes.

Usually, reinstalling gives nothing. Please wait until next week for 3.10.1 - 
it contains the fix for the topology extension at least. For the pointcloud, I 
can't guarantee Sandro or someone else will be able to fix it before the 
release (it's only one day left), so just follow the ticket I mentioned above 
(you can consider sending a bottle of whisky to New Zealand to encourage 
Sandro to fix it ;-)

> 2) I can access my tables if I use the DB manager within 3.10.

Yes, because it uses another connection.

> 2) It happened after I created a new profile in 3.10. I never had used a
> profile <> than the default one before.

It shouldn't have anything to do (btw. multiple profiles are really useful, 
don't be discouraged!)

Regards,
Borys


> 
> Kind regards
> Laurence
> 
> On 20/11/2019 5:16 AM, Borys Jurgiel wrote:
> > It's fixed now in master, so the upcoming 3.10.1 (to be released in a few
> > days) should be free from that bug.
> > 
> > For now, as GRANT USAGE ON SCHEMA is not enough, try also grant
> > permissions to two tables used in that failing query:
> > 
> > GRANT SELECT ON TABLE topology.topology
> > GRANT SELECT ON TABLE topology.layer
> > 
> > Regards,
> > Borys
> > 
> > Dnia wtorek, 19 listopada 2019 15:18:17 CET Jason Carlson pisze:
> >> The error message would still suggest it is an access problem to the
> >> topology table. Perhaps you need to take it a step further with your
> >> postgres version and grant select to the user.
> >> 
> >> Not at my computer now but try something along the lines of:
> >> 
> >> GRANT SELECT ON topology TO username;
> >> 
> >> 
> >> 
> >> On Mon., Nov. 18, 2019, 5:10 p.m. Laurence Béchet, <
> >> 
> >> bechet.laure...@gmail.com> wrote:
> >>> Thank you Jason for your answer.
> >>> I've granted usage on schema topology to my user -> same problem. I even
> >>> granted PUBLIC.
> >>> 
> >>> There is something 'wrong' with the passed request itself as it fails in
> >>> pgadmin as well (see it below).
> >>> 
> >>> I have a very basic test.qgz file. I launch it with 3.4.13 (I've updated
> >>> all my qgis versions), open the browser, connect to my db and see the
> >>> tables. Same file, launched with 3.10.0, open browser, connect to my db
> >>> (same profile so I guess same qgis-auth.db file I suppose) and get the
> >>> 'failed to get layers' as described in the bug. I can see the sql
> >>> request
> >>> which failed and that one doesn't work either in pg_admin. Unfortunately
> >>> the sql request passed with 3.4.13 is not displayed.
> >>> 
> >>> SELECT
> >>> l.f_table_name,l.f_table_schema,l.f_geometry_column,upper(l.type),l.srid
> >>> ,l
> >>> .coord_dimension,c.relkind,obj_description(c.oid),array_agg(a.attname),
> >>> count(CASE WHEN t.typname IN
> >>> ('geometry','geography','topogeometry','raster') THEN 1 ELSE NULL END) ,
> >>> 1
> >>> FROM geometry_columns l,pg_class c,pg_namespace n,pg_attribute a,pg_type
> >>> t
> >>> WHERE c.relname=l.f_table_name AND l.f_table_schema=n.nspname AND NOT
> >>> a.attisdropped AND a.attrelid=c.oid AND a.atttypid=t.oid AND a.attnum>0
> >>> AND
> >>> n.oid=c.relnamespace AND has_schema_privilege(n.nspname,'usage') AND
> >>> has_table_privilege('"'||n.nspname||'"."'||c.relname||'"','select')
> >>> GROUP
> >>> BY 1,2,3,4,5,6,7,c.oid,11 UNION SELECT
> >>> l.f_table_name,l.f_table_schema,l.f_geography_column,upper(l.type),l.sri
> >>> d,
> >

Re: [Qgis-user] PostGIS- erroneous query : Unable to get list of tables from DB

2019-11-19 Thread Borys Jurgiel
It's fixed now in master, so the upcoming 3.10.1 (to be released in a few 
days) should be free from that bug.

For now, as GRANT USAGE ON SCHEMA is not enough, try also grant permissions to 
two tables used in that failing query:

GRANT SELECT ON TABLE topology.topology
GRANT SELECT ON TABLE topology.layer

Regards,
Borys


Dnia wtorek, 19 listopada 2019 15:18:17 CET Jason Carlson pisze:
> The error message would still suggest it is an access problem to the
> topology table. Perhaps you need to take it a step further with your
> postgres version and grant select to the user.
> 
> Not at my computer now but try something along the lines of:
> 
> GRANT SELECT ON topology TO username;
> 
> 
> 
> On Mon., Nov. 18, 2019, 5:10 p.m. Laurence Béchet, <
> 
> bechet.laure...@gmail.com> wrote:
> > Thank you Jason for your answer.
> > I've granted usage on schema topology to my user -> same problem. I even
> > granted PUBLIC.
> > 
> > There is something 'wrong' with the passed request itself as it fails in
> > pgadmin as well (see it below).
> > 
> > I have a very basic test.qgz file. I launch it with 3.4.13 (I've updated
> > all my qgis versions), open the browser, connect to my db and see the
> > tables. Same file, launched with 3.10.0, open browser, connect to my db
> > (same profile so I guess same qgis-auth.db file I suppose) and get the
> > 'failed to get layers' as described in the bug. I can see the sql request
> > which failed and that one doesn't work either in pg_admin. Unfortunately
> > the sql request passed with 3.4.13 is not displayed.
> > 
> > SELECT
> > l.f_table_name,l.f_table_schema,l.f_geometry_column,upper(l.type),l.srid,l
> > .coord_dimension,c.relkind,obj_description(c.oid),array_agg(a.attname),
> > count(CASE WHEN t.typname IN
> > ('geometry','geography','topogeometry','raster') THEN 1 ELSE NULL END) , 1
> > FROM geometry_columns l,pg_class c,pg_namespace n,pg_attribute a,pg_type t
> > WHERE c.relname=l.f_table_name AND l.f_table_schema=n.nspname AND NOT
> > a.attisdropped AND a.attrelid=c.oid AND a.atttypid=t.oid AND a.attnum>0
> > AND
> > n.oid=c.relnamespace AND has_schema_privilege(n.nspname,'usage') AND
> > has_table_privilege('"'||n.nspname||'"."'||c.relname||'"','select') GROUP
> > BY 1,2,3,4,5,6,7,c.oid,11 UNION SELECT
> > l.f_table_name,l.f_table_schema,l.f_geography_column,upper(l.type),l.srid,
> > 2,c.relkind,obj_description(c.oid),array_agg(a.attname), count(CASE WHEN
> > t.typname IN
> > ('geometry','geography','topogeometry','raster') THEN 1 ELSE NULL END) , 1
> > FROM geography_columns l,pg_class c,pg_namespace n,pg_attribute a,pg_type
> > t
> > WHERE c.relname=l.f_table_name AND l.f_table_schema=n.nspname AND NOT
> > a.attisdropped AND a.attrelid=c.oid AND a.atttypid=t.oid AND a.attnum>0
> > AND
> > n.oid=c.relnamespace AND has_schema_privilege(n.nspname,'usage') AND
> > has_table_privilege('"'||n.nspname||'"."'||c.relname||'"','select') GROUP
> > BY 1,2,3,4,5,6,7,c.oid,11 UNION SELECT
> > l.table_name,l.schema_name,l.feature_column,CASE WHEN l.feature_type = 1
> > THEN 'MULTIPOINT' WHEN l.feature_type = 2 THEN 'MULTILINESTRING' WHEN
> > l.feature_type = 3 THEN 'MULTIPOLYGON' WHEN l.feature_type = 4 THEN
> > 'GEOMETRYCOLLECTION' END AS type,(SELECT srid FROM topology.topology t
> > WHERE
> > l.topology_id=t.id),2,c.relkind,obj_description(c.oid),array_agg(a.attnam
> > e), count(CASE WHEN t.typname IN
> > ('geometry','geography','topogeometry','raster') THEN 1 ELSE NULL END) , 1
> > FROM topology.layer l,pg_class c,pg_namespace n,pg_attribute a,pg_type t
> > WHERE c.relname=l.table_name AND l.schema_name=n.nspname AND NOT
> > a.attisdropped AND a.attrelid=c.oid AND a.atttypid=t.oid AND a.attnum>0
> > AND
> > n.oid=c.relnamespace AND has_schema_privilege(n.nspname,'usage') AND
> > has_table_privilege('"'||n.nspname||'"."'||c.relname||'"','select') GROUP
> > BY 1,2,3,4,5,6,7,c.oid,11 UNION SELECT
> > l."table",l."schema",l."column",'POLYGON',l.srid,2,c.relkind,obj_descripti
> > on(c.oid),array_agg(a.attname), count(CASE WHEN t.typname IN
> > ('geometry','geography','topogeometry','raster') THEN 1 ELSE NULL END) , 1
> > FROM pointcloud_columns l,pg_class c,pg_namespace n,pg_attribute a,pg_type
> > t WHERE c.relname=l."table" AND l."schema"=n.nspname AND NOT
> > a.attisdropped
> > AND a.attrelid=c.oid AND a.atttypid=t.oid AND a.attnum>0 AND
> > n.oid=c.relnamespace AND has_schema_privilege(n.nspname,'usage') AND
> > has_table_privilege('"'||n.nspname||'"."'||c.relname||'"','select') GROUP
> > BY 1,2,3,4,5,6,7,c.oid,11 UNION SELECT
> > l."r_table_name",l."r_table_schema",l."r_raster_column",'RASTER',l.srid,2,
> > c.relkind,obj_description(c.oid),array_agg(a.attname), count(CASE WHEN
> > t.typname IN
> > ('geometry','geography','topogeometry','raster') THEN 1 ELSE NULL END) , 1
> > FROM raster_columns l,pg_class c,pg_namespace n,pg_attribute a,pg_type t
> > WHERE c.relname=l."r_table_name" AND l."r_table_schema"=n.nspname AND NOT
> > a.attisdropped AND a.attrelid=c.oid AND 

Re: [Qgis-user] QGIS v3.8.3 Map Views

2019-10-08 Thread Borys Jurgiel
Hi,

You don't need to open multiple map views. Once you created map themes, just 
assign one of them to each map in its 'Item properties' panel in the layout 
composer (look for 'Follow map theme' checkbox).

Regards,
Borys


Dnia poniedziałek, 7 października 2019 23:27:38 CEST upl...@mcsnet.ca pisze:
> Hello,
> 
> 
> 
> I'm new to QGIS and was working with ArcGIS pro before.  I'm switching to
> QGIS since its much more user friendly and I like the versatility of use.
> 
> 
> 
> I'm trying to work with multiple map views and putting them into a layout.
> When I generate a new map view from the view menu and rename it, set a theme
> for the layer visibility and data to be shown.
> 
> Then I do into my layout and that map view does not show up when I go to the
> "add new map".  I can add a new map but it only shows up identical to the
> main view and as I add maps to the layout they are
> 
> Named Map 1,  Map 2, etc..  My custom map view I created with its unique
> name is not there in the dropdown menu.
> 
> 
> 
> Question is how do I get my custom map views that I created with custom
> theme to show up in the layout function and add it to my layout?
> 
> 
> 
> Thanks very much for any input you may have.
> 
> 
> 
> 
> 
> Upland Environmental Ltd
> 
> Normand Menard R.P.F.T  C.Tech (Eng)
> 
> Box 750, Plamondon, Ab  T0A 2T0
> 
> Ph: 780-798-2200,  Cell: 780-404-3855
> 
> Email:   upl...@mcsnet.ca
> 
>   www.uplandenvironmental.ca




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS 3.4.12 python error on open plugins list manager

2019-09-27 Thread Borys Jurgiel
Btw. could you please confirm I'm right and you have Qt < 5.6?

Borys

Dnia piątek, 27 września 2019 13:32:09 CEST Walter Lorenzetti pisze:
> After uninstall purge of qgis and qgis.-server and reinstall I obtain
> same error :(
> 
> I'm on Ubuntu 16.04,could be realted to it?
> 
> W
> 
> Il 27/09/19 12:56, Walter Lorenzetti ha scritto:
> > I try to clear QGIS3.ini file form custom settings and clear python
> > profile folder, but Now I otain this:
> > 
> > Si è verificato un errore durante l'esecuzione delle istruzioni
> > seguenti: pyplugin_installer.instance().showPluginManagerWhenReady()
> > 
> > Traceback (most recent call last):   File "", line 1, in   File
> > "/usr/share/qgis/python/pyplugin_installer/installer.py", line 252, in
> > showPluginManagerWhenReady
> > self.fetchAvailablePlugins(reloadMode=False)   File
> > "/usr/share/qgis/python/pyplugin_installer/installer.py", line 120, in
> > fetchAvailablePlugins repositories.requestFetching(key)   File
> > "/usr/share/qgis/python/pyplugin_installer/installer_data.py", line
> > 325, in requestFetching
> > self.mRepositories[key]["QRequest"].setAttribute(QNetworkRequest.FollowRed
> > irectsAttribute, True) AttributeError: type object 'QNetworkRequest' has
> > no attribute 'FollowRedirectsAttribute'
> > 
> > Versione Python: 3.5.2 (default, Jul 10 2019, 11:58:48) [GCC 5.4.0
> > 20160609]
> > 
> > I tried to create a new profile but same error.
> > 
> > I'll try to reinstall qgis
> > 
> > W
> > 
> > Il 27/09/19 11:02, Borys Jurgiel ha scritto:
> >> The debug output doesn't want to help, indeed...
> >> 
> >> Could you try to start a new fresh user profile? It would eliminate two
> >> possible causes: all the user settings (especially the QGIS3.ini file)
> >> and all user-installed Python stuff from
> >> ~/.local/share/QGIS/QGIS3/profiles/default/python
> >> 
> >> Borys
> >> 
> >> Dnia piątek, 27 września 2019 09:10:42 CEST Walter Lorenzetti pisze:
> >>> Hi Borys,
> >>> 
> >>> it's strange because Python Console working normally, also current
> >>> plugins installed.
> >>> 
> >>> I haven't many installed plugins, only DBManager and Quickmpaservices..
> >>> 
> >>> Running QGIS by shell, on bootstrap I obtain this:
> >>> 
> >>> Warning: void DBusMenuExporterPrivate::addAction(QAction*, int): Already
> >>> tracking action "Search QMS" under id 288
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >>> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >>> QStringList&) const: Condition failed: action
> >

Re: [Qgis-user] QGIS 3.4.12 python error on open plugins list manager

2019-09-27 Thread Borys Jurgiel
Hi,

The bad news is you just discovered a regression in QGIS 3.4.11 - it's now 
unexpectedly dependent on Qt 5.6 (what is probably not available in your 
Ubuntu).

The good news is there is a quick workaround. You can either rollback to 
3.4.10 or edit your 3.4.11 to disable that improvement (probably insignificant 
for you, as it only concerns private repositories with redirections) and bring 
back compatibility with Qt < 5.6. Just edit the file:

/usr/share/qgis/python/pyplugin_installer/installer_data.py

and comment out line 325:

#self.mRepositories[key]
["QRequest"].setAttribute(QNetworkRequest.FollowRedirectsAttribute, True)

It should help now :)

Regards,
Borys


Dnia piątek, 27 września 2019 12:56:18 CEST Walter Lorenzetti pisze:
> I try to clear QGIS3.ini file form custom settings and clear python
> profile folder, but Now I otain this:
> 
> Si è verificato un errore durante l'esecuzione delle istruzioni
> seguenti: pyplugin_installer.instance().showPluginManagerWhenReady()
> 
> Traceback (most recent call last):   File "", line 1, in   File
> "/usr/share/qgis/python/pyplugin_installer/installer.py", line 252, in
> showPluginManagerWhenReady
> self.fetchAvailablePlugins(reloadMode=False)   File
> "/usr/share/qgis/python/pyplugin_installer/installer.py", line 120, in
> fetchAvailablePlugins repositories.requestFetching(key)   File
> "/usr/share/qgis/python/pyplugin_installer/installer_data.py", line 325,
> in requestFetching
> self.mRepositories[key]["QRequest"].setAttribute(QNetworkRequest.FollowRedir
> ectsAttribute, True) AttributeError: type object 'QNetworkRequest' has no
> attribute 'FollowRedirectsAttribute'
> 
> Versione Python: 3.5.2 (default, Jul 10 2019, 11:58:48) [GCC 5.4.0 20160609]
> 
> I tried to create a new profile but same error.
> 
> I'll try to reinstall qgis
> 
> W
> 
> Il 27/09/19 11:02, Borys Jurgiel ha scritto:
> > The debug output doesn't want to help, indeed...
> > 
> > Could you try to start a new fresh user profile? It would eliminate two
> > possible causes: all the user settings (especially the QGIS3.ini file) and
> > all user-installed Python stuff from
> > ~/.local/share/QGIS/QGIS3/profiles/default/python
> > 
> > Borys
> > 
> > Dnia piątek, 27 września 2019 09:10:42 CEST Walter Lorenzetti pisze:
> >> Hi Borys,
> >> 
> >> it's strange because Python Console working normally, also current
> >> plugins installed.
> >> 
> >> I haven't many installed plugins, only DBManager and Quickmpaservices..
> >> 
> >> Running QGIS by shell, on bootstrap I obtain this:
> >> 
> >> Warning: void DBusMenuExporterPrivate::addAction(QAction*, int): Already
> >> tracking action "Search QMS" under id 288
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >> QStringList&) const: Condition failed: action
> >> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> >&g

Re: [Qgis-user] QGIS 3.4.12 python error on open plugins list manager

2019-09-27 Thread Borys Jurgiel
The debug output doesn't want to help, indeed...

Could you try to start a new fresh user profile? It would eliminate two 
possible causes: all the user settings (especially the QGIS3.ini file) and all 
user-installed Python stuff from
~/.local/share/QGIS/QGIS3/profiles/default/python

Borys


Dnia piątek, 27 września 2019 09:10:42 CEST Walter Lorenzetti pisze:
> Hi Borys,
> 
> it's strange because Python Console working normally, also current
> plugins installed.
> 
> I haven't many installed plugins, only DBManager and Quickmpaservices..
> 
> Running QGIS by shell, on bootstrap I obtain this:
> 
> Warning: void DBusMenuExporterPrivate::addAction(QAction*, int): Already
> tracking action "Search QMS" under id 288
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> Warning: QVariantMap DBusMenuExporterDBus::getProperties(int, const
> QStringList&) const: Condition failed: action
> 
> and on opening plugins manager window this:
> 
> "Si è verificato un errore durante l'esecuzione
> delle istruzioni
> seguenti:pyplugin_installer.instance().showPluginManagerWhenReady()<
> /tt>traceback.print_exception() failedVersione
> Python:Versione di
> QGIS:3.4.12-Madeira 'Madeira', 625767347aPercorso Python:"
> 
> W
> 
> Il 26/09/19 19:59, Borys Jurgiel ha scritto:
> > Not really, except something wrong happens in Python.
> > 
> > The plugin manager window is C++ itself, however, when you click to open
> > it, it calls that Python function from your first error message to fetch
> > Python plugins from the repository. When the plugin list is ready, Python
> > calls back the C++ API to open the window.
> > 
> > Apparently something bad happens in Python when it tries to fetch new
> > plugins. Are Python plugins generally work for you (hopefully you had
> > some enabled, at least Processing or DB Manager)? Does the
> > Plugins->Python console seem to work? Another idea is maybe running QGIS
> > from the command line would give some debug messages.
> > 
> > Borys
> > 
> > Dnia czwartek, 26 września 2019 15:46:12 CEST Walter Lorenzetti pisze:
> >> Hi list,
> >> 
> >> I'm on QGIS 3.4.12 on Ubuntu desktop, today on opening the list plugins
> >> window manager, I obtain the seguent error:
> >> 
> >> pyplugin_installer.instance().showPluginManagerWhenReady()
> >> 
> >> traceback.print_exception() failed
> >> 
> >> Any idea about it?
> >> 
> >> Thanks in adavance.
> >> 
> >> W
> > 
> > ___
> > Qgis-user mailing list
> > Qgis-user@lists.osgeo.org
> > List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> > Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS 3.4.12 python error on open plugins list manager

2019-09-26 Thread Borys Jurgiel
Not really, except something wrong happens in Python. 

The plugin manager window is C++ itself, however, when you click to open it, 
it calls that Python function from your first error message to fetch Python 
plugins from the repository. When the plugin list is ready, Python calls back 
the C++ API to open the window.

Apparently something bad happens in Python when it tries to fetch new plugins. 
Are Python plugins generally work for you (hopefully you had some enabled, at 
least Processing or DB Manager)? Does the Plugins->Python console seem to 
work? Another idea is maybe running QGIS from the command line would give some 
debug messages.

Borys


Dnia czwartek, 26 września 2019 15:46:12 CEST Walter Lorenzetti pisze:
> Hi list,
> 
> I'm on QGIS 3.4.12 on Ubuntu desktop, today on opening the list plugins
> window manager, I obtain the seguent error:
> 
> pyplugin_installer.instance().showPluginManagerWhenReady()
> 
> traceback.print_exception() failed
> 
> Any idea about it?
> 
> Thanks in adavance.
> 
> W




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] unlocking toggle editing

2019-04-25 Thread Borys Jurgiel
You can also open CSV files with x, y columns through the VRT OGR's driver.
See https://www.gdal.org/drv_csv.html

Regards,
Borys

Dnia środa, 24 kwietnia 2019 18:07:20 CEST Etienne Trimaille pisze:
> It depends how you store geometries inside the CSV I guess. Geometries as
> WKT in CSV are displayed and can be edited.
> 
> 
> Le mer. 24 avr. 2019 à 10:27, Raymond Nijssen  a
> 
> écrit :
> > Ah, tnx. But then I get a table only, not a layer with geometries. Or do
> > I miss something else?
> > 
> > On 24-04-19 10:23, Etienne Trimaille wrote:
> > > Sorry, I open the CSV from the browser. Not using the "text delimiter",
> > > then you can edit/add features to the CSV.
> > > 
> > > Le mer. 24 avr. 2019 à 10:17, Richard Duivenvoorde  > > 
> > > > a écrit :
> > > On 2019-04-24 10:03, Etienne Trimaille wrote:
> > >  > Le mer. 24 avr. 2019 à 09:49, Raymond Nijssen
> > > 
> > > mailto:r.nijs...@terglobo.nl>>
> > > 
> > >  > a écrit :
> > >  >> Cause QGIS cannot edit a csv attribute table.
> > >  > 
> > >  > FYI, you can edit a CSV attribute table ;-)
> > > 
> > > Are you sure?
> > > If I open attached mini csv, I can load it in QGIS, but cannot edit
> > > anything (not the attributes of current records), the little pencil
> > 
> > to
> > 
> > > edit cannot be activated with me (current master here).
> > > Am I missing some info?
> > > 
> > > Regards,
> > > 
> > > Richard Duivenvoorde
> > 
> > ___
> > Qgis-user mailing list
> > Qgis-user@lists.osgeo.org
> > List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> > Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] unlocking toggle editing

2019-04-25 Thread Borys Jurgiel
You can also open CSV files 
Dnia środa, 24 kwietnia 2019 18:07:20 CEST Etienne Trimaille pisze:
> It depends how you store geometries inside the CSV I guess. Geometries as
> WKT in CSV are displayed and can be edited.
> 
> 
> Le mer. 24 avr. 2019 à 10:27, Raymond Nijssen  a
> 
> écrit :
> > Ah, tnx. But then I get a table only, not a layer with geometries. Or do
> > I miss something else?
> > 
> > On 24-04-19 10:23, Etienne Trimaille wrote:
> > > Sorry, I open the CSV from the browser. Not using the "text delimiter",
> > > then you can edit/add features to the CSV.
> > > 
> > > Le mer. 24 avr. 2019 à 10:17, Richard Duivenvoorde  > > 
> > > > a écrit :
> > > On 2019-04-24 10:03, Etienne Trimaille wrote:
> > >  > Le mer. 24 avr. 2019 à 09:49, Raymond Nijssen
> > > 
> > > mailto:r.nijs...@terglobo.nl>>
> > > 
> > >  > a écrit :
> > >  >> Cause QGIS cannot edit a csv attribute table.
> > >  > 
> > >  > FYI, you can edit a CSV attribute table ;-)
> > > 
> > > Are you sure?
> > > If I open attached mini csv, I can load it in QGIS, but cannot edit
> > > anything (not the attributes of current records), the little pencil
> > 
> > to
> > 
> > > edit cannot be activated with me (current master here).
> > > Am I missing some info?
> > > 
> > > Regards,
> > > 
> > > Richard Duivenvoorde
> > 
> > ___
> > Qgis-user mailing list
> > Qgis-user@lists.osgeo.org
> > List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> > Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Featured plugins: nominations

2019-01-24 Thread Borys Jurgiel
Good point!
Borys

Dnia czwartek, 24 stycznia 2019 10:15:29 CET Paolo Cavallini pisze:
> Hi Borys,
> 
> On 24/01/19 08:51, Borys Jurgiel wrote:
> > Exactly, it's the only reason. I'm 50:50 if it's a good idea or not -
> > there
> > are probably non-experimental plugins with smaller user base.
> 
> agreed, it's a bit of a hack. The clean solution is IMHO a category
> "Tools for developers", but until we have it I think leaving it as
> experimental will cause no harm.
> Cheers.




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Featured plugins: nominations

2019-01-24 Thread Borys Jurgiel
> > On Wed, 23 Jan 2019 at 22:54, DelazJ  wrote:
> > - Plugin Reloader: A must-have for anyone that is trying to create his own
> > plugin, great complement for the Plugin Builder. I don't understand why
> > it's still tagged "experimental".

> On Wed, 23 Jan 2019 at 23:27:59 CET Nyall Dawson wrote:
> Yes! If I recall correctly, it's tagged as experimental only because
> it's directed to a small subset of users (those who write plugins),
> and it was a way to "hide" it from the main plugin list for "normal"
> users.

Exactly, it's the only reason. I'm 50:50 if it's a good idea or not - there 
are probably non-experimental plugins with smaller user base.

Regards,
Borys


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Geopagkage and "geom" in DBmanager

2018-09-13 Thread Borys Jurgiel
Exactly, virtual layers use SpatiaLite. See:

https://docs.qgis.org/testing/en/docs/user_manual/managing_data_source/create_layers.html#creating-virtual-layers
 

Dnia czwartek, 13 września 2018 11:45:01 CEST Bo Victor Thomsen pisze:
> Actually I have a reasonable explanation: The 2 different dataproviders
> uses different internal functions to calculate the area. However the
> function used by the GeoPackage Dataprovider doesn't work !



___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] How to Prevent GeoPackage file from updating modified date when viewed in a Qgis project when it is not being edited

2018-04-19 Thread Borys Jurgiel
> Hi Borys,
> 
> Are you sure that this is also a problem with 2.x?
> 
> If I remember correctly 2.x browser panel does not open gpkg for scanning
> contents, this feature was added for 3.x.

Ok, the problem with 2.18 is a bit different. It is limited to concurrent use 
of two QGIS 
instances, and only occurs for some gpkgs:

1. Run QGIS 2.18, go to the Browser and expand a directory containing a gpkg.
2. Run another QGIS instance and load any layer from that gpkg.
3. The loop begins: the wal and shm files are repeatedly created and removed 
from the 
disk, and the expanded branch is being refreshed.

Your fixes of course didn't help this particular case. I don't observe it in 
QGIS 3, so I'm 
leaving it as it was. Furthermore, I didn't manage to reproduce it with every 
gpkg.

Regards,
Borys


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] STORY PLUGIN

2018-04-12 Thread Borys Jurgiel
Dnia czwartek, 12 kwietnia 2018 20:10:01 CEST Tabare Martinez pisze:
> I saw this video and I thought I was going to be able to find it:
> https://www.youtube.com/watch?v=9MGupLsU9Eg
> 
> I can see in the video that the plugin is "experimental", I use the option
> that enables the experimental plugins, but still can't find it.

AFAIK it was never published - there is only a concept in the video. I'd just 
contact 
the authors and ask if it's available somewhere.

Regards,
Borys


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] How to Prevent GeoPackage file from updating modified date when viewed in a Qgis project when it is not being edited

2018-04-10 Thread Borys Jurgiel
Me wrote:

> Bingo! Seems it's exactly the 2.18 issue. I'll backport it this afternoon
> (unless you guys are faster) and ensure it helps.

Ooops, not today, as I just realized I don't have GDAL 2 in my ld 
QGIS2 dev environment (and Qt4 in my current one). I'll sort it out 
before the 2.18.19 release.

Borys

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] How to Prevent GeoPackage file from updating modified date when viewed in a Qgis project when it is not being edited

2018-04-10 Thread Borys Jurgiel
Thanks a lot!
Dnia wtorek, 10 kwietnia 2018 09:01:56 CEST Alessandro Pasotti pisze:
> See:
> 
> https://github.com/qgis/QGIS/commit/
1d4c6061a8a5512092041aafea14a8a32247d046
> #diff-e89106528fe0226767dfccab355e44dc
> 
> but I'm afraid this wasn't all of it.

Bingo! Seems it's exactly the 2.18 issue. I'll backport it this afternoon 
(unless you 
guys are faster) and ensure it helps.

Regards,
Borys
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] How to Prevent GeoPackage file from updating modified date when viewed in a Qgis project when it is not being edited

2018-04-10 Thread Borys Jurgiel
Dnia wtorek, 10 kwietnia 2018 08:11:48 CEST Alessandro Pasotti pisze:

> Hi, I also faced this problem when Implementing gpkg support in the QGIS
> browser panel: when the file browser scanned the folder, it opened the
> gpkg, which in turn changed its file stats and made the directory watcher
> think that something has changed in the directory, which in turns started
> scanning again in a delicious endless loop :)
> 
> I think I solved this with a kind of locker for the directory scan thread,
> but it was't easy.

Ah so this it the loop in 2.18... Could you recall that commit that fixed it in 
3.0? I 
understand it's not trivial to backport it to 2.18? 

Regards,
Borys
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] How to Prevent GeoPackage file from updating modified date when viewed in a Qgis project when it is not being edited

2018-04-10 Thread Borys Jurgiel
> Hi Borys,
> 
> Are you sure that this is also a problem with 2.x?
> 
> If I remember correctly 2.x browser panel does not open gpkg for scanning
> contents, this feature was added for 3.x.

It doesn't show the GPKG contents, but it starts the loop (sometimes?) when 
scanning a 
directory containing a GPKG.

Now I recall also a rush in the system file browser - like the wal and shm 
files were 
repeatedly removed and created back. I don't remember with which QGIS version 
and 
which OS I observed it, but I'll try to reproduce it.

Regards,
Borys

PS. Shouldn't we move to the developer ML? :)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS3: statusbar too long for 1280 x 1024

2018-01-03 Thread Borys Jurgiel
On piątek, 29 grudnia 2017 17:08:37 CET Tobias Wendorff wrote:
> Hey Borys,
> 
> Am Mi, 27.12.2017, 23:59 schrieb Borys Jurgiel:
> > You can hide anything you want: Settings -> Interface customization
> > Just uncheck mRotationEdit and mRotationLabel and restart QGIS.
> 
> didn't know that, but it's very hard to handle.
> 
> "Switch to to catching widgets in main application" doesn't work for
> statusbar ;(

Actually only toolbars and their buttons can be selected like that.
I've added it to the feature request: https://issues.qgis.org/issues/15021
It's the necessary first step to give it a chance to be noticed. However, I'm 
not optimistic about when, or even if, someone will implement it in his spare 
time. It has neither high priority nor is trivial to implement. If you really 
need it, please consider raising a sponsorship.

> And seems like you can't remove "Type to locate".

Thanks for the report. As above, although this one is much more important, as 
there is completely no way to hide the Locator widget. I filled a bug ticket: 
https://issues.qgis.org/issues/17779

Best regards,

Borys

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS3: statusbar too long for 1280 x 1024

2017-12-27 Thread Borys Jurgiel
You can hide anything you want: Settings -> Interface customization
Just uncheck mRotationEdit and mRotationLabel and restart QGIS.

Regards,
Borys




On środa, 27 grudnia 2017 05:43:16 CET Tobias Wendorff wrote:
> Thanks a lot!
> 
> Is it planned to make the statusbar configureable? I would like to
> remove "rotation". I haven't needed it for over ten years now and
> I might not need it in near future.
> 
> Or just make it multiline and allow drag-drop etc.
> I've got equal problems with the plugin bars... they're way too small
> with many plugins :(

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS3: statusbar too long for 1280 x 1024

2017-12-26 Thread Borys Jurgiel
On poniedziałek, 25 grudnia 2017 06:56:28 CET Tobias Wendorff wrote:
> - "There is a plugin update available" on the left is pretty long

See the pull request: https://github.com/qgis/QGIS/pull/5952

Regards,
Borys
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Clipping a Raster

2017-12-13 Thread Borys Jurgiel
It seems your GdalTools plugin is disabled. You should be able to enable it in 
the plugin manager.

Regards,
Borys

On środa, 13 grudnia 2017 10:09:18 CET Mark Polczynski wrote:
> Sorry for the simple question, but how do you clip a raster in 2.18? I
> believe I used to use something like  Raster>Extraction>Clipper in 2.14,
> but I don't see that sequence on 2.18.  Here is what I see...
> 
> [image: Inline image 1]


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] problems with dbf encoding in Chugiak

2014-08-01 Thread Borys Jurgiel
For me it looks good, but I don't speak Spanish so please take a look at the 
screen shot and confirm: http://tmp.borysjurgiel.pl/cp1252.png

Also please note the Ignore shapefile encoding checkbox in QGIS settings.

If it's enabled, you can (and you need to) select the proper encoding when 
opening the layer. You can also change it in layer properties. As the declared 
encoding is ignored, changes made by Shapefile Encoding Fixer don't take any 
effect.

If the checkbox is disabled, the autodetection is active, so you can't 
manually select encoding (if I remember correctly, the list in the open 
layer window is ignored, the one in layer properties is disabled). Instead, 
you can use the Shapefile Encoding Fixer to control the encoding declaration.

So in short, they are two opposite modes.

Best regards,
Borys


Dnia piątek, 1 sierpnia 2014 08:55:40 William Kyngesburye pisze:
 I've also noticed problems with shapefile encodings, though it seemed
 random.  Maybe it's just a general problem of QGIS ignoring the cpg file. 
 To work around it, set the encoding in the layer properties after adding it
 to QGIS.
 On Aug 1, 2014, at 3:29 AM, Agustin Diez-Castillo gvsig@gmail.com 
wrote:
  Hi,
  I'm having problems to see the correct encoding of this file [1]. To the
  best of my understanding the original encoding is 1252 and this works in
  LibreOffice or other gis programs, however trying to read it in Qgis
  gives always the wrong result (spanish characters missed). I've try the
  fix dbf encoder plugin adding the cpg file but with no success. I'm on
  mac running Kyngchaos version.
  Can somebody test the attached file and see what's going on?
  Thanks
  
  [1] https://www.dropbox.com/s/zeh5vdx8b2g1lxb/BCN200_0301L_RIO.zip
  
  QGIS version2.4.0-ChugiakQGIS code revisionCompiled against Qt4.8.6Running
  against Qt4.8.6Compiled against GDAL/OGR1.11.0Running against
  GDAL/OGR1.11.0Compiled against GEOS3.4.2-CAPI-1.8.2Running against
  GEOS3.4.2-CAPI-1.8.2 r3921PostgreSQL Client Version9.3.4SpatiaLite
  Version4.1.1QWT Version6.0.2PROJ.4 Version480QScintilla2 Version2.8.1
  ___
  Qgis-user mailing list
  Qgis-user@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/qgis-user
 
 -
 William Kyngesburye kyngchaos*at*kyngchaos*dot*com
 http://www.kyngchaos.com/
 
 Those people who most want to rule people are, ipso-facto, those least
 suited to do it.
 
 - A rule of the universe, from the HitchHiker's Guide to the Galaxy
 
 
 ___
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] [Qgis-developer] Shortcut changes in QGIS; call for opinions

2013-11-29 Thread Borys Jurgiel
Dnia piątek, 29 listopada 2013 10:18:26 Andreas Neumann pisze:
 As long as we don't have an undo option I would like to have the
 confirmation question always when removing one or more layers. It is not
 something that people do all the time, so it wouldn't be annoying. 

It seems there are at least two opposite approaches in the TOC usage. When you 
do any kind of data processing, you have billions of intermediate layers you 
have to remove one by one, and it doesn't hurt you if you remove too much, as 
you don't care about their style. Furthermore, then you have to remove them 
all from disk and it also isn't especially dangerous if you only use 
reasonable versioning and backups. Also I guess every admin spending her/his 
days on browsing and fixing countless layers from her/his users might agree 
with me.

But you're right, I didn't consider your point of view, and seems that one is 
definitely more popular. For the non-confirmation variant, I can see two 
solutions:

1. We already have a number of actions without default shortcut. Maybe we 
could create an action that is neither placed in any menu/toolbar nor assigned 
to any shortcut by default. Just waiting to be connected to a custom shortcut 
if anybody wants it.

2. If we don't want to make such orphan actions, let's drop it. I'll write a 
supersimple plugin for adding non-standard actions and release it if anyone 
interested.




 I
 also accidentally removed layers with right-click and there was no
 confirmation that stopped me. So I would prefer to have the confirmation
 when removing layers in all cases.
 
 Andreas
 
 Am 29.11.2013 07:56, schrieb Richard Duivenvoorde:
  On 28-11-13 23:19, Nathan Woodrow wrote:
  Given that adding/removing a complex layer can be expensive and there is
  no undo I would suggest to have a single key shortcut (D) with confirm
  and a modified one without (Ctrl-D).  You want to avoid the user doing
  something dangerous and in this case that is removing a layer layer
  without undo.
  
  Personally I do not like to add more then one key for the same action,
  keep stuff simple.
  
  Although we could make confirmation an option, the number of options in
  the options dialogs are also growing and growing. I've already a lot of
  options to tweak for a new user to make it the best way for him/her.
  
  If we do a a first time dialog with a 'do not ask me anymore', that is
  nice, BUT it means that we have to put a way to undo that somewhere in a
  dialog/option too (while the logic code actually is easy: just an extra
  if/flag).
  
  Let's keep the interface as simple/logical/friendly as possible
  especially for non power users.
  
  Could we maybe create some poweruser options list (like gnome-settings
  or :config in firefox). In which we put this kind of flags?
  So no cluttering of the interface with 'do not ask' actions or more
  options in the options dialogs. But only a list of configs which you
  could use.
  Which in practice would actually be a Qtable with filter for QSettings
  of QGIS, in my case: ~/.config/QGIS/QGIS2.conf
  
  Regards,
  
  Richard Duivenvoorde
  
  ps Borys: we should not be afraid of some regression if it makes QGIS
  better in general :-)
  
  
  
  ___
  Qgis-user mailing list
  Qgis-user@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/qgis-user
 
 ___
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] [Qgis-developer] Shortcut changes in QGIS; call for opinions

2013-11-28 Thread Borys Jurgiel
Dnia czwartek, 28 listopada 2013 15:11:30 A Huarte pisze:

 + Remove layer from legend - Ctrl+D with ask for confirmation.
Now QGIS does not ask for confirmation.

What about leaving the possibibility to remove the layer without confirmation 
with a separate shortcut? 

Actually the first what I do after a fresh install is changing Ctrl-D to 
simple D, as I couldn't imagine myself using two fingers for such basic 
action like layer removing ;)) The same with a dozen of other Ctrl-* 
shortcuts. And I believe I'm not the only one. 

Regards,
B.

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] [Qgis-developer] Shortcut changes in QGIS; call for opinions

2013-11-28 Thread Borys Jurgiel
Please don't understand me wrong - I don't insist to use single-key shortcuts 
by default. We had them in early versions and we decided to drop them, so it 
wouldn't make much sense to mess with them again. Personally I miss them, but 
It's no problem for me to change them.

I only refered to the singe-key shortcut in order to underline the importance 
of this action and protest against removing the non-confirmation option 
completely ;) IMHO, it would be a painful regression. But it's no problem for 
me if it's not connected to any key by default. 


Dnia piątek, 29 listopada 2013 08:19:34 Nathan Woodrow pisze:
 Given that adding/removing a complex layer can be expensive and there is no
 undo I would suggest to have a single key shortcut (D) with confirm and a
 modified one without (Ctrl-D).  You want to avoid the user doing something
 dangerous and in this case that is removing a layer layer without undo.
 
 - Nathan
 
 On Fri, Nov 29, 2013 at 3:11 AM, Borys Jurgiel li...@borysjurgiel.plwrote:
  Dnia czwartek, 28 listopada 2013 15:11:30 A Huarte pisze:
   + Remove layer from legend - Ctrl+D with ask for confirmation.
   
  Now QGIS does not ask for confirmation.
  
  What about leaving the possibibility to remove the layer without
  confirmation
  with a separate shortcut?
  
  Actually the first what I do after a fresh install is changing Ctrl-D to
  simple D, as I couldn't imagine myself using two fingers for such basic
  action like layer removing ;)) The same with a dozen of other Ctrl-*
  shortcuts. And I believe I'm not the only one.
  
  Regards,
  B.
  
  ___
  Qgis-user mailing list
  Qgis-user@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Installed locations of plugins in QGIS2.0

2013-11-01 Thread Borys Jurgiel
Hi,

Some plugins have a Category tag what is exactly what you remember from 1.8. 
If the category is not specified, you can start from the Plugins menu/toolbar.

Please note the plugin manager doesn't really know that location, it only 
knows a plugin category declared by its author. The category should fit 
appropriate menu and toolbar, so in 1.8 it was presented explicitly as 
Installed in XX menu/toolbar. But in fact the XX was just the 
category. This tag isn't mandatory, and if missing, the word Plugins was 
assumed. Unfortunately it wasn't reliable at all, and often was definitely 
confusing. So we decided to present it in more careful manner, and doesn't 
assume anything if it's missing.

In the future we're going to find a more reliable way to indicate where to look 
for a plugin. One idea is a short how to start text next to the plugin 
decription.


Dnia piątek, 1 listopada 2013 18:49:29 Harish pisze:
 Its fine, but my query is related to its icon's location that in in which
 menu/toolbar it reside after  installation.
 Regards
 
 On Fri, Nov 1, 2013 at 6:25 PM, Richard Duivenvoorde 
rdmaili...@duif.netwrote:
  On 01-11-13 13:45, Harish wrote:
   Dear List,
   In QGIS1.8, we could see the installed plugins locations after
   installation, but in 2.0 it is not seen and we have to use our
   experience to guess its location after installation. Can this QGIS1.8
   feature be available in 2.0 also?
   Using QGIS2.0.1, windows7 32bit.
   Regards
  
  It is still there:
  in the plugin dialog click on 'installed' and then click on a plugin.
  De 'detail'-screen still shows you where it is installed:
  
  Installed version: 2.8 (in /home/richard/.qgis2/python/plugins/GeoCoding)
  Available version: 2.8 (in QGIS Official Plugin Repository)
  
  Is this different in your setup?
  
  Regards,
  
  Richard Duivenvoorde
  
  
  ___
  Qgis-user mailing list
  Qgis-user@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] WMTS

2013-08-02 Thread Borys Jurgiel
Hmmm, so now one of the most exposed actions will be untranslated... 

What about contacting active translating teams (those with = 50% strings 
translated) and dealing manually with this string? Otherwise I'd vote for 
rolling back the commit... :(


Dnia piątek, 2 sierpnia 2013 o 11:52:52 Andreas Neumann napisał(a):
  And this is already fixed in Master - see
  http://hub.qgis.org/issues/8396 - thanks to Jürgen.
 
  Andreas
 
  On Fri, 02 Aug 2013 11:29:39 +0200, Andreas Neumann wrote:
  Hi Jonathan,
  
  You just use the WMS connection dialogue. It also works for WMTS.
  
  I am now opening a bug to change the Add WMS layer into Add
  WMS/WMTS layer. This should make things clearer to the users.
  
  Andreas
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] WMTS

2013-08-02 Thread Borys Jurgiel
Dnia piątek, 2 sierpnia 2013 o 13:31:21 Andreas Neumann napisał(a):
  The translation into any language is easy and possible for everyone,
  even if you don't know the language - you just add the /WMTS.
 
  Or are people translating the acronym WMS? Hopefully not.

Ok, you're right. So just let's don't forget to replace it manually after the 
last translation is accepted. Werner, will you remember? I can do it.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] WMS/WMTS

2013-08-02 Thread Borys Jurgiel
Dnia piątek, 2 sierpnia 2013 o 15:02:26 Werner Macho napisał(a):
 Hi!
 Translators are aware that there will be some changes/bugfixes. So I
 have no Problem to add this in the GUI as it seems to be very useful.
 Actually it is the first time translators are actively reporting back
 issues in original language and I very welcome that.
 
 The only thing is that I promised to do a String update ONE WEEK before
 the final release (That should give enough time to do the 25-50 changes).

Ooookay, I haven't realized it and thought we're completely frozen. I forget 
all the reports. Sorry for bothering :-)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] plugin helloworld 1.5

2013-07-29 Thread Borys Jurgiel
Dnia poniedziałek, 29 lipca 2013 o 07:14:05 Su Hartono napisał(a):
 I use OS Ubuntu 12.04.
 I got Error loading plugin
 The plugin is broken.  Python said:
 'module' object has no attribute 'classFactory'.
 How to fix it ?
 -- thank you--
 Suhartono

There is a bug in the plugin so the __init__.py file is empty. Just add 
following simple function to it (mind the indentation): 

def classFactory(iface):
  from HelloWorld import HelloWorld
  return HelloWorld(iface)

You can also use that file from the 1.0 version. For more information look at 
the PyQGIS cookbook [1]. 

Btw. note for QGIS 1.8 you need to put plugin metadata to both: __init__.py 
and metadata.txt files. From QGIS 2.0 the only place to put the metadata is the 
metadata.txt file. The __init__.py should only contain the classFactory 
function.

[1] http://www.qgis.org/pyqgis-cookbook/plugins.html#plugins
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] MMQgis - install via plugin manager not possible - plugin deactivated

2013-07-16 Thread Borys Jurgiel
I'm not a windows user, so I don't know how old the 298 is, however, seems 
it's not the recent build. In a more recent master you shouldn't see any 
Python Plugin Installer. Instead, you would see the new Plugin Manager with 
built-in installer. Please upgrade to the recent master, it should fix the 
version incompatibility.

Dnia wtorek, 16 lipca 2013 o 11:18:17 Magnus Teichert napisał(a):
 Hello everybody,
 
 Trying to install the MMQGIS plugin (2013.06.14) on master (1.9.0 298) on
 windows xp.
 
 Via the python plugin installer, I can't find neither the old MMQGIS 
 stable version nor the experimental one for the master as specified in the
 help file of MMQGIS. (show experimental is activated, all standard
 repositories online).
 
 After manual download and extraction in the .qgis/python/plugin folder, the
 plugin is visible in the Qgis plugin manager, but deactivated and marked
 as [incompatible].
 
 What am I missing?
 
 Thanks in advance,
 Magnus
 
 
 
 
 
   
 Die MAN Gruppe ist eines der f?hrenden europ?ischen Industrieunternehmen im
 Bereich Transport-Related Engineering mit j?hrlich rund 15,8 Mrd EUR
 Umsatz (2012). MAN ist Anbieter von Lkw, Bussen, Dieselmotoren,
 Turbomaschinen sowie Spezialgetrieben und besch?ftigt weltweit rund 54 300
 Mitarbeiter. Die MAN-Unternehmensbereiche halten f?hrende Positionen auf
 ihren M?rkten.
 
 MAN Truck  Bus AG
 Sitz der Gesellschaft: M?nchen
 Registergericht: Amtsgericht M?nchen, HRB 86963
 Vorsitzender des Aufsichtsrates: Prof. Rupert Stadler
 Vorstand: Anders Nielsen (Sprecher), J?rg Astalosch, Ulf Berkenhagen, Dr.
 Carsten Intra, Heinz-J?rgen L?w, Bernd Maierhofer, Jochen Schumm
 
 This e-mail (including any attachments) is confidential and may be
 privileged. If you have received it by mistake, please notify the sender
 by e-mail and delete this message from your system. Any unauthorised use
 or dissemination of this e-mail in whole or in part is strictly
 prohibited. Please note that e-mails are susceptible to change.
 MAN Truck  Bus AG (including its group companies) shall not be liable for
 the improper or incomplete transmission of the information contained in
 this communication nor for any delay in its receipt. MAN Truck  Bus AG
 (or its group companies) does not guarantee that the integrity of this
 communication has been maintained nor that this communication is free of
 viruses, interceptions or interference.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Fetch plugins missing

2013-06-28 Thread Borys Jurgiel
Dnia piątek, 28 czerwca 2013 o 13:51:37 Julie Pierson napisał(a):
 The log console reported an error when QGIS is launched :
 cannot load library /usr/lib/qgispython : (libqgispython.so: Cannot
 open shared object file: No such file or directory)
 I did have libqgispython.so.1.8.0 in /usr/lib, so I tried renaming it to
 just libqgispython.so.
 Now I have another error message :
 cannot load library /usr/lib/qgispython : (libpython2.6.so.1.0: Cannot
 open shared object file: No such file or directory)
 
 It's strange because I use Python 2.7 and not Python 2.6... There seems
 to be some confusion here. I will try to investigate further, I'll be
 glad for your help if you have any other idea.

Oh, so definitely you have no Python. Sorry, I missed the last sentence in your 
first mail, where you wrote the Python console is NOT working.

Well, seems the libqgispython is compiled against Python 2.6 and tries to 
access it. The question is which package the libqgispython.so.1.8.0 comes 
from. 

If it comes from the recent python-qgis installation, then it seems to be 
broken: there is the invalid file name and the unfulfilled dependency on Py 
2.6. 
So maybe it's an old file? First I'd reinstall all qgis related packages to 
ensure all recent files are installed (probably you already did it a few 
times). Then I'd look at installed files and dependencies in package 
details in Synaptic. Maybe you'll find an answer there, why QGIS looks for 
libqgispython.so file, while another library name is installed.

Anyway, I'm not very familiar with present Ubuntu world; a few years ago I 
gave up, came back to good old Debian and my life became much simpler ;)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Fetch plugins missing

2013-06-27 Thread Borys Jurgiel
Dnia czwartek, 27 czerwca 2013 o 14:16:07 Julie Pierson napisał(a):
 Thank you for your answer. python-qgis-common is installed, and I
 activated all the plugins in the plugin manager, still no plugin
 installer. Am I missing something else?
 
 Thanks,
 
 Julie.

1. Is there no Plugin Installer plugin on the list in the Manager?
2. No error message at QGIS startup?
3. Does this directory exist? /usr/share/qgis/python/plugins/plugin_installer
4. And this? /usr/share/qgis/python/pyplugin_installer ? 

The latter shouldn't. It comes with 1.9, so if it exists, seems it's not fully 
uninstalled.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Fetch plugins missing

2013-06-27 Thread Borys Jurgiel
So seems the installer is on board. Could you please take a look at the log 
console as well (The ! icon in lower-right corner or in 
Settings-Panels-Log messages menu)? In the Plugins tab you should see just 
Loaded Plugin Installer (package: plugin_installer) message.

If everything there is ok, probaby the error you reported may have something 
to do with it... It shows a problem with addidng a menu entry, however, it 
looks rather like the Project properties entry is going to be inserted 
twice. I never met such problem anyway and I'm afraid I have no idea what is 
the reason.

You can also try to clear the configuration, by removing (or temorarily 
renaming the two directories: ~/.qgis and ~/.config/QuantumGIS
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Fetch plugins missing

2013-06-26 Thread Borys Jurgiel
AFAIK the plugin installer is in python-qgis-common package rather than 
python-qgis. You should install both (if available in the repository).

If it's installed and you still can't see it, it can be disabled in the plugin 
manager. Go to Plugins - Manage plugin and make sure the Plugin Installer 
plugin is enabled.

B.

Dnia środa, 26 czerwca 2013 o 18:01:18 Julie Pierson napisał(a):
 Hi list,
 
 I uninstalled qgis 1.9 to switch back to qgis 1.8, and 'fetch plugins'
 has gone missing from the extension menu. I use ubuntu 13.04.
 
 I did install python-qgis. I installed qgis from the ubuntu-unstable
 repository.
 
 Do you have an idea on what may be causing this problem? I tried
 uninstalling and reinstalling qgis, to no avail. I wonder if it's do
 with python, since the python console is present in the extension menu,
 but doesn't show when I click on it.
 
 Thanks a lot for your help,
 
 Julie.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS Master dependency problem.

2013-06-24 Thread Borys Jurgiel
It was fixed June 19 in this commit:
https://github.com/qgis/Quantum-GIS/commit/5bcb0e1ae56


Dnia poniedziałek, 24 czerwca 2013 o 11:57:12 Vincent Damoy napisał(a):
 Hello,
 
 I had the same problem with QGIS on Ubuntu 12.04 (at work, but not at
 home :-O ).
 
 Apparently, there is a typo in this file :
 /usr/share/qgis/python/plugins/GdalTools/tools/doPolygonize.py, at line 108
 
  if self.fieldCheck.isChecked() and self.fieldEdit.text()):
 the opening parenthesis lacks.
 Il should be :
   if *(*self.fieldCheck.isChecked() and self.fieldEdit.text()):
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Lost the plugins

2013-06-14 Thread Borys Jurgiel
Dnia piątek, 14 czerwca 2013 o 10:16:44 Borys Jurgiel napisał(a):
 Dnia piątek, 14 czerwca 2013 o 08:12:00 Andrea Peri napisał(a):
  Hi,
  this morning I update (using osgeo4w) my qgis-dv.
  
  And after the menu plugin became empty of all installed plugins.
  
  The plugin manager still report me over 40 plugin installed, but noone is
  listed.
  
  Perhaps is changed the path to plugin store folder ?
  
  Thx,
 
 If the plugin manager can find them, then they should be accessible.
 
 1. Are the reported plugins checked (enabled)?
 2. Arent they painted red (incompatible)?
 3. Aren't they localized in different menus?
 
 Please take a look at my Plugins menu:
 http://tmp.borysjurgiel.pl/plugins_in_menu.png
 
 This is the current set of compatible plugins that installs in the Plugins
 menu. All the rest installs in menus: Vector, Raster, Analysis, Database
 and Layer.
 
 PS. Please note currently we only have 14 external plugins rewritten for
 QGIS 2.0: http://plugins.qgis.org/plugins/plugins.xml?qgis=2.0 . The rest
 is not available yet. All core plugins should work.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Lost the plugins

2013-06-14 Thread Borys Jurgiel
Sorry, it was my message:


Dnia piątek, 14 czerwca 2013 o 08:12:00 Andrea Peri napisał(a):
 Hi,
 this morning I update (using osgeo4w) my qgis-dv.
 
 And after the menu plugin became empty of all installed plugins.
 
 The plugin manager still report me over 40 plugin installed, but noone is
 listed.
 
 Perhaps is changed the path to plugin store folder ?
 
 Thx,

If the plugin manager can find them, then they should be accessible.

1. Are the reported plugins checked (enabled)?
2. Arent they painted red (incompatible)?
3. Aren't they localized in different menus?

Please take a look at my Plugins menu:
http://tmp.borysjurgiel.pl/plugins_in_menu.png

This is the current set of compatible plugins that installs in the
Plugins menu. All the rest installs in menus: Vector, Raster, Analysis,
Database and Layer.

PS. Please note currently we only have 14 external plugins rewritten for
QGIS 2.0: http://plugins.qgis.org/plugins/plugins.xml?qgis=2.0 . The rest
is not available yet. All core plugins should work.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Lost the plugins

2013-06-14 Thread Borys Jurgiel
Dnia piątek, 14 czerwca 2013 o 10:25:29 Werner Macho napisał(a):
 http://tmp.borysjurgiel.pl/plugins_in_menu.png
 
 forbidden :)

Really? Works fine here...
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] to all authors refactoring their plugins for 2.0

2013-06-11 Thread Borys Jurgiel
Just one note more: you can safely set qgisMinimumVersion to 2.0 and it will 
work in master. Plugin managing and loading stuff thinks it is 2.0 already.

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] [Qgis-developer] SIP API Update merged. Attention plugin authors and nightly dev users.

2013-06-10 Thread Borys Jurgiel
Dnia poniedziałek, 10 czerwca 2013 o 14:54:45 Nathan Woodrow napisał(a):
 Hey everyone,
 
 You are now free to upload your new 2.0 API version of your plugins to the
 QGIS plugin repo. Remember to set qgisMinimumVersion and qgisMaximumVersion
 in your metadata.txt so that plugin repo and installer get the right
 version of the plugin.

Let me precise.

Only the qgisMinimumVersion is required.

QGIS assumes, that a usual plugin is compatible with that version and higher 
WITHIN one major version. So you set the minimum to 1.6, and the maximum is 
assumed to 1.99. You set the minimum to 2.0, and the maximum is 2.99. Etc.

There are two cases however, you could want to set the qgisMaximumVersion 
explicitly:

1. Set it lower than default. E.g. min=2.0 and max=2.3. Hardly useful, as we 
don't break API within one major version, so plugins for 2.0 should work with 
any 2.x. Also if you want to publish one version for QGIS 2.0-2.3 and a second 
for 2.4-2.99, you shouldn't use the qgisMaximumVersion. Instead, you can bump 
up the version of the second plugin. QGIS will always choose *the most recent* 
version with matching qgisMinimumVersion. So the higher version will go to 
QGIS=2.4, and the lower to QGIS 2.0 - 2.3.

2. Set it higher than default. If your plugin is very simple and you want to 
maintain one dual-API version instead of two separate, you can set:
qgisMinimumVersion to 1.6
qgisMaximumVersion to 2.99

Please note 99 is the highest allowed value, so if you use a longer number, 
QGIS will either reject your plugin because of unclear version number or 
fallback to default.


Hmmm, can we write it down somewhere in the documentation?
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] New QGIS users. Attention plugin authors and nightly dev users.

2013-06-09 Thread Borys Jurgiel
 The plugin
 installer will not install a 1.8 plugin into 2.0 or a 2.0 plugin into 1.8.

Just to clarify: please note the future form of this sentence. Now we're in a 
transitional period: QGIS is switched to 2.0 API, but formally the version 
number is still 1.9, so don't be surprised the plugin manager in the *current* 
master branch (and in nightly builds) still installs incompatible 1.x plugins 
(and then tells they are invalid of course).
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] The new Plugin Manager in master and plugins for 1.8 and 2.0

2013-06-09 Thread Borys Jurgiel
This mail is only related to the nightly builds and developer master branch. 
If you use the stable QGIS 1.8, you can ignore it.

Hi Devs and developer branch Users,

From yesterday the master branch uses plugin API 2.0, so old plugins for QGIS 
1.x don't work anymore. We (their authors) need some time to update them to 
the new API. Because formally the current developer version is still 1.9, I 
just hardcoded 2.0.0 as the current version number in the plugin managing stuff 
until it's officially switched. For that reason QGIS only accepts plugins 
compatible with version 2.0 now!

Don't be surprised the plugin manager has become blind and shows empty 
repositories. It just properly recognizes all the the old 1.8 plugins as 
incompatible and doesn't display them. As the plugins will be updated to the 
2.0 API, they should start to appear in the Manager again.


For plugin authors:

Because QGIS assumes plugin is only compatible with one major version, so you 
need to set qgisMinimumVersion to 2.0 in order to make it compatible with QGIS 
2.0.0 - 2.999.999. If you set qgisMinimumVersion to 1.x, it will assume that 
MAXIMUM version is 1.999.999.

In case you want to create a plugin compatible with both API, you need to 
explicitly set both qgisMinimumVersion and qgisMaximumVersion tags. However, 
it's only reasonable for very simple plugins, because the changes are maybe 
not numerous, but quite fundamental.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS Master, Wrong Plugin Path shown

2013-04-17 Thread Borys Jurgiel
Dnia środa, 17 kwietnia 2013 o 15:59:35 Albin Blaschka napisał(a):
 Hello!
 
 Probably just a smal detail, but installing a plugin on QGIS master
 today on Win7, rev. 268c037 (OSGeo4W), I saw that the plugin installer
 shows at the bottom that the plugin will be installed to
 
 ~/.qgis/python/plugins
 
 Shouldn't that be ...qgis2... in the meantime? The plugin seems to be
 installed correctly, but maybe somebody will be confused...

The label is obsolete and will be removed in 2.0.
Don't trust what it says, plugins are correctly in .qgis2 :)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] OSM plugin encoding problem

2013-03-10 Thread Borys Jurgiel
 EDIT:
 I just saw that there is a brandnew Shapefile Encoding Fixer plugin
 available for qgis. I haven't tried it yet, but it might be what you want.

The plugin helps in most cases by fixing broken encoding *declaration*. 
However, it won't help if also the encoding (not only its declaration) is 
broken. It's strange the ENCODING=UTF-8 in the SaveAs dialog didn't work. I 
Did you put it to the layer or datasource option? I don't remember which place 
is right, so I put it to both :)

About the pugin, it only contains a limited set of encodings included. Let me 
know if you need another one, I'll add it.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] WMS error

2013-02-28 Thread Borys Jurgiel
Hi Błażej,

As you probably know, geoportal.gov.pl used to be moody and it looks like its 
another issue... Seems it demands layer style definition, what shouldn't be 
mandatory. Anyway, now it works for me too.

Also, you're welcome to the Polish forum http://forum.quantum-gis.pl where 
almost everyone uses geoportal and can confirm problems or share her/his 
tricks. In the worst case, at least good place for collective complaining ;)

Regards,
B.

Dnia środa, 27 lutego 2013 o 08:46:56 Błażej Zamojski napisał(a):
 Hi
 For 3 days now I am getting error when connecting do WMS
 (http://mapy.geoportal.gov.pl/wss/service/img/guest/ORTO/MapServer/WMSServe
 r ?version=1.1.1). Is it WMS provider problem or something else? Error text
 below:
 
 ?xml version=1.0 encoding=UTF-8 standalone=no ?
 !DOCTYPE ServiceExceptionReport SYSTEM
 http://schemas.opengis.net/wms/1.1.1/exception_1_1_1.dtd;
 ServiceExceptionReport version=1.1.1
   ServiceException code=StyleNotDefined
 Parameters 'styles' and 'layers' should have the same number of values.
   /ServiceException
 /ServiceExceptionReport
 
 Regards
 
 Blazej Zamojski
 
 
 ___
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Radiotelemetry triangulation data into QGIS

2013-02-22 Thread Borys Jurgiel
It's very simple. You need any point layer with at least two numerical fields: 
one with id of the fix, the second with bearing in degrees. For example:

x;y;bearing;fix_id
584846;4272513;0;1
584426;4272770;85;1
586034;4272041;265;2
584709;4271246;10;2
582800;4273011;112;2

The fix 1 has two points only, so it's simple. The fix 2 has three points, so a 
triangle with centroid will be found.



Dnia czwartek, 21 lutego 2013 o 22:21:13 Milton Cezar Ribeiro napisał(a):
 Hi Giovanni
 
 Where can I get information or a sample file to use as example to
 prepare my data?
 
 best whishes
 
 miltinho
 
 2013/2/21, Giovanni Manghi giovanni.man...@faunalia.pt:
  Message: 2
  Date: Thu, 21 Feb 2013 16:09:42 -0300
  From: Milton Cezar Ribeiro miltinho.astrona...@gmail.com
  To: qgis-user qgis-user@lists.osgeo.org
  Subject: [Qgis-user] Radiotelemetry triangulation data into QGIS
  Message-ID:
  
  CADkzOEWxd=xcxns0sf1zrju5_rsrxfcmxufhw5vr3+o7n1x...@mail.gmail.com
  Content-Type: text/plain; charset=ISO-8859-1
  
  Dear all
  
  I have a set of field surveyed data for a species, and the data are
  triangulation-based such as utm for each reading, and azimute (bean),
  and at least three reading for each species position on space and
  time.
  
  I knwow that if I have utmx and y I can use AniMove, also adehabitat
  family within R, but unfortunatelly it is not the case.
  
  Any idea of how can I convert my utm-xy and azimultes on species
  position?
  
  use the triangulation plugin, it was made exactly for this purpose.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Plug-ins

2012-04-07 Thread Borys Jurgiel
Dnia piątek, 6 kwietnia 2012 o 22:33:13 Elvin Birth napisał(a):
 I just installed QGis on my Mac running OS 10.6.4. When I open QGis there
 is a screen telling me of an obsolete plug-in which I should remove to
 allow the newer plug-in to be active. How do I identify the obsolete
 plug-in?

The name of the plugin is in the tittle of that message window.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Repository for TimeManager plugin in Python plugin installer (qgis 1.7.3)?

2011-12-31 Thread Borys Jurgiel
Dnia piątek, 30 grudnia 2011 o 13:23:37 Agustin Lobo napisał(a):
 Yes! Thanks, it looks great.
 
 Few caveats regarding the repos:
 1. Should I expect any kind of conflict between plugins in
 http://pyqgis.org/repo/contributed
 and those in
 http://plugins.qgis.org/plugins/plugins.xml
 ?

No. If a plugin is placed in both repositories (in the same version, with the 
same QGIS requirements etc), Installer will display it only once. Let me use 
an example: currently there is about 30 plugins in the new repo, however your 
installer can show only a dozen of them. Don't worry, the rest is still on the 
list, just assigned to the old one.

 2. When I select Add Contributed Repositories,
 the repo http://plugins.qgis.org/plugins/plugins.xml
 is not added. Is there any reason for this? Otherwise, could this repo
 be added by clicking the button?

The new repo is official, not contributed, so in Qgis 1,8 and master it's added 
automagically without clicking the button. Regarding to de discussion on qgis-
developer, I'll release an installer update for older Qgises.

 3. Could the address of the repo
 (http://plugins.qgis.org/plugins/plugins.xml) be prominently stated in
 http://plugins.qgis.org/plugins/?

The http://plugins.qgis.org/plugins is for humans and I believe this one is 
more important to be simple. And it's rather impossible to merge the two 
things into one because of paging, searching etc.

Btw. there was a bug in master that was adding that url to Installer, but 
newer versions should automatically replace it with the correct version.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Python modules (dependencies?)

2011-12-17 Thread Borys Jurgiel
As far as I know, OSGeo4W as well as the standalone installer contains 
matplotlib 0.99, while Contour plugin 0.9 require matplotlib 1.0.1

So you can either:
- install matplotlib 1.0.1 by your own

- contact OSGeo4W matplotlib maintainer: 
http://trac.osgeo.org/osgeo4w/wiki/pkg-python-matplotlib

- contact the plugin author: 
http://www.blogger.com/profile/11552330570446337100

- use contor from GdalTools
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Table manager: cannot delete several fields at once

2011-08-23 Thread Borys Jurgiel
Fixed in 0.3.7 

Note: there are two series: 0.3.7 for QGIS 1.7 only and 0.2.x for older 
versions. I didn't backport the fix to old series, as it's not critical.

The 0.3 series was also tagged as 'experimental'. I've just removed the tag as 
I think it's stable enough now. 



Dnia wtorek, 23 sierpnia 2011 o 09:13:22 Florent LEVAVASSEUR napisał(a):
 I have the same issue but only if I select several fields with the SHIFT
 key. If I select fields with the CTRL key, it works and the selected
 fields are deleted.
 
 On 22/08/11 21:46, Agustin Lobo wrote:
  Even if several fields can be selected, after clicking on Delete
  only the first one is deleted (actually the user is prompted on making
  sure the first selected field has to be deleted). I understand this is a
  bug, am I wrong?
  
  Agus
  ___
  Qgis-user mailing list
  Qgis-user@lists.osgeo.org
  http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Point Sampling Tool handles raster band order properly now

2011-08-23 Thread Borys Jurgiel
Just FYI, version 0.3.2 fixes the old bug:

http://osgeo-org.1803224.n2.nabble.com/Fwd-Discrepancy-between-value-tool-
spectral-profile-and-Point-sampling-tool-for-large-data-sets-2-td5796500.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] ML commit stopped ?

2011-06-25 Thread Borys Jurgiel
Dnia sobota, 25 czerwca 2011 o 08:20:01 aperi2007 napisał(a):
 Hi,
 
 I notice the ML
 http://lists.osgeo.org/mailman/listinfo/qgis-commit
 
 There is some other ML to know the lasts commits of qgis ?

Not a ML, but there is a RSS channel now under the Repository tab of our 
shining new github :

http://hub.qgis.org/projects/quantum-gis
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: Missing features in print-composer, was: Re: [Qgis-user] Bugs, release of 1.7 and release of 1.7 as beta

2011-06-08 Thread Borys Jurgiel
Dnia wtorek, 7 czerwca 2011 o 13:27:39 Andreas Neumann napisał(a):
  Please report the feature requests.

Dnia środa, 8 czerwca 2011 o 14:27:47 Marco Hugentobler napisał(a):
 Thank you for the feedback. To collect the ideas, please add them to the
 wiki (http://www.qgis.org/wiki/Ideas_for_enhancement_print_composer)

Done.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re: Delete a field via GUI

2011-05-07 Thread Borys Jurgiel

  About table manager plugin: is there two version of table manager plugin?
 
 no (see above).

Strictly speaking, there is stable version 0.2.x and experimental 0.3.x for 
Qgis 1.7. The latter contains translations and saving to various formats. But 
the windows issue attects both and I won't fix it soon. Maybe someone is 
willing to help? It shouldn't be too hard - the problem is with multiaccess to 
the file, so it should be removed from the mapcanvas before saving by 
tablemanager and then loaded again.

Anyway, I agree with Andrea the ogr problem puts a bad impression on Qgis, so 
we should encourage ogr folks to apply the patch soon :)

B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS thematic issue

2011-03-14 Thread Borys Jurgiel
Dnia poniedziałek 14 marca 2011 o 13:22:32 Andreas Neumann napisał(a):
  Hi Yves,
 
  ad 1) are you using the old or the new labeling? With the new labeling
  (attention: the settings are not in the layer properties but in a
  separate toolbar!) features that aren't visible due to a scale range,
  are not labeled. So switching to the new labeling should solve your
  problem.

I believe Yves uses the new labelling and wants to hide unwanted labels. 
AFAIK there's no such possibility yet, you need to create a new text attribute 
with desired labels only.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] printing with google layers

2011-02-16 Thread Borys Jurgiel
  Nice! This one works even in the map composer.
 
 The main problem is rescaling.

There can be a bigger problem, as using gdal can violate a few terms of their 
license: http://code.google.com/intl/en/apis/maps/terms.html
(10.1, 10.8, 10.13? - I've only read it briefly)

Seems the OpenLayers plugin is the only legal way, as it's a web browser in 
fact.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] printing with google layers

2011-02-10 Thread Borys Jurgiel
Dnia czwartek 10 lutego 2011 o 09:58:32 maning sambale napisał(a):
 This works for googlemaps.  What is the server url for google imagery?
 
 On Wed, Feb 9, 2011 at 10:50 PM, Borys Jurgiel li...@borysjurgiel.pl 
wrote:
  ServerUrlhttp://mt0.googleapis.com/vt?lyrs=m@144amp;x=${x}amp;y=${y};
  amp;z=${z}/ServerUrl


I can only say what I can see in a web browser, surfing googlemaps. It seems 
there is one server for the imagery:

http://khm0.googleapis.com/kh?v=78x=38y=22z=6

(of course x,y,z values has to be replaced with ${parameter}. I don't know 
what is v parameter)

and second one for the maps:

http://mt0.googleapis.com/vt?lyrs=m@145x=38y=22z=6

where:
lyrs=m@145 - full map
lyrs=h@145 - map overlay for hybrid
lyrs=t@126 - clean terrain
lyrs=t@126,r@145 - terrain + a label overlay

Again, I don't know what the numbers mean.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] printing with google layers

2011-02-10 Thread Borys Jurgiel
Dnia czwartek 10 lutego 2011 o 12:31:36 maning sambale napisał(a):
 Nice! This one works even in the map composer.  

The main problem is rescaling. 

There's no simple way (yet) to restrict scale set to meet the tile scales. For 
display, you just see ugly rescaled image, what can be simply avoided - just 
do zoom to best scale (1pix=1pix) in the legend mouse menu and then only 
zoom with mouse wheel or +/- tools to keep always the 2x factor. This way you 
always fit into tile scale without rescaling. 

I haven't performed serious pritnting tests, but I expect one more problem: 
print resolution probably forces downloading tiles for greater or less zoom, 
as gdal consider TMS as a pyramid. You can try to fix it by setting the zoom 
level for the pyramid basis in TileLevel xml tag.

 But I get transparent
 salt and pepper effect for for very dark pixels.

Maybe it's an 8bit - RGB conversion issue?
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] printing with google layers

2011-02-09 Thread Borys Jurgiel
Dnia środa 09 lutego 2011 o 14:32:42 Markus Weidenbach napisał(a):
  interesting to hear! So the printing limitation is caused by the
 Open Layer Plugin and not by the Google WMS(?).
 I hope new versions of the Open Layer Plugin will address this problem...
 
 Markus

There is no Google WMS, they are static tiles. The two plugins make two 
different workarounds to use them. OpenLayers Plugin is great for display, 
however I expect big problems with proper printing, so wouldn't be 
optimistic...

I wonder if it's possible to use GoogleMaps in Qgis directly via GDAL TMS 
driver. I'm able to open it, but can't cope with colors: Google serves 8bit 
pngs, while Qgis needs RGB. Maybe other gdal versions do it more smoothly?

On the http://www.gdal.org/frmt_wms.html you have a link to the OpenStreetMap 
TMS Service Example: 

http://www.gdal.org/frmt_wms_openstreetmap_tms.xml

Just download this file and open in Qgis as a raster. You shold see OSM layer 
with proper or bad colors ;) In order to use googlemaps instead of OSM, 
replace the third line of the file with: 

ServerUrlhttp://mt0.googleapis.com/vt?lyrs=m@144amp;x=${x}amp;y=${y}amp;z=${z}/ServerUrl
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: AW: Re: [Qgis-user] printing with google layers

2011-02-09 Thread Borys Jurgiel
Dnia środa 09 lutego 2011 o 17:20:29 Düster Horst napisał(a):
 Hi Borys
 
 Thanks a lot for the hint with google maps. It works like a charm!
 
 Regards
 Horst

Do you have proper colors? What GDAL version?
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] printing with google layers

2011-02-09 Thread Borys Jurgiel
Dnia środa 09 lutego 2011 o 18:40:33 Horst Düster napisał(a):
 Am 09.02.2011 18:03, schrieb Borys Jurgiel:
  Do you have proper colors? What GDAL version?
 
 Yes the colors are exact the same like in the original maps. I use
 GDAL 1.7.3

Thanks! My problem was much simpler than I thought ;) Just contrast 
stretching;)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re: Qgis Server under windows

2011-01-07 Thread Borys Jurgiel
Dnia czwartek 06 stycznia 2011 o 23:46:00 Marco Hugentobler napisał(a):
 Hi Borys
 
 I didn't use Qgis server on windows for quite some time now. Maybe Jürgen
 has some more recent experience with it?
 Basically it's like on Linux, you have to install the apache server and
 FastCGI for apache/win for good performance. Then copy the server
 executable and a project file into the fcgi dir (the qt / qgis dlls need
 to be in the system path).
 
 If you successfully manage to run the server on win, please consider
 describing the steps and possible problems  on the wiki page
 http://www.qgis.org/wiki/QGIS_mapserver_tutorial

Well, after two days of fight, I don't even really know where I stuck 
and unfortunaly have no more time for solving windows riddles :( It would be
really great if someone fluent in Windows and/or cgi could describe how to 
configure it.

Our local environmental authority is interested in testing Qgis Server 
and I'd be happy to help them, but I'm neither windows nor cgi geek.

Probably this is the farthest point I've reached:

[Fri Jan 07 22:36:08 2011] [warn] FastCGI: (dynamic) server C:/Program 
Files/Apache Software Foundation/Apache2.2/cgi-bin/qgis_mapserv.fcgi.exe 
started (pid 2608)
[Fri Jan 07 22:36:08 2011] [warn] FastCGI: (dynamic) server C:/Program 
Files/Apache Software Foundation/Apache2.2/cgi-bin/qgis_mapserv.fcgi.exe (pid 
2608) terminated with exit 
with status '-1073741515'
[Fri Jan 07 22:36:13 2011] [warn] FastCGI: (dynamic) server C:/Program 
Files/Apache Software Foundation/Apache2.2/cgi-bin/qgis_mapserv.fcgi.exe 
restarted (pid 288)
[Fri Jan 07 22:36:13 2011] [error] [client 127.0.0.1] (OS 109)Potok został 
zakończony.  : FastCGI: comm with server C:/Program Files/Apache Software 
Foundation/Apache2.2/cgi-
bin/qgis_mapserv.fcgi.exe aborted: GetOverlappedResult() failed
[Fri Jan 07 22:36:13 2011] [error] [client 127.0.0.1] FastCGI: incomplete 
headers (0 bytes) received from server C:/Program Files/Apache Software 
Foundation/Apache2.2/cgi-
bin/qgis_mapserv.fcgi.exe
[Fri Jan 07 22:36:13 2011] [warn] FastCGI: (dynamic) server C:/Program 
Files/Apache Software Foundation/Apache2.2/cgi-bin/qgis_mapserv.fcgi.exe (pid 
288) terminated with exit 
with status '-1073741515'
[Fri Jan 07 22:36:13 2011] [error] [client 127.0.0.1] File does not exist: 
C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/favicon.ico
[Fri Jan 07 22:36:18 2011] [warn] FastCGI: (dynamic) server C:/Program 
Files/Apache Software Foundation/Apache2.2/cgi-bin/qgis_mapserv.fcgi.exe 
restarted (pid 3176)
[Fri Jan 07 22:36:18 2011] [warn] FastCGI: (dynamic) server C:/Program 
Files/Apache Software Foundation/Apache2.2/cgi-bin/qgis_mapserv.fcgi.exe (pid 
3176) terminated with exit 
with status '-1073741515'

If I understand correctly, the GetOverlappedResult() failed is caused 
by non-zero exit status. Or inversely? But how to debug it? My time was over
and I hadn't write any fcgi script to ensure if mod_fastcgi is working 
properly at all.
I've downloaded it as a .dll file and dropped it into a directory with .so 
files only.
Does it make any sense? I'd love to read about it, but mod_fastcgi 
documentation 
is very mysterious... Every time I touch windows I feel like a blind child in 
a fog :)

B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Error with OpneLayers plug-in

2010-11-05 Thread Borys Jurgiel
Dnia piątek 05 listopada 2010 o 11:09:51 Manuel Spínola napisał(a):
 Thankyou very much.
 Yes, the problem was the CRS, it didn´t change automatically, I don't
 know why.
 I needed to set the project CRS and the layer CRS manually.
 Best,

You can set/correct the layer CRS permanently in Vector- Data Management 
Tools - Define current projection
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] How to make a raster or grid from a shapefile

2010-11-01 Thread Borys Jurgiel
 I want to make a grid or raster from a land us / land cover shapefile, a
 polygon with 9 categories.  I want this to model a species distribution,
 based on animal ocurrence.

You can also use menu Raster - Rasterize, unfortunately you first need an 
empty raster to burn the polygons. It calls a GDAL utility program:

http://www.gdal.org/gdal_rasterize.html

From GDAL 1.8 it will create raster files from scratch.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] How to make a raster or grid from a shapefile

2010-11-01 Thread Borys Jurgiel
Dnia poniedziałek 01 listopada 2010 o 05:06:38 Tom napisał(a):
 Why would one want to convert from vector(shape) to raster?
 Tom

Because most landscape and ecological analyses work on raster data.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] How to make a raster or grid from a shapefile

2010-11-01 Thread Borys Jurgiel
Dnia poniedziałek 01 listopada 2010 o 12:23:30 Manuel Spínola napisał(a):
 Thank you very much Borys.
 
 Is there any example in a tutorial on the use of Rasterize?

Unfortunately I don't know any and believe there's nothing like that, as 
there's no simple way to do it. You can follow this way:

1. Use Interpolation plugin to create a raster file based on your vector (I 
suppose the values will be interpolated among polygon centroids)

2. Use RasterCalc to remove values from it. You can e.g. multiply it by 0:
[your_rast...@1 * 0

3. Now use your empty raster in the Raster-Rasterize
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Installer last-minute update

2010-10-31 Thread Borys Jurgiel
Hi All, 

The installer 1.1 brings some often requested features:

- No need to restart Qgis (1.5 and above) after plugin reinstall (only if the 
plugin is currently loaded; otherwise you still have to do it)

- More robust information if an obsolete plugin masks its newer version. If 
it's the installer itself, it's being automagically removed and you're only 
asked for qgis restart.

- Removed Bob's repository, added Stefan's one

- Dropped compatibility with Qgis  1.0

Goodnight,
B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] New symbology: invert color scheme

2010-09-24 Thread Borys Jurgiel
Dnia piątek 24 września 2010 o 08:48:29 Timmie napisał(a):
 Hello,
 how can I invert a colour scheme in QGIS?
 
 I would like to have red - yellow in stead of yellow to red.

You can create color ramps in Options - Style Manager
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] New symbology: invert color scheme

2010-09-24 Thread Borys Jurgiel
Dnia piątek 24 września 2010 o 10:25:10 Borys Jurgiel napisał(a):
 Dnia piątek 24 września 2010 o 08:48:29 Timmie napisał(a):
  Hello,
  how can I invert a colour scheme in QGIS?
  
  I would like to have red - yellow in stead of yellow to red.
 
 You can create color ramps in Options - Style Manager

(in some OS / desktop environments it will be probably Edit - Style Manager 
or so)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: AW: [Qgis-user] Python not loaded on startup

2010-09-08 Thread Borys Jurgiel
Cedric,
Look into the archive, a similar problem was raised here a few months ago. 
AFAIR it was because cmake was comparing the sip versions as strings, so your 
4.10.1  4.7.1. It was fixed on the compiling stage, but seems you get it 
a step farther. 

Dnia środa 08 września 2010 o 11:39:24 Möri Cedric napisał(a):
 Okay, thanks.
 
 But where or how to get/update it? Which package is the SIP API in?
 
 If searching in synaptic for 'sip', I find the following packages
 installed: sip4, python-sip, python-sip-dev,
 python-sip-dbg,python-sip4-dev,python-sip4-dbg All of them are version
 4.10.1-0ubuntu1
 
 regards
 Cédric
 
 mit freundlichen Grüssen
 
 Cédric Möri
 GIS-Informatiker
 
 --
 Kanton Solothurn
 Bau- und Justizdepartement
 Amt für Geoinformation
 Rötistrasse 4
 4501 Solothurn
 
 Telefon: +41 (0)32 627 24 75
 Telefax: +41 (0)32 627 22 14
 mailto:cedric.mo...@bd.so.ch
 http://www.agi.so.ch
 
 
 - Originalnachricht -
 Von: Noli Sicad nsi...@gmail.com
 Gesendet: Mit, 8.9.2010 11:15
 An: Möri Cedric cedric.mo...@bd.so.ch
 Cc: qgis-user qgis-user@lists.osgeo.org
 Betreff: Re: [Qgis-user] Python not loaded on startup
 
 SIP module implements API v7.0 but the qgis.core module requires API v7.1
 
 You have get  SIP module version 7.1 as PyGIS qgis.core module requires API
 v7.1
 
 Noli
 ___
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-user
 ___
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Shapefile structure viewer and editor plugin

2010-08-26 Thread Borys Jurgiel
Dnia czwartek 26 sierpnia 2010 o 11:12:47 Benoit de Cabissole napisał(a):
 So be it!
 
 I've added it to the QGIS contributed repo and marked it as experimental.
 Its ID is: Shapefile Structure Viewer and Editor

Great! 

I felt the same fear publishing Table Manager, but I've implemented backuping 
and fortunately never heard about data loss due to using the plugin :)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Announcing ProfileFromLine plugin

2010-08-17 Thread Borys Jurgiel
Dnia wtorek 17 sierpnia 2010 o 13:56:47 Ricardo Filipe Soares Garcia da 
napisał(a):
 I am guessing you probably have the shapely lib installed from
 the repositories. I thought I had the same, but I just checked and the
 version of shapely  that is in the repos is 1.0.14-1. I must have
 installed shapely using easy_install and later forgot about it. I am
 sorry for this confusion.

It will be perfect if you add a Shapely warning message in case 
geosCAPIVersion[0]0
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Announcing ProfileFromLine plugin

2010-08-17 Thread Borys Jurgiel
Dnia wtorek 17 sierpnia 2010 o 14:28:26 Giovanni Manghi napisał(a):
 second advice: use the osgeo4w installer, it is different from what you
 may already know, but after a few tries it makes perfectly sense... as
 you have everything in may need in the same installer.

I'm not a windows user, but I'm afraid osgeo4w doesn't help in this particular 
case, as it's written here:

http://lists.osgeo.org/pipermail/qgis-user/2010-August/009351.html

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re: Available CRS's not shown with some WMS servers

2010-08-16 Thread Borys Jurgiel
Dnia poniedziałek 16 sierpnia 2010 o 12:19:43 Goyo napisał(a):
 2010/8/11 Goyo goyod...@gmail.com:
  I'm trying this server:
  http://www.idee.es/wms/PNOA/PNOA
  
  When I choose a layer the dialog says there is one CRS available but
  none is selected by default (see attached screenshot). If I press the
  Change button no CRS is available. This used to work in 1.4.0 and in
  1.5.0 after my report and the fix.
 
 I found a workarount to show the layers in this server setting the CRS
 in the properties dialog, then saving and reloading the project. Still
 QGis don't get the available CRS's from the getcapabilities document
 but I can't find anything wrong in it.

In the getcapabilities response there is a strange line:

SRSEPSG:4230 EPSG:4258 EPSG:4326 EPSG:25828 EPSG:25829 EPSG:25830 EPSG:25831 
EPSG:23029 EPSG:23030 EPSG:23031 EPSG:32628 EPSG:32629 EPSG:32630 
EPSG:32631/SRS

Personally, I've never seen a series of SRSes put together in one line. 
Usually it looks like that:

SRSEPSG:4230/SRS
SRSEPSG:4258/SRS
SRSEPSG:4326/SRS
...

Could somebody state if it breaks the OGC WMS specification or not? If not, we 
should adapt this format too.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re: Available CRS's not shown with some WMS servers

2010-08-16 Thread Borys Jurgiel
 WMS 1.1.1 Clients shall be prepared to handle either encoding.

So could you please fill a ticket on trac?

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Announcing ProfileFromLine plugin

2010-08-15 Thread Borys Jurgiel
 The reason for this is the version of GEOS and Shapely libs that are
 packaged by the osgeo4w folks are a bit older than what the plugin
 requires. I am sorry for this inconvenience. I'll open a ticket at the
 osgeo4w trac to ask for packaging of newer libs. If you feel that you
 absolutely must have this feature, try using GRASS or SAGA GIS as an
 alternative.

I believe many users use Shapely 1.0.x still, so I'd suggest to handle this 
error in more friendly manner, like:

try:
 from shapely.geos import geos_capi_version
except:
 geos_capi_version = (-1,-1,-1)

and then include it to the geosCAPIVersion tests

Thanks for the very useful plugin, anyway! It's what people often request from 
the ProfileTool (and I still hadn't any time to implement).
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] terrain profile

2010-08-13 Thread Borys Jurgiel
The crash was caused by coordinate (length, height) picker in the graph. I've 
fixed it in v 0.2.2 disabling the picker on Windows systems. Hopefully it 
isn't very painful regression.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Terrain profile crash

2010-08-13 Thread Borys Jurgiel
Dnia czwartek 12 sierpnia 2010 o 18:29:53 Gary Smith napisał(a):
 Also to confirm that the bug exists on Windows but not On linux.
 Additional information is that the crash occurs ONLY when the cursor is
 moved into the graph area. That is, on linux the cursor has the x  y
 values presented.

Thank for the investigation! I can't stop it crashing, so disabled the 
coordinate tracker on Windows. Let's wait for next Qwt5 versions.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Delete column in Attribute Table

2010-08-07 Thread Borys Jurgiel
Dnia sobota 07 sierpnia 2010 o 10:52:51 Akhilesh Gan napisał(a):
 All,
We have the Delete column feature in QGIS 1.4(Avilable in Attribute
 table and also Attribute properties)In Edit mode this button is
 not enabled. *How* *to* *delete* *column* *in* QGIS 1.4?

The button is only enabled if used data provider supports removing attributes. 
For most formats it's not supported. For Shapefiles please use Table Manager 
plugin or any spreadsheet supporting dbf files, for Postgis one of Postgis 
plugins.

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: Res: [Qgis-user] management tables

2010-08-04 Thread Borys Jurgiel
Dnia środa 04 sierpnia 2010 o 16:05:07 Giovanni Manghi napisał(a):
 Hi Dario,
 
 please keep the conversation on-list, it can be useful to others.
 
 On Wed, 2010-08-04 at 07:00 -0700, Dario wrote:
  mean the following:
  
  a field where you can insert a hyperlink to a picture or pdf or doc.
  
  For example, to view a photo of a building.
  
  Just as is done in gvSIG or KOSMOS
 
 try the edit widgets, especially the file name one. You find the
 widgets in the vector properties, attributes panel.

You can be also interested in setting an action on desired field. The action 
could e.g. call image or pdf browser. Look in layer properties.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Using Dane Springmeyer | Public Qgis Plugins in QGIS 1.4.0

2010-07-28 Thread Borys Jurgiel
Dnia środa 28 lipca 2010 o 13:20:51 Noli Sicad napisał(a):
 Hi,
 
 I am trying to use Dane Springmeyer | Public Qgis Plugins in 1.4.0
 
 http://qgis.dbsgeo.com/
 
 http://linfiniti.com/?s=mapnik
 
 The plugins doesn't registered - not displaying the repo after I add
 it and rebooting QGIS.
 
 Any ideas why?

Works perfectly hehe. Is the repo registered and available (green icon) on the 
repository list (the second tab)?

There's no need for rebooting QGIS - repositories are refreshed after any 
change in urls.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Using Dane Springmeyer | Public Qgis Plugins in QGIS 1.4.0

2010-07-28 Thread Borys Jurgiel
Dnia środa 28 lipca 2010 o 14:33:11 Noli Sicad napisał(a):
 I managed to install the 2 plugins by using one of the existing
 repositories. I just edit onerepo  and replaced source with
 http://qgis.dbsgeo.com/.
 
 This is funny install - Windows XP using the OSGeo LiveCD QGIS 1.4.0.

So this is the answer - no possibility to save settings :-)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] obsolete plugin message

2010-07-01 Thread Borys Jurgiel
Dnia wtorek, 29 czerwca 2010 o 17:30:49 napisałeś:
 one more little thing, I've started QGIS today and waited for an hour to
 show up, but it didn't, turns out it's just hidden behind other
 windows showing error message discussed here.
 
 Will it make sense if such message show up to bring it to the very
 front somehow? (Windows)

Do you mean the message encouraging to uninstall the installer update or error 
messages after doing it?

Those error messages shouldn't appear anymore, if only you keep Installer up-
to-date before upgrading Qgis to 1.5. I think it's more than a workaround of 
this problem;)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] obsolete plugin message

2010-06-29 Thread Borys Jurgiel
Dnia wtorek, 29 czerwca 2010 o 12:04:22 Vincent Schut napisał(a):
   Hi,
 
 when starting a fresh svn build of qgis, I get a message about a plugin
 being obsolete:
 
 The Plugin Installer has detected an obsolete plugin which masks a
 newer version shipped with this QGIS version. This is likely due to
 files associated with a previous installation of QGIS. Please use the
 Plugin Installer to remove that older plugin in order to unmask the
 newer version shipped with this copy of QGIS.
 
 I have many plugins installed... How would I know which one to remove?

Sorry, the plugin name isn't well exposed - it's in the title of the message 
box.

I'm sure this time it's Plugin Installer itself. Note that removing the 
installer with itself raises an error - it's ok, I've fixed this error in the 
new version, but the previous one is affected.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] obsolete plugin message

2010-06-29 Thread Borys Jurgiel
Dnia wtorek, 29 czerwca 2010 o 12:20:58 Vincent Schut napisał(a):

 Ah, and because it's the plugin installer plugin, I was thinking that
 was just the plugin issuing the message... Tricky :-)
 Removed the plugin installer, getting all kinds of errors, just closing
 qgis and restarting, and then all seems fine again.

Ok, I'll upload the fixed version as an update to protect users from the 
errors ;-)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS 1.5 Call for Translations

2010-06-21 Thread Borys Jurgiel
Dnia poniedziałek, 21 czerwca 2010 o 16:14:10 Werner Macho napisał(a):
 Hi All (and especially translators)!

Oooops, I thought the freeze will be 0:00 UTC ?

Unfortunately I'll need to introduce to the installer 2 or 3 message boxes due 
to the ongoing new repository for the 1.5
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS 1.5 Call for Translations

2010-06-21 Thread Borys Jurgiel
Dnia poniedziałek, 21 czerwca 2010 o 16:39:37 Werner Macho napisał(a):
 Well ..
 
 I think it's not THAT important - and i can update strings later again
 .. but today is 21.06 ;) You know - it's like Linus Torvalds and his 2
 week merge window - He also tries to vary the time a bit so that not
 all developers come with their patches last minute *gg*
 
 Just do your changes and I'll go with another string update at 23:59 ;)

Well, the call is the call and it's not good to desynchronize the translation 
after that. We just need to set more precise deadlines in the future :)

Unfortunately I'm not one of them who can afford to do anything not in the 
last minute ;-p 
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] table manager news

2010-06-17 Thread Borys Jurgiel
Thanks to a patch from Santiago Banchero, now it's possible to remove multiple 
columns at once. Thanks a lot!
B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] icons for the vector/ftools toolbox?

2010-06-16 Thread Borys Jurgiel
Dnia środa, 16 czerwca 2010 o 11:45:28 maning sambale napisał(a):
 They are not available in the qgis icons folder in the svn.
 
 Will be used for training tutorials.

They are here:
python/plugins/fTools/icons/

Cheers,
B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re:removing qgis

2010-06-13 Thread Borys Jurgiel
Dnia niedziela, 13 czerwca 2010 o 14:33:50 Andrea Peri 2007 napisał(a):
 Where can be found the qgis.conf in windows installation ?

In the registry. Search for QuantumGIS - QGIS branches.

B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Re: [Qgis-developer] QGIS plugin repo [was: Value Tool]

2010-06-13 Thread Borys Jurgiel
 I've brought this up several times in the past too. Something similar to
 http://trac-hacks.org would be great, especially if we can integrate it
 with pyqgis.org so that you could click through the web to release a new
 version to the xml repos.

Of course, it should be integrated. But it must be disputed how to trigger the 
release? Also, how to maintain multiple versions? E.g. one stable and one 
development. Should they be maintained in separate directories? If so, a 
synchronization tool would be nice... A lot of questions, but I believe 
there's a good basis in the end :)

 I'll look into options, that would allow plugin authors or qgis devs to
 grant access to plugins in an easy manner (through the web).

It's essential :)

 Would it make sense to do something more similar to github/bitbucket
 where anyone can branch anyone else's stuff there just needs to be
 cooperation to merge back?

Won't it result with still growing number of branches? I think it's not 
necessary, I prefer the previous idea. Witch svn, everyone can just send a 
patch to the author.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] removing qgis

2010-06-12 Thread Borys Jurgiel
Dnia sobota, 12 czerwca 2010 o 17:28:28 Micha Silver napisał(a):
 It might be some plugin that's giving problems. Plugins get stored in
 ~/.qgis
 If you delete that directory in addition to removing qgis, you should be
 back to square one. But You'll have to reinstall plugins after qgis is
 working again.

There's also one file:

~/.config/QuantumGIS/QGIS.conf

and removing this one is more important then purging qgis installation.


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] TIFF style problem

2010-06-11 Thread Borys Jurgiel
Dnia piątek, 11 czerwca 2010 o 11:07:04 Milena Nowotarska napisał(a):
 Hi Błażej,
 
 W dniu 11 czerwca 2010 11:00 użytkownik Błażej Zamojski
 
 b...@green-power.com.pl napisał:
  Hi!
  I have problem with TIFFs style in QGIS 1.4 (Vista). They have
  different shapes and around them there is no data (visible as black).
  When I'm puting 0 in properties in field where should be a value of no
  data I am loosing not only black frame but some pixels in the raster.
  It doesnt happend with all rasters. Anyone had the same problem? I
  tried to import styles from rasters without the problem, but it didn't
  work.
 
 Have you tried MultiQml plugin for changing styles? For me it works fine.


I think it's not the point. The problem is probably in this bug:

https://trac.osgeo.org/qgis/ticket/2491

Note that if you set nodata to 0, all cells with 0 value get transludent, no 
matter where they are.

B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] TIFF style problem

2010-06-11 Thread Borys Jurgiel
 @Borys: it might be related to #2491, but in this case transparency
 works. I am in this good situation, that on my maps no data is white,
 so setting transparency do them no harm.

Unless you have white pixels within the data area :p

 @Błażej: you can also edit black areas with any non-gis-related raster
 tool, set them white and then open in QGIS and set transparency. Just
 an old trick ;)

It's not a solution, it's heresy ;)) Nodata means nodata and nothing else. For 
formats not supporting nodata (like geoTIFF) there are two workarounds and 
both should work.

One of them is adding the alpha channel and setting it to 0, the second is to 
choose any non used value as the representative of nodata. If Błażej's files 
have 0 value used for both nodata and some data, I suppose there is also the 
alpha channel used and it should be handled by qgis.

But it isn't and we could fix it. Looks like a good start for you to work with 
cpp issues. Just set up the compile environment in the end :p

B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] TIFF style problem

2010-06-11 Thread Borys Jurgiel
 no idea if that's qgis or gdal issue though...

It's unfinshed implementation in qgis :)
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Find By Attribute 0.4/0.4.1 broken metadata

2010-05-15 Thread Borys Jurgiel
Please correct the version number. Let's test our plugins *ALWAYS* right after 
uploading, please.

B.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re: Installation of QGIS using Ubuntu Synaptic Package Manager

2010-05-06 Thread Borys Jurgiel
  Unfortunely I didn't saved the text into a log file.

You can run it again :)

  Finally, make install installs the compiled .so libraries (e.g.
  libgrassplugin.so) in /lib/qgis/ within your destination folder, so
  usually in /usr/local/lib/qgis/
 
  At that folder I only have :
 libgrassplugin.so and libgrassprovider.so
 libqgisgrass.so, libgrassrasterprovider.so are not there.

Now i see my grass doesn't work too (although it loads and looks ok, it can't 
load any layer nor run any module)...
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


  1   2   3   >