Re: [Qgis-user] Population genetic data depicted with pie chart QGIS

2016-06-29 Thread Richard McDonnell

Giulia,
Not used it much, but had a look in *Layer Properties* under *Diagrams*, 
This will allow you to create Pie Charts you are looking for, in 
relation to size, you may have to play around with the settings, but 
there is a *Size* tab in diagrams, utilise *Scaled size*, pick your 
corresponding *Attribute*, click *Find* beside *Maximum Value* and set 
your *Size* *Scale* factor. Hope that helps!!


Regards,

Richard.



On 29/06/2016 15:03, Giulia Valvassori wrote:

Dear all,

I would like to use qgis to depict data derived from population 
genetic analysis.
I'm working with 7 different txt files (one for each sampling 
location) with information relative to:

-latitude of the sampling location
-longitude of the sampling locaction
-genetic clades identified in each sampling location
-n° of individuals belonging to each clade

I would like that each sampling location/txt file has got a pie chart 
as marker with slice of different colours (according to the differents 
clades) and different size (according to the number of individulas for 
each clade).


I'm working in a Windows 10 laptop with QGIS 2.14.2 Essen.
Is there anyone that can explain me how to do it?

Thank you very much in advance.
Best regards,
Giulia


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


--
*_Richard McDonnell_*
*GIS Specialist PgD GIS AssocSCSI*
*OPW FRM Data Management*
*52 Stephens Green, Dublin 2.*
TEL: 01 6476543

OPW - Ag féachaint don am atá le teacht - Ag caomhnú ón am atá thart
OPW - Looking to the future - Caring for the past

***
Email Disclaimer: http://www.opw.ie/en/disclaimer/

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

Re: [QGIS-it-user] Errore plugin pyarchinit

2016-06-29 Thread pyArchInit ArcheoImagineers
La colpa è del mio Plugin invece!!! Non ho fatto in modo che i parametri di
connessione cambino quando ci si disconnette dalla rete.

Purtroppo al momento l'unico modo di far ripartire il plugin è eliminare il
file config.cfg che è presente dentro alla cartella pyarchinit_DB_folder
Ciao
Luca
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] Perth West Aust Users Request [SEC=UNCLASSIFIED]

2016-06-29 Thread Ramon Andiñach
Yes,  noted, and I'm very happy to see it. It's a very nice bit of software. 

I understand DPaW is also making extensive use of QGIS too.

-ramon.

> On 29 Jun 2016, at 08:25, Bruce Bannerman  wrote:
> 
> @Ramon,
> 
> You'll find that QGIS is being used in increasingly wider circles.
> 
> We are using it at the Australian Bureau of Meteorology as one of our Desktop 
> GIS products. I know of others in other departments in Federal and State 
> government as well.
> 
> 
> @Grant,
> 
> Also try asking on the OSGeo AustNZ list [1]. The list is fairly quiet, but 
> there are many people on it.
> 
> Bruce
> 
> [1] http://lists.osgeo.org/listinfo/aust-nz 
> 
> 
> From: Qgis-user  on behalf of Ramon 
> Andiñach 
> Sent: Tuesday, 28 June 2016 5:37 PM
> To: Grant Boxer
> Cc: qgis-user@lists.osgeo.org
> Subject: Re: [Qgis-user] Perth West Aust Users Request
> 
> Hi Grant,
> 
> 
> Not in Perth, but in your workspace.
> 
> My sense is that most QGIS users in Aus are in local government - but there 
> is a small chance that this is sample bias due to being at workshops 
> organised by DMS.
> 
> Have you tried asking on the Aus-NZ mailing list? 
> (https://groups.google.com/forum/#!forum/australian-qgis-user-group)
> 
> -ramon.
> 
>> On 27/06/2016, at 13:22 , Grant Boxer wrote:
>> 
>> I am seeking other users of QGIS in Perth, Western Australia, with a view to 
>> setting up a seminar on QGIS, with particular emphasis on the mining and 
>> exploration sector. It would be good to get an idea of how many QGIS users 
>> there are here in WA and in what industries. Replies can be made by email if 
>> preferred (box...@iinet.net.au).
>> 
>> Grant Boxer
>> Perth, Western Australia
>> 
>> ___
>> Qgis-user mailing list
>> Qgis-user@lists.osgeo.org
>> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
>> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user
> 
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

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

Re: [Qgis-user] qgscodeeditorhtml (used in lizmap plugin) missing in ubuntu trusty qgis 2.14.3 package

2016-06-29 Thread Daniel Vicente Lühr Sierra
In case anyone is interested, I have made some few tests (with success) 
adding a fallback line into qgis.gui.__init__.py:


try:
from qgis._gui import QgsCodeEditor
except:
from CodeEditorPatch import *

CodeEditorPatch is a "pure-python" module which mimics the CodeEditor 
class (and derivatives) implementation as much as possible (there are 
two workarounds for some event handling issues which I haven't been able 
incorporate without errors, and there is some code regarding case 
sensitivity for the SQL editor, which apparently is not possible/needed 
to implement in python).


I think this patch is appealing, because it will provide a (temporal) 
centralized solution, without having to modify each plugin which decides 
to use these classes. Also, it will target two active ubuntu LTRs (12.04 
and 14.04) plus some debian and mint versions.


The moment the missing sip files in qscintilla issue is fixed, this 
patch can be removed.


If someone is interested in the module I can share the code, or I guess 
I could make a pull-request if some people think it is a good idea.


Regards,

El 24/06/16 a las 20:22, Daniel Vicente Lühr Sierra escribió:


Hi,


El 24/06/16 a las 18:35, Jürgen E. Fischer escribió:

Hi Daniel,

On Fri, 24. Jun 2016 at 18:03:01 -0400, Daniel Vicente Lühr Sierra wrote:

I noticed that the qgscodeeditor python class is not available in (my
installation of) trusty's qgis-2.14.3 packages (from repository with
ubuntugis dependencies), but it is available in xenial's qgis-2.14.3
(from repository without ubuntugis dependencies).

That's because of missing qsci sip files in trusty.  See #12011[0]

Missed this one.

db_manager uses a workaround that could probably be adapted for
the lizmap plugin too.
I found it too, and I was testing some alternative. I was able to call 
the Scintilla editor directly in python and set it up for HTML syntax 
(2 lines of code). Could it be a fallback for the PyQgis API, when the 
c++ signatures fail? Because, even though the sip files  might not be 
present, the python scintilla class is available, and it could work 
for all QgsCodeEditor derived classes.


Thanks.

Jürgen


[0]http://hub.qgis.org/issues/12011



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


--
Daniel Vicente Lühr Sierra
IEEE Member
IEEE Student Branch Counselor - Universidad Austral de Chile



--
Daniel Vicente Lühr Sierra
IEEE Member
IEEE UACh Student Branch Counselor

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

[Qgis-user] Population genetic data depicted with pie chart QGIS

2016-06-29 Thread Giulia Valvassori
Dear all,

I would like to use qgis to depict data derived from population genetic
analysis.
I'm working with 7 different txt files (one for each sampling location)
with information relative to:
-latitude of the sampling location
-longitude of the sampling locaction
-genetic clades identified in each sampling location
-n° of individuals belonging to each clade

I would like that each sampling location/txt file has got a pie chart as
marker with slice of different colours (according to the differents clades)
and different size (according to the number of individulas for each clade).

I'm working in a Windows 10 laptop with QGIS 2.14.2 Essen.
Is there anyone that can explain me how to do it?

Thank you very much in advance.
Best regards,
Giulia
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Issue with W10 & GPS

2016-06-29 Thread João Gaspar
Hi Brice,


Hi team,
>
>
>
> Complementary information : user has installed latest 2.14.3 Version +
> OSGeo4W.
>
>
>
>
>
>
> Hi,
>
>
>
> One of my customer using QGIS on a Dell Rugged material has some issues.
> Running on a W10 OS.
>
>
>
> We would like to know is the “MAP” native option in W10 has to be
> compulsory turned on ?
>
>
>
> Problem is quite simple : GPS is working properly (we have a GPS signal on
> the screen) but unfortunately, not sending any position and not moving when
> user is physically moving.
>
>
>
>
What happen when you click the button Connect in the Information GPS Panel?
Is connected successfully (green state)?

Did you have more than an app in system accessing to the GPS port?

In my case, GPS port work per app, if you need more then one app using GPS
port you need to clone the port with app like localizer (
https://www.centrafuse.com/us/newproducts) or gpsgate (
http://gpsgate.com/products/gpsgate_client)


I hope this help.

Regards
João


> Many thanks for your help, I remain at your disposal is more information
> are needed.
>
>
>
> Kind Regards,
>
>
>
> Bien cordialement,
>
>
>
>
>
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Next LTR RElease

2016-06-29 Thread Jürgen E . Fischer
Hi Matthias,

On Wed, 29. Jun 2016 at 14:22:09 +0200, Matthias Kuhn wrote:
> The update on the page should happen in a week. My point of view
> regarding this topic can be found here:
> http://gis.stackexchange.com/a/188243/9839

This is somewhat like our "late" release announcements.   We (now) announce
when binaries are available and not when the actual release happens (ie.
release branch, release tag, tarball).

And the website names the version LTR that is in the LTR package repositries
and not the one that is in the regular repositories - although it currently is
a LTR as well.

And that the new LTR (that didn't see any extra maintanance yet) doesn't
replace the old LTR right away was a conscious decision - but a bit influenced
by the build scripts usually dealing with two different parallel releases and
resolving what to do when there's just one.   Doing it like this IMHO is better
than just leaving one repository age or feeding both with same stuff.


Jürgen

-- 
Jürgen E. Fischer   norBIT GmbH Tel. +49-4931-918175-31
Dipl.-Inf. (FH) Rheinstraße 13  Fax. +49-4931-918175-50
Software Engineer   D-26506 Norden http://www.norbit.de
QGIS release manager (PSC)  GermanyIRC: jef on FreeNode 



pgpteqo_vVNB9.pgp
Description: PGP signature
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Issue with W10 & GPS

2016-06-29 Thread Brice_Lacroix
Hi team,

Complementary information : user has installed latest 2.14.3 Version + OSGeo4W.

May that help us regarding our issue ?

Thanks again,
Kind Regards
Bien cordialement,

[cid:image007.jpg@01CFCDE9.F822FBB0]

Brice Lacroix
Ingénieur Commercial
Dell | Grands Comptes Privés Rhône-Alpes
Tél: 04 99 75 84 38
Email : brice_lacr...@dell.com

[cid:image007.png@01D11821.1D364BA0]
P Pensez à l'environnement avant d'imprimer ce mail





From: Lacroix, Brice
Sent: Friday, June 24, 2016 6:00 PM
To: 'qgis-user@lists.osgeo.org' 
Cc: 'Patrice LAMBERT' 
Subject: Issue with W10 & GPS

Hi,

One of my customer using QGIS on a Dell Rugged material has some issues. 
Running on a W10 OS.

We would like to know is the "MAP" native option in W10 has to be compulsory 
turned on ?

Problem is quite simple : GPS is working properly (we have a GPS signal on the 
screen) but unfortunately, not sending any position and not moving when user is 
physically moving.

Did you get similar issues ? And do you know how to fix it ?

Many thanks for your help, I remain at your disposal is more information are 
needed.

Kind Regards,

Bien cordialement,

[cid:image007.jpg@01CFCDE9.F822FBB0]

Brice Lacroix
Ingénieur Commercial
Dell | Grands Comptes Privés Rhône-Alpes
Tél: 04 99 75 84 38
Email : brice_lacr...@dell.com

[cid:image007.png@01D11821.1D364BA0]
P Pensez à l'environnement avant d'imprimer ce mail

Dell S.A, Siège Social 1 rond point Benjamin Franklin 34000 Montpellier.
Capital 1,782,769 Euros, 351 528 229 RCS Montpellier –APE 4651Z -TVA 
Intracommunautaire FR 20 351 528 229, SIRET 351 528 229 00088
Vat Number : FR 20351528229 (France) /  IT1709997 (Italy) / ESN0012622G 
(Spain)___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Next LTR RElease

2016-06-29 Thread Neumann, Andreas
Hi, 

There is a lot of confusion around the LTR version. Just to make it
clear: 2.14 will be advertised as LTR when 2.16 is released. The reason
is, that in order to be stable enough to be called an LTR it should
receive 2-3 bug fixing rounds. Many bug fixes that go into 2.16 are also
backported to 2.14x. 

So expect 2.14 to be advertised as LTR once 2.16 is out - probably in
the second week of July. 

Hope this helps to clarify. 

Andreas 

On 2016-06-29 14:08, Jonathan Moules wrote:

> 2.14 is an LTR? On the QGIS home page under the big Download Now button it 
> says:
> 
> "Version 2.14.3 
> LTR Version 2.8.9"
> 
> I'd suggest that should probably be updated to state that 2.14 is an LTR too.
> Cheers,
> Jonathan
> 
>  On Tue, 28 Jun 2016 13:22:58 +0100 JÜRGEN E. FISCHER 
> wrote  
> 
>> Hi Tyler, 
>> 
>> On Tue, 28. Jun 2016 at 08:52:28 -0300, Tyler Veinot wrote: 
>>> Hi, just wondering if anyone has an idea as to when the next LTR will be 
>>> released. I was looking at the QGIS road map and from what I can tell LTR 
>>> 2.14 was planned to be released 26 Feb 2016, I know plans change so I am 
>>> wondering if there is a new ETA? 
>> 
>> 2.14 was released in February and is the current LTR (ie. gets backports). 
>> But 
>> hasn't yet replaced the previous LTR in the repositories. That will happen 
>> when 2.16 is released and "fresh" 2.14 has seen four month of maintanance. 
>> 
>> Jürgen 
>> 
>> -- 
>> Jürgen E. Fischer norBIT GmbH Tel. +49-4931-918175-31 
>> Dipl.-Inf. (FH) Rheinstraße 13 Fax. +49-4931-918175-50 
>> Software Engineer D-26506 Norden http://www.norbit.de 
>> QGIS release manager (PSC) Germany IRC: jef on FreeNode 
>> ___
>> Qgis-user mailing list
>> Qgis-user@lists.osgeo.org
>> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
>> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user
> 
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

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

Re: [Qgis-user] Next LTR RElease

2016-06-29 Thread Matthias Kuhn
Hi Jonathan,

You can find the roadmap here, yes 2.14 is an LTR.
https://www.qgis.org/en/site/getinvolved/development/roadmap.html#release-schedule

The update on the page should happen in a week. My point of view
regarding this topic can be found here:
http://gis.stackexchange.com/a/188243/9839

While this may not reflect the official position of the project (if
there's any) and while the current windows release names may more be a
side-effect of release scripts than a conscious decision I pretty much
like the added maintenance time (cooldown period).

Cheers
Matthias


On 06/29/2016 02:08 PM, Jonathan Moules wrote:
> 2.14 is an LTR? On the QGIS home page under the big Download Now button
> it says:
> 
> "Version 2.14.3
> LTR Version 2.8.9"
> 
> I'd suggest that should probably be updated to state that 2.14 is an LTR
> too.
> Cheers,
> Jonathan
> 
> 
>  On Tue, 28 Jun 2016 13:22:58 +0100 *Jürgen E.
> Fischer* wrote 
> 
> Hi Tyler,
> 
> On Tue, 28. Jun 2016 at 08:52:28 -0300, Tyler Veinot wrote:
> > Hi, just wondering if anyone has an idea as to when the next LTR
> will be
> > released. I was looking at the QGIS road map and from what I can
> tell LTR
> > 2.14 was planned to be released 26 Feb 2016, I know plans change
> so I am
> > wondering if there is a new ETA?
> 
> 2.14 was released in February and is the current LTR (ie. gets
> backports). But
> hasn't yet replaced the previous LTR in the repositories. That will
> happen
> when 2.16 is released and "fresh" 2.14 has seen four month of
> maintanance.
> 
> 
> Jürgen
> 
> -- 
> Jürgen E. Fischer norBIT GmbH Tel. +49-4931-918175-31
> Dipl.-Inf. (FH) Rheinstraße 13 Fax. +49-4931-918175-50
> Software Engineer D-26506 Norden http://www.norbit.de
> QGIS release manager (PSC) Germany IRC: jef on FreeNode
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org 
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user
> 
> 
> 
> 
> 
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user
> 
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [QGIS-it-user] Errore plugin pyarchinit

2016-06-29 Thread Amedeo Fadini
Il 29/giu/2016 01:25 PM, "Alessandro Giuliani" 
ha scritto:
>
> Is the server running on host "10.0.1.5" and accepting TCP/IP connections
on port 5432?
>

l'errore riguarda la connessione a Postgis su quell'indirizzo IP. Il plugin
potrebbe non c'entrare ...

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


Re: [Qgis-user] Next LTR RElease

2016-06-29 Thread Jonathan Moules
2.14 is an LTR? On the QGIS home page under the big Download Now button it says:

"Version 2.14.3 
 LTR Version 2.8.9"

I'd suggest that should probably be updated to state that 2.14 is an LTR too.
Cheers,
Jonathan


 On Tue, 28 Jun 2016 13:22:58 +0100 Jürgen E. Fischerj...@norbit.de 
wrote  

Hi Tyler, 
 
On Tue, 28. Jun 2016 at 08:52:28 -0300, Tyler Veinot wrote: 
 Hi, just wondering if anyone has an idea as to when the next LTR will be 
 released. I was looking at the QGIS road map and from what I can tell LTR 
 2.14 was planned to be released 26 Feb 2016, I know plans change so I am 
 wondering if there is a new ETA? 
 
2.14 was released in February and is the current LTR (ie. gets backports). But 
hasn't yet replaced the previous LTR in the repositories. That will happen 
when 2.16 is released and "fresh" 2.14 has seen four month of maintanance. 
 
 
Jürgen 
 
-- 
Jürgen E. Fischer norBIT GmbH Tel. +49-4931-918175-31 
Dipl.-Inf. (FH) Rheinstraße 13 Fax. +49-4931-918175-50 
Software Engineer D-26506 Norden http://www.norbit.de 
QGIS release manager (PSC) Germany IRC: jef on FreeNode 
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user




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

[Qgis-user] Qgis - Big Postgis layer - open attribute table takes a life to execute

2016-06-29 Thread Rossin Pietro
Hello list
I'm facing a problem with qgis (2.14.3)  and postgis multipolygon layer.
This layer is a "big" (2200 records) dataset, with id, geom and other 4 columns 
( character varying(n) )
Id is serial primary key and there is an Index on geom using gist.
The dimension of this layer as shp is 17.5MB (16.3 MB shp and 1.2MB dbf)
If I load the shape file in qgis it loads quick and the attribute table too (it 
has to be so because it's on my filesystem..).
As Postgis layer it takes much longer to load the geometry in TOC but it takes 
a huge amount of time to open the attribute table.

I took a look at network data transfer between the open attribute data table 
(not geometry display) and the complete load and 32MB are downloaded.. It takes 
at least 1 minute to open the table (5 columns, 2173 records) with qgis 
freezing until load
Then I made a try to union all polygons with same attributes so a layer with 16 
rows is generated, same problem , almost 32MB data transfer and a huge time to 
load the attribute table.

In PgAdmin a select like
SELECT id, field1, field2, field3, field4  FROM mytable;
Takes 700ms to return 2173 records

SELECT DISTINCT field1, field2, field3, field4  FROM mytable;
Takes 42ms to execute and return 16 rows

So, what happens with QGis and attribute data table? It seems that all the 
table geometry column included is loaded if data attribute is requested...

Is there some setting I miss to setup in preferences?

Thanks
Pietro Rossin

AVVISO DI RISERVATEZZA Informazioni riservate possono essere contenute nel 
messaggio o nei suoi allegati. Se non siete i destinatari indicati nel 
messaggio, o responsabili per la sua consegna alla persona, o se avete ricevuto 
il messaggio per errore, siete pregati di non trascriverlo, copiarlo o inviarlo 
ad alcuno. In tal caso vi invitiamo a cancellare il messaggio ed i suoi 
allegati. Grazie.
CONFIDENTIALITY NOTICE Confidential information may be contained in this 
message or in its attachments. If you are not the addressee indicated in this 
message, or responsible for message delivering to that person, or if you have 
received this message in error, you may not transcribe, copy or deliver this 
message to anyone. In that case, you should delete this message and its 
attachments. Thank you.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Align points to lines

2016-06-29 Thread Tyler Veinot
Hi All;
I have a point file and a line file. I want to move all non-intersecting
points to the line position closest to them. Does QGIS have a tool for
that? Is there a plugin?
Cheers
Tyler
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Open MapInfo Workspace Plugin

2016-06-29 Thread Lene Fischer
Thanks! ☺


Lene Fischer
Associate Professor

University of Copenhagen
Department of Geoscience and Natural Resource Management
Forest and Landscape College
Nødebovej 77a
3480 Fredensborg
Denmark

MOB +45 004540115084
l...@ign.ku.dk


[cid:image001.gif@01D1D20B.E4E04030]




Fra: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] På vegne af Régis 
Haubourg
Sendt: 29. juni 2016 11:01
Til: qgis-user@lists.osgeo.org
Emne: Re: [Qgis-user] Open MapInfo Workspace Plugin

Hi Lene,
 I don't know why, but all plugins from French Ministry of Ecology disappeared 
from QGIS main repository. Maybe something related to recent publication 
workflow changes?
Anyway, the ministry has a dedicated repository here:
http://piece-jointe-carto.developpement-durable.gouv.fr/NAT002/QGIS/plugins/plugins.xml

just add it to your QGIS plugin manager and you will find back openwor plugin.
Cheers
Régis

2016-06-29 9:54 GMT+02:00 Lene Fischer >:
Hi,
I have got a question about opening a MapInfo Workspace.

Previously there was a plugin OpenWor – Can´t find it

How do I get all the colorizing from a workspace into QGIS ?

Regards
Lene Fischer


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



--
Régis Haubourg

Attention, changement d'adresse mail!
Mon adresse principale devient désormais regis.haubourg at 
gmail.com
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

[QGIS-it-user] Errore plugin pyarchinit

2016-06-29 Thread Alessandro Giuliani
Stamane accedendo al Qgis mi riporta questo errore il plugin
pyarchinit...com'è possibile risolverlo?

(OperationalError) could not connect to server: Connection timed out
(0x274C/10060) Is the server running on host "10.0.1.5" and accepting
TCP/IP connections on port 5432?
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] Open MapInfo Workspace Plugin

2016-06-29 Thread Régis Haubourg
Hi Lene,
 I don't know why, but all plugins from French Ministry of Ecology
disappeared from QGIS main repository. Maybe something related to recent
publication workflow changes?
Anyway, the ministry has a dedicated repository here:
http://piece-jointe-carto.developpement-durable.gouv.fr/NAT002/QGIS/plugins/plugins.xml


just add it to your QGIS plugin manager and you will find back openwor
plugin.
Cheers
Régis

2016-06-29 9:54 GMT+02:00 Lene Fischer :

> Hi,
>
> I have got a question about opening a MapInfo Workspace.
>
>
>
> Previously there was a plugin OpenWor – Can´t find it
>
>
>
> How do I get all the colorizing from a workspace into QGIS ?
>
>
>
> Regards
>
> Lene Fischer
>
>
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user
>



-- 
Régis Haubourg

Attention, changement d'adresse mail!
Mon adresse principale devient désormais regis.haubourg at gmail.com
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] regularly spaced address markers on alternating side of road

2016-06-29 Thread 積丹尼 Dan Jacobson
NA> This is not true - you can switch to map units everywhere there is a
NA> distance property.

OK I found that. But then the whole layer becomes the selected color to
the entire edges of the planet. And there is no way to undo short of
closing qgis and not saving. As CTRL+Z does not work.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Open MapInfo Workspace Plugin

2016-06-29 Thread Lene Fischer
Hi,
I have got a question about opening a MapInfo Workspace.

Previously there was a plugin OpenWor – Can´t find it

How do I get all the colorizing from a workspace into QGIS ?

Regards
Lene Fischer

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

Re: [Qgis-user] regularly spaced address markers on alternating side of road

2016-06-29 Thread Neumann, Andreas
Hi Dan, 

This is not true - you can switch to map units everywhere there is a
distance property. 

Andreas 

On 2016-06-29 09:12, Dan Jacobson wrote:

> OK I have determined that everything in the Layer Properties menus
> (style etc.) I should NOT use, because they are all millimeter based
> (and will not change with what scale I print the map at.) And I should
> instead look at the degree and meter based plugins like Qchainage.

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

Re: [Qgis-user] regularly spaced address markers on alternating side of road

2016-06-29 Thread Dan Jacobson
OK I have determined that everything in the Layer Properties menus
(style etc.) I should NOT use, because they are all millimeter based
(and will not change with what scale I print the map at.) And I should
instead look at the degree and meter based plugins like Qchainage.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [QGIS-it-user] da fiume poligono a fiume linea centrale

2016-06-29 Thread Gabriela Osaci Costache
Grazie di cuore, Pierluigi! E' davvero utilissimo: in un solo passaggio si 
ottiene lo strato con la linea desiderata (ho modificato i parametri inziali 
per thin e smoothness). Poi si esporta lo strato per utilizzarlo in 
QGIS...sbaglio...in gvSIG, perché lì c'è un modulo (in Sextante) che calcola 
automaticamente l'indice di sinuosità e altre proprietà geometriche delle linee 
(molto tempo fa Paolo ha aperto un ticket  per avere le stesse funzionalità in 
Processing...).

 Il modulo v.voronoi con l'opzione skeleton (-s) l'ho trovato soltanto in GRASS 
7.0.4, usato indipendentemente da QGIS. Per rispondere alla domanda di Paolo: 
purtroppo non c'è in processing (GRASS), ma non so inglese per aprire il ticket 
:-(
Mi sembra una funzionalità molto utile...e difficile da trovare :-(. Si 
potrebbe introdurre nel "cuore" di QGIS con una denominazione suggestiva?

Grazie ancora,Gabriela

  Da: pierluigi de rosa 
 A: Gabriela Osaci Costache ; Utenti QGIS It 
 
 Inviato: Martedì 28 Giugno 2016 14:15
 Oggetto: Re: [QGIS-it-user] da fiume poligono a fiume linea centrale
   
Ciao,
anche io mi sono trovato ad affrontare lo stesso problema.Adesso il nuovo 
modulo di GRASS v.voronoi con l'opzione skeleton (-s)
Fa quello che dici tu direttamente da geometria vettoriale, evitando la 
conversione in raster poi r.thin e la riconversione in vettore.
GrazieP
Il giorno 28 giugno 2016 09:07, Sandro Santilli  ha scritto:

On Sun, Jun 26, 2016 at 06:49:40PM +, Gabriela Osaci Costache wrote:

> Non riesco a trovare la soluzione per il mio problema: per calcolare
> alcuni indici (sinuosità ecc.) per i fiumi di tipo poligono, devo
> ottenere soltanto la linea centrale (che sia localizzata a una distanza
> uguale tra le rive).

In PostGIS 2.2.0+ c'e' una ST_ApproximateMedialAxis, puoi provare
quella:
http://postgis.net/docs/manual-2.2/ST_ApproximateMedialAxis.html

--strk;

  ()   Free GIS & Flash consultant/developer
  /\   https://strk.kbt.io/services.html
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-it-user




-- 
Ing. Pierluigi De Rosa (PhD)
cel: 3497558268 / fax: 075 7823038
skype: pierluigi.derosa 

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


[QGIS-it-user] Installazione QGIS su Mac

2016-06-29 Thread FILIPELLO GORIA
Buongiorno a tutti,
vorrei scaricare QGIS, però mi è sorto un dubbio, perché non ho visto elencata, 
fra le versioni disponibili, la versione installata sul mio MacBook, ovvero  OS 
X El Capitan 10.11.5.

Sapreste cortesemente indicarmi se il download è compatibile?

Eventualmente potreste mandarmi un link di download?

Ho provato a lanciare il download di QGIS dal sito, in realtà dalla pagina 
ufficiale sono stato reindirizzato in una pagina “in stile orientale”, ma il 
tempo di download stimato mi è sembrato troppo lungo, oltre 8 ore per 280 Mb 
circa, perciò ho interrotto.

Grazie, cortili saluti,
Roberto Filipello
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] regularly spaced address markers on alternating side of road

2016-06-29 Thread Dan Jacobson
Thanks. The idea is every 25 meters there should be a (proposed) house
number (location) on the left, then one on the right, left, etc.
Making for a total of 20 + 20 = 40 per kilometer.
Sort of like what I did with GRASS years ago
http://jidanni.org/geo/house_numbering/mountain.html
but clearer via using two sides of the roads... but just putting them
all down the middle would be OK too. Yes, it would be good to avoid
depending on plugins.
In fact just a bunch of dots along the center of the road would be fine,
which then I suppose I could hack the .qgs file to add labels to with a
perl script which I thankfully know how to write. I'll just remind the
government workers to remember odd goes on the left, etc.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [QGIS-it-user] da fiume poligono a fiume linea centrale

2016-06-29 Thread Marco Spaziani
Veramente interessante questo "Eqdistant line plugin".
Grazie per la dritta.

Il giorno 26 giugno 2016 21:31, Totò  ha scritto:

> Gabriela Osaci Costache wrote
> > Ciao a tutti!
> > Non riesco a trovare la soluzione per il mio problema: per calcolare
> > alcuni indici (sinuosità ecc.) per i fiumi di tipo poligono, devo
> ottenere
> > soltanto la linea centrale (che sia localizzata a una distanza uguale tra
> > le rive).
> >
> > Ho trasformato i poligoni in linee (da poligono a linea), ma si ottiene
> il
> > perimetro del fiume, non solo una linea centrale. Arrivata a questo punto
> > mi sembra una cosa semplice tracciare una linea centrale tra altre due,
> > eppure...  C'è un modo da ottenere questa linea senza dover disegnarla a
> > mano?
>
> Ciao,
> prova con questo plugin [1] Eqdistant line plugin
> la guida è molto dettagliata.
>
> [1]http://ivanbusthomi.github.io/plugins/eqdistant/
>
> saluti
>
>
>
> --
> View this message in context:
> http://osgeo-org.1560.x6.nabble.com/da-fiume-poligono-a-fiume-linea-centrale-tp5273432p5273441.html
> Sent from the QGIS Italian User mailing list archive at Nabble.com.
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-it-user
>
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] regularly spaced address markers on alternating side of road

2016-06-29 Thread Neumann, Andreas
Hi Dan, 

Interesting problem. 

Are these regularly spaced or should they appear at given vertices of
the input vector line? 

I was thinking that maybe one could use a marker line, with dynamic font
markers - but unfortunately there are no "per feature iterators" or
"counters" available in the QGIS expressions. If these would be
available, it would be an easy task. 

Also, the labeling options, combined with the geometry expressions are
pretty powerful and dynamic, but again - without iterators ... 

Geometry generators also come to my mind, but again - without iterators
in QGIS expressions we are blocked. 

- 

I am forwarding this to the dev list to see if someone has an idea - of
course with Python there would be options ... 

Andreas 

On 2016-06-29 07:11, Dan Jacobson wrote:

> I want to label vectors (roads) with proposed addresses:
> 
> 21  23  25  27  29
> ==
> 22  24  26  28
> 
> I suppose I will use the Qchainage plugin and then post-process the
> output with a simple perl script to get the exact labels I want (20, 30,
> 40...).
> 
> I don't suppose I can make them on either side of the road so I suppose
> I will have to put them along the centerline.
> 
> There are no houses here. Just guide points for government workers if
> houses were ever to be built.
> 
> I can't use StackExchange to ask this because I don't have enough Karma
> and never will.
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: http://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-user

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