Re: [Qgis-user] questions about the FOSSGIS 2013 benchmark comparisons between QGIS Server and UMN Mapserver

2013-06-24 Thread G. Allegri
Thanks Marco. Caching, caching and caching :)
Next days I'm going to setup a QGIS server from master to test the
improvements. I will also test its behaviour behind a MapProxy instance
with tiling and a complex labeled layer, to see the outputs with meta
tiling and tile buffering. I'm gonna stress it!

giovanni

2013/6/22 Marco Hugentobler marco.hugentob...@sourcepole.ch

 It is important that you test QGIS master not QGIS 1.8. QGIS 1.8 was
 definitely slower than UMN, but in master there are performance
 improvements in the server part. Marco knows the details.

 There have been a lot of performance improvements in QGIS core (e.g. the
 new raster system, svg cache, more performant coordinate reprojection, CRS
 and Coordinate transform cache, project file cache, ...).

 Nore that the benchmark especially measures the scalability of the WMS
 server (many concurrent requests). For scalability, it is important that as
 much is CPU-based and data comes from RAM rather than from disk. While a
 desktop user e.g. does not notice a request to the sqlite DB to lookup a
 CRS definition, this small disk access had a big impact on scalability.
 Similarly for SVG files, project files, coordinate transformations. All
 these things are cached now on first usage.

 Regards,
 Marco


 On 21.06.2013 13:10, Andreas Neumann wrote:

 Hi Giovanni,

 It is important that you test QGIS master not QGIS 1.8. QGIS 1.8 was
 definitely slower than UMN, but in master there are performance
 improvements in the server part. Marco knows the details.

 Andreas

 On Fri, 21 Jun 2013 12:09:18 +0200, G. Allegri wrote:

 Hi,
 I was reading the graphs (I do not understand german, sorry) of the
 slides from Sourcepole about their banchmarks [1].
 I was surprised to see how QGIS Server outperforms UMN Mapserver,
 because my experience was different. I haven't done comparisons in the
 last months. In the past performances didn't appear better then
 Mapserver.

 Marco (and the ohters from Sourcepole), could you share the
 configurations adopted for the benchmark? Hardware, http server
 configuration, caching, tiling, etc.? Something is written inside the
 PDF, but Google Translator isn't doing a great work :(

 Thanks a lot,
 Giovanni


 [1] http://sourcepole.ch/assets/**2013/6/17/fossgis_2013_**
 performanceoptimierte_wms_**dienste.pdfhttp://sourcepole.ch/assets/2013/6/17/fossgis_2013_performanceoptimierte_wms_dienste.pdf
 [1]




 --
 Dr. Marco Hugentobler
 Sourcepole -  Linux  Open Source Solutions
 Weberstrasse 5, CH-8004 Zürich, Switzerland
 marco.hugentobler@sourcepole.**ch marco.hugentob...@sourcepole.ch
 http://www.sourcepole.ch
 Technical Advisor QGIS Project Steering Committee


 __**_
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/**mailman/listinfo/qgis-userhttp://lists.osgeo.org/mailman/listinfo/qgis-user




-- 
Giovanni Allegri
http://about.me/giovanniallegri
blog: http://blog.spaziogis.it
GEO+ geomatica in Italia http://bit.ly/GEOplus
___
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 Vincent Damoy

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()):

I've corrected this typo, then uptaded problematic packages (especially 
python-qgis-common).

There was no problem any more with updates.
Hope this helps!

Regards,
Vincent


--

---

Vincent Damoy - Responsable SIG
Conservatoire d'Espaces Naturels du Nord et du Pas-de-Calais
152 bd de Paris - 62190 Lillers
Tél : 03.21.54.75.00 - Fax : 03.21.54.56.07
/*Pour adhérer au Conservatoire :* 
www.cen-npdc.org/nous-rejoindre/adherent.html/ 	




	/Pour le respect de l'environnement, n'imprimez ce message qu'en cas de 
nécessité !/ 	



Le 22/06/2013 10:12, Nick Hopton a écrit :

QGIS Master from the nightly repository, Ubuntu 12.04 (amd64).

Hi All,

There were problems with this morning's upgrade (and yesterday's too) with
python-qgis-common and python-qgis:

pycentral: pycentral pkginstall: error byte-compiling files (549)
pycentral pkginstall: error byte-compiling files (549)
dpkg: error processing python-qgis-common (--configure):
  subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of python-qgis:
  python-qgis depends on python-qgis-common (=
1.9.0+git20130618+59fd5e0~precise1); however:
   Package python-qgis-common is not configured yet.
dpkg: error processing python-qgis (--configure):
  dependency problems - leaving unconfigured
No apport report written because the error message indicates it's a
follow-up error from a previous failure.
 Errors were encountered while processing:
  python-qgis-common
  python-qgis
E: Sub-process /usr/bin/dpkg returned an error code (1)

Regards,
Nick.



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/QGIS-Master-dependency-problem-tp5061716.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
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 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


[Qgis-user] How to display point symbols on top of labels

2013-06-24 Thread Daniel . Gnerre
Hi all

I'm using new labelling (from layer menu, not from layer properties) to 
show street names. On the same map, I have defined symbols on a point 
layer. Is it possible to display point symbols on top of street names ? In 
my case, street names are always drawn on top of all other map objects. 

Thanks

Daniel 

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


[Qgis-user] Binary hillshad raster for sunpower plant

2013-06-24 Thread venerio giuseppe anardu
Hello to everybody,

I have to prepair simulations for a sunpower plant in project, considering the 
areas in shadow in the plant in certain sample days of the year in the whole 
day. The use of the plugin Hillshade is very easy to understand, but I cannot 
understand how to obtain a binary raster with value 1 for pixels in shade 
(colored in black) and 0 for the others (to see them transparent). I did it few 
years ago with ArcGIS the same task and it was really simple to achieve the 
desired result, while the same result with QGIS seems to me not so easy to 
do... Can anybody tell me how to do it?

Thank you in advance for your help,

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


[Qgis-user] [SEXTANTE] ogr2ogr module

2013-06-24 Thread Yves Jacolin (Free)
Hello,

I am playing with ogr2ogr module in a SEXTANTE model. It asks me a data 
creation option, but I haven't any one to add. Some driver have no DCO see [1] 
for instance.

Any idea?

Thanks,

Y.
[1] http://www.gdal.org/ogr/drv_shapefile.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] MS SQL Server

2013-06-24 Thread Morgan, David
If you have received this email in error, please notify us by telephone on 
01437 764551 and delete it from your computer immediately. Os ydych chi wedi 
derbyn yr e-bost hwn trwy gamgymeriad, byddwch cystal â rhoi gwybod inni trwy 
ffonio 01437 764551. Wedyn dylech ddileu’r e-bost ar unwaith oddi ar eich 
cyfrifiadur.


Mark

Assuming you have a correct entry in your geometry_columns table, you
may also need to add a unique, numeric 'key' column to your database
table. When I have had problems in the past loading SQL Server tables
into QGIS, not having a unique identifier has usually been the problem. 

Dave

Date: Fri, 21 Jun 2013 19:56:51 +
From: Mark Paulson ma...@proseals.com
To: qgis-user@lists.osgeo.org qgis-user@lists.osgeo.org
Subject: [Qgis-user] MS SQL Server
Message-ID: cdea1a31.2fc16%ma...@proseals.com
Content-Type: text/plain; charset=us-ascii

I have a table in MS SQL Server that was converted from a shape file and
works fine is GeoServer that cause an error when I try to addict to
QGIS. The funny think is that I can add table from my MS SQL server
ArcSDE database. I'm just getting started so please forgive me if this
has been answered previously

Thanks
Mark
***

**

This document should only be read by those persons to whom it is addressed, and 
be used by them for its intended purpose; and must not otherwise be reproduced, 
copied, disseminated, disclosed, modified, distributed, published or actioned. 
If you have received this email in error, please notify us immediately by 
telephone on 01437 764551 and delete it from your computer immediately. This 
email address must not be passed on to any third party nor be used for any 
other purpose.

Pembrokeshire County Council Website - http://www.pembrokeshire.gov.uk

Please Note: Incoming and outgoing e-mail messages are routinely monitored for 
compliance with our IT Security, and Email/Internet Policy.

This signature also confirms that this email message has been swept for the 
presence of computer viruses and malicious code.

***

Dim ond y sawl y mae'r ddogfen hon wedi'i chyfeirio atynt ddylai ei darllen, 
a'i defnyddio ganddynt ar gyfer ei dibenion bwriadedig; ac ni ddylid fel arall 
ei hatgynhyrchu, copio, lledaenu, datgelu, addasu, dosbarthu, cyhoeddi na'i 
rhoi ar waith chwaith. Os ydych chi wedi derbyn yr e-bost hwn trwy gamgymeriad, 
byddwch cystal a rhoi gwybod i ni ar unwaith trwy ffonio 01437 764551 a'i 
ddileu oddi ar eich cyfrifiadur ar unwaith. Ni ddylid rhoi'r cyfeiriad e-bost i 
unrhyw drydydd parti na'i ddefnyddio ar gyfer unrhyw ddiben arall chwaith.

Gwefan Cyngor Sir Penfro - http://www.pembrokeshire.gov.uk

Sylwer: Mae negeseuon e-bost sy’n cael eu hanfon a’u derbyn yn cael eu 
monitro’n rheolaidd ar gyfer cydymffurfio â’n Diogelwch TG, a’n Polisi 
E-bost/Rhyngrwyd.

Mae'r llofnod hwn hefyd yn cadarnhau bod y neges e-bost hon wedi cael ei 
harchwilio am fodolaeth firysau cyfrifiadurol a chod maleisus.

***

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


[Qgis-user] QGIS master packages for opensuse

2013-06-24 Thread Otto Dassau
Hi,

for testing and bug hunting I added QGIS master packages to the
Application:Geo repository for opensuse. You can install them as qgis2
package. They are not build automatically, but I will try to update
regularly.

http://hub.qgis.org/wiki/quantum-gis/Download#24-openSUSE

Regards
Otto 
___
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 Nick Hopton
Thanks all, that fixed the problem.

Nick.



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/QGIS-Master-dependency-problem-tp5061716p5061972.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user