[Qgis-user] Ipython console not running in QGIS 2.12, not recognizing ipython 3.1.0 is installed

2015-12-06 Thread jessetaylor84
I am trying to run the Ipython console plugin in QGIS 2.12 After installing the plugin, I tried running it, and got the following error: You need to install IPython 3.1.0 (and then restart QGIS) before running this IPyConsole plugin. IPython can be installed with pip install

Re: [Qgis-user] QGIS project slow to open when too much wms layers

2015-12-06 Thread Sandro Santilli
On Sun, Dec 06, 2015 at 02:31:52PM +0100, aperi2007 wrote: > Also I guess a the time lost is not only the request/response time, but also > the parsing time of the response. > A cache do not help on this. It can ! Depending on what you cache, you may save either (or both) download and parse

Re: [Qgis-user] QGIS project slow to open when too much wms layers

2015-12-06 Thread aperi2007
Of course, but the result of the parsing of the getcapabilities response is an umpredictable set of results. So it is very hard to store in a structured cache (aka a db). In a response capabilities of a wms 3.0 thereis many information , all in multeplicitly N. And often optionally. Also

Re: [Qgis-user] QGIS project slow to open when too much wms layers

2015-12-06 Thread kimaidou
Hi all Why not "just" caching the getCapabilities response for the current QGIS session ? This way, if you have 100 layers coming from the same WMS server, only one request will be made when opening the project and the response will be stored in cache and used for other layers. Please open a

Re: [Qgis-user] QGIS project slow to open when too much wms layers

2015-12-06 Thread aperi2007
Hi, When need to add a new wms layer is preferrable to avoid to use the cache but, instead, do a new getcapabilities request and list the layers as resulted by the xml response . Also I guess a the time lost is not only the request/response time, but also the parsing time of the response. A

[Qgis-user] Generalizar mapa de pendientes en QGIS

2015-12-06 Thread Eddison Araya
Hola amigos (as) he realizado un mapa de pendientes del terreno en porcentaje. El mapa tiene un tamaño de pixel de 10 * 10 metros y deseo "generalizarlo a unidades mínimas cartográficas (UMC) de 1 hectárea y eliminar todos los pixeles muy diminutos que tiene la imagen. Como puedo realizar esa

Re: [Qgis-user] QGIS project slow to open when too much wms layers

2015-12-06 Thread Nyall Dawson
On 7 December 2015 at 00:31, aperi2007 wrote: > Hi, > > When need to add a new wms layer is preferrable to avoid to use the cache > but, instead, do a new getcapabilities request and list the layers as > resulted by the xml response . > Also I guess a the time lost is not