[Qgis-user] Plug-ins v 3.30

2023-03-05 Thread Grant Boxer via QGIS-User
The plug-in repository link is now fixed but I get a huge number of "new"
plug-ins and the "sagaprovider" is invalid.

Cheers Grant Boxer

Perth WA

 

 

___
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] 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


[Qgis-user] Plug-ins

2012-04-06 Thread Elvin Birth
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? 

Thank you for any advice, Elvin 
Birth___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] plug-ins

2008-10-21 Thread Chang, Elizabeth
I'm trying to install any of the following 3 plugins in a Windows XP
machine.

 

-  PostGPS

-  NewLayer

-  Pypostgis

 

For each of them, there is some dependency I can't find in a windows
version or just not recognizing them if they are there. I was wondering
if there are people who have been successful installing these in Windows
and if so, if you also had problems installing.

 

 

Thanks,

Elizabeth

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


Re: [Qgis-user] plug-ins

2008-10-21 Thread Richard Duivenvoorde


Hi,

what versions are you running?

I'm running here on winXP, qgis 0.11 (metis). You should not try out 
python plugins in 1.0 preview yet because the api is still moving on, 
thereby making some plugins look buggy (while they were working a few 
svn-versions ago ;-) ).


Anyway,

On 0.11/XP I am able to install PostGPS fine, it doesn't look to have 
dependecies here... Mmm, nope it needs psycopg2, and apparently it's 
installed in my python. But you can find it here:

http://www.stickpeople.com/projects/python/win-psycopg/#Version1

NewLayer has indeed a psycopg dependency. For windows you can find 
packages here: 
http://www.stickpeople.com/projects/python/win-psycopg/#Version1
But probably you have a more current postgis version then psycopg 
handles, so maybe it's a nice starting project to 'port' it to psycopg2 
:-) (shouldn't be that much trouble, start with changing all 'psycopg' 
in 'psycopg2' in newlayer.py...).


(by the way, psycopg(2) are python packages, needed to make 
python-database connections to postgis.


Pypostgis has gdal-dependencies, but I have no experience with that on 
windows. Hopefully others have.


Good Luck,

Richard Duivenvoorde


Chang, Elizabeth wrote:
I’m trying to install any of the following 3 plugins in a Windows XP 
machine.


 


-  PostGPS

-  NewLayer

-  Pypostgis

 

For each of them, there is some dependency I can’t find in a windows 
version or just not recognizing them if they are there. I was wondering 
if there are people who have been successful installing these in Windows 
and if so, if you also had problems installing.


 

 


Thanks,

Elizabeth




___
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] plug-ins

2008-10-21 Thread Chang, Elizabeth

I was running 1.0 but I just switched to 0.11 and had some luck with New
Layer plug-in after installing psycopg version 1. Thanks for the tip.

It installed successfully but when I tried to connect to my database, I
got an error, I think, due to PostGIS being on a Linux server, not my
machine.

An error has occured while executing Python code:

Traceback (most recent call last):
  File C:/Documents and
Settings/m29308/.qgis//python/plugins\newlayer\newlayer.py, line 50, in
run
con = psycopg.connect(str(dsn[0]))
OperationalError: could not connect to server: Connection refused
(0x274D/10061)
Is the server running on host ??? and accepting
TCP/IP connections on port 5432?
___


For the PostGPS plugin that needs psycopg2, is the psycopg and psycopg2
module version 1, and version 2, respectively? When I downloaded psycopg
v. 2.0.8 from the stickpeople site, I didn't see any modules called
psycopg2. There were some files called psycopg1.p* under a directory
called psychopg2. 

Thanks so much for your help.

Elizabeth


-Original Message-
From: Richard Duivenvoorde [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 21, 2008 4:40 PM
To: Chang, Elizabeth
Cc: qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] plug-ins


Hi,

what versions are you running?

I'm running here on winXP, qgis 0.11 (metis). You should not try out 
python plugins in 1.0 preview yet because the api is still moving on, 
thereby making some plugins look buggy (while they were working a few 
svn-versions ago ;-) ).

Anyway,

On 0.11/XP I am able to install PostGPS fine, it doesn't look to have 
dependecies here... Mmm, nope it needs psycopg2, and apparently it's 
installed in my python. But you can find it here:
http://www.stickpeople.com/projects/python/win-psycopg/#Version1

NewLayer has indeed a psycopg dependency. For windows you can find 
packages here: 
http://www.stickpeople.com/projects/python/win-psycopg/#Version1
But probably you have a more current postgis version then psycopg 
handles, so maybe it's a nice starting project to 'port' it to psycopg2 
:-) (shouldn't be that much trouble, start with changing all 'psycopg' 
in 'psycopg2' in newlayer.py...).

(by the way, psycopg(2) are python packages, needed to make 
python-database connections to postgis.

Pypostgis has gdal-dependencies, but I have no experience with that on 
windows. Hopefully others have.

Good Luck,

Richard Duivenvoorde


Chang, Elizabeth wrote:
 I'm trying to install any of the following 3 plugins in a Windows XP 
 machine.
 
  
 
 -  PostGPS
 
 -  NewLayer
 
 -  Pypostgis
 
  
 
 For each of them, there is some dependency I can't find in a windows 
 version or just not recognizing them if they are there. I was
wondering 
 if there are people who have been successful installing these in
Windows 
 and if so, if you also had problems installing.
 
  
 
  
 
 Thanks,
 
 Elizabeth
 
 


 
 ___
 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