[Qgis-user] Distance calaculation between streets

2016-07-14 Per discussione Pat Hin
 blockquote, div.yahoo_quoted { margin-left: 0 !important; border-left:1px 
#715FFA solid !important; padding-left:1ex !important; background-color:white 
!important; } Good morning, 
i have a general questions regards to run some analysis in QGIS.i am going to 
calculate the distance between the starting points (in WGS84) between the same 
street submitted by two different map vendors.The result should be in an 
analytical way in [m]
Is that possible? and if yes by which module or which way it would be thebest 
and easiest way to do?
thanksPat___
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] Backing up GIS Data

2016-07-14 Per discussione Jeff McKenna

Hi Tyler,

This is a good question, and an important one, and don't feel bad about 
posting it here - likely we can all learn from this discussion, as it 
definitely involves the whole QGIS community.


I have quite a lot of experience backing up databases, especially 
PostgreSQL/PostGIS databases.  I can tell you that it is for sure 
important to run "pg_dump" as a daily backup (in addition to your whole 
server image/backup) - that pg_dump has saved me and my clients hundreds 
of times, and it is very portable and easy to access (as opposed to your 
whole image/machine backup).  One very important point (that's I've 
learned from experience) when using pg_dump is to *always* use the 
custom binary/compressed output format (the "--format=c" commandline 
switch for pg_dump).  I've had terrible times with the other output 
format types, especially when restoring a database from a Windows server 
to a Linux server etc (with hardcoded paths inside the backup).  I live 
by that format, swear by it, from experience, moving so many client 
databases from one machine to another.


Another mailing list to keep in mind is the PostGIS mailing list, where 
these backup topics also pop up from time to time - and discussions are 
more geo-related, so are very helpful, than just the generic PostgreSQL 
mailing list.


So, definitely implement an additional backup process using pg_dump (you 
can experiment restoring it through the "pg_restore" command), you won't 
regret the effort spent.


Happy QGIS-ing,

-jeff


--
Jeff McKenna
MapServer Consulting and Training Services
http://www.gatewaygeomatics.com/



On 2016-07-14 11:35 AM, Tyler Veinot wrote:

Hi All;
I am thinking about getting IT to install PostgreSQL on our server and
start moving our GIS Data over to the post database. My concern is
backup; we currently backup the whole server onto, what are called
"tapes" but I am sure they are not cassettes or the like, anyway twice a
day the whole server is copied so we can go back to previous versions of
a file or folder to; roll back, restore, or recover. With this in place
do I need to setup a separate backup or replication service on the
postgre database? Could I just "roll back" using a later server version?
Well I guess this is more of a postgre question and not so much a
QGIS one; but I am going to put this out there anyway and if no one can
answer I will find another spot.
Thanks
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] Backing up GIS Data

2016-07-14 Per discussione Jeffrey Johnson
https://www.postgresql.org/docs/9.5/static/app-pgdump.html

On Thu, Jul 14, 2016 at 7:35 AM, Tyler Veinot  wrote:
> Hi All;
> I am thinking about getting IT to install PostgreSQL on our server and start
> moving our GIS Data over to the post database. My concern is backup; we
> currently backup the whole server onto, what are called "tapes" but I am
> sure they are not cassettes or the like, anyway twice a day the whole server
> is copied so we can go back to previous versions of a file or folder to;
> roll back, restore, or recover. With this in place do I need to setup a
> separate backup or replication service on the postgre database? Could I just
> "roll back" using a later server version?
> Well I guess this is more of a postgre question and not so much a QGIS
> one; but I am going to put this out there anyway and if no one can answer I
> will find another spot.
> Thanks
> 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
___
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] Backing up GIS Data

2016-07-14 Per discussione James Keener
Tapes are still common, actually. They're cheap per GB and are quite
large and reusable.

There is pg_dump available to dump the database itself for backup
purposes.  As for if the disk snapshot (I'm assuming it's a snapshot
and not just a copy of the disk while running!! CHECK THIS!) will
be a sufficient backup, I believe so, but you would defiantly be best
checking with the postgres mailing list.

Jim

On Thu, Jul 14, 2016 at 10:35 AM, Tyler Veinot  wrote:
> Hi All;
> I am thinking about getting IT to install PostgreSQL on our server and start
> moving our GIS Data over to the post database. My concern is backup; we
> currently backup the whole server onto, what are called "tapes" but I am
> sure they are not cassettes or the like, anyway twice a day the whole server
> is copied so we can go back to previous versions of a file or folder to;
> roll back, restore, or recover. With this in place do I need to setup a
> separate backup or replication service on the postgre database? Could I just
> "roll back" using a later server version?
> Well I guess this is more of a postgre question and not so much a QGIS
> one; but I am going to put this out there anyway and if no one can answer I
> will find another spot.
> Thanks
> 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
___
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] Backing up GIS Data

2016-07-14 Per discussione Tyler Veinot
Hi All;
I am thinking about getting IT to install PostgreSQL on our server and
start moving our GIS Data over to the post database. My concern is backup;
we currently backup the whole server onto, what are called "tapes" but I am
sure they are not cassettes or the like, anyway twice a day the whole
server is copied so we can go back to previous versions of a file or folder
to; roll back, restore, or recover. With this in place do I need to setup a
separate backup or replication service on the postgre database? Could I
just "roll back" using a later server version?
Well I guess this is more of a postgre question and not so much a QGIS
one; but I am going to put this out there anyway and if no one can answer I
will find another spot.
Thanks
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-it-user] da fiume poligono a fiume linea centrale

2016-07-14 Per discussione Paolo Cavallini
Il 14/07/2016 16:20, pierluigi de rosa ha scritto:
> Ho creato il ticket in quanto l'opzione non è presente nel processing

visto, grazie
purtroppo ora non ho tempo di farlo, peccato perché è una banalità.
saluti.
-- 
Paolo Cavallini - www.faunalia.eu
QGIS & PostGIS courses: http://www.faunalia.eu/training.html
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Plugin Profile e Qgis 2.16 Nødebo

2016-07-14 Per discussione Salvatore Larosa
2016-07-14 15:49 GMT+02:00 pierluigi de rosa :
> Perchè non segnalare sul track del plugin di rimuovere o cambiare il
> controllo?
> Tra l'altro il vero controllo viene fatto sul metadata.txt
>
> Grazie
> Pierluigi
>
> Il giorno 14 luglio 2016 15:46, Paolo Cavallini  ha
> scritto:
>>
>> Il 14/07/2016 15:37, Salvatore Larosa ha scritto:
>>
>> > Ne risentono solo i plugin che hanno un check sul nome della versione
>> > di QGIS. Nella fattispecie (QGis.QGIS_VERSION), c'è un controllo per
>> > assicurarsi che la versione di QGIS su cui è installato il plugin non
>> > sia uguale o inferiore alla 0.11. Beh, a meno di qualche nostalgico,
>> > immagino che quel check possa essere tranquillamente rimosso! :)
>> >
>> > Meglio fare il controllo su QGis.QGIS_VERSION_INT che ritorna un numero
>> > intero.
>>
>> In realtà c'e' anche una indicazione sulla versione minima, nei
>> metadata.txt

Si certo, quello deve essere il riferimento principale e lo è, ma a
volte ritorna utile far funzionare plugin noti in versioni meno
recenti di QGIS, quando si hanno piccole "rotture delle API". Vedi per
esempio il caso del plugin OpenLayers [0] quando è stata fatta la
modifica per renderlo utilizzabile sia nella versione 2.0 che nella
1.8 ;-)

Saluti.

https://github.com/sourcepole/qgis-openlayers-plugin/commit/ff7562a88a3e4f9fa000fb81e9a7166192f56882

-- 
Salvatore Larosa
linkedIn: http://linkedin.com/in/larosasalvatore
twitter: @lrssvt
skype: s.larosa
IRC: lrssvt on freenode
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Plugin Profile e Qgis 2.16 Nødebo

2016-07-14 Per discussione pierluigi de rosa
Perchè non segnalare sul track del plugin di rimuovere o cambiare il
controllo?
Tra l'altro il vero controllo viene fatto sul metadata.txt

Grazie
Pierluigi

Il giorno 14 luglio 2016 15:46, Paolo Cavallini  ha
scritto:

> Il 14/07/2016 15:37, Salvatore Larosa ha scritto:
>
> > Ne risentono solo i plugin che hanno un check sul nome della versione
> > di QGIS. Nella fattispecie (QGis.QGIS_VERSION), c'è un controllo per
> > assicurarsi che la versione di QGIS su cui è installato il plugin non
> > sia uguale o inferiore alla 0.11. Beh, a meno di qualche nostalgico,
> > immagino che quel check possa essere tranquillamente rimosso! :)
> >
> > Meglio fare il controllo su QGis.QGIS_VERSION_INT che ritorna un numero
> intero.
>
> In realtà c'e' anche una indicazione sulla versione minima, nei
> metadata.txt
> Saluti.
> --
> Paolo Cavallini - www.faunalia.eu
> QGIS & PostGIS courses: http://www.faunalia.eu/training.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


Re: [QGIS-it-user] Plugin Profile e Qgis 2.16 Nødebo

2016-07-14 Per discussione Salvatore Larosa
2016-07-14 15:04 GMT+02:00 Luca Mandolesi :
> Si ma prima è meglio verificare prima di intasare di facezie gli
> sviluppatori con issues errati. Ho aperto un ticket nel repo github degli
> sviluppatori.
>
> Mi chiedo come mai altri plulgin non ne risentano.

Ne risentono solo i plugin che hanno un check sul nome della versione
di QGIS. Nella fattispecie (QGis.QGIS_VERSION), c'è un controllo per
assicurarsi che la versione di QGIS su cui è installato il plugin non
sia uguale o inferiore alla 0.11. Beh, a meno di qualche nostalgico,
immagino che quel check possa essere tranquillamente rimosso! :)

Meglio fare il controllo su QGis.QGIS_VERSION_INT che ritorna un numero intero.

Qualcosa comincia ad apparire anche sul bugtracker di QGIS [0].

Saluti.


[0] - http://hub.qgis.org/issues/15279



-- 
Salvatore Larosa
linkedIn: http://linkedin.com/in/larosasalvatore
twitter: @lrssvt
skype: s.larosa
IRC: lrssvt on freenode
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] QGIS 2.16 cannot use WMS services as 2.14 did

2016-07-14 Per discussione Jeff McKenna

Hi Mats,

I don't have any issues with 2.16.0 and WMS connections.  However I have 
been in your same shoes before, and besides the clearing-the-QGIS-cache 
trick, I found the best way to examine this is to use an external tool 
(Fiddler) to get the exact WMS request that is generated by QGIS.  It 
takes a little effort to set this up, but it really helps to find out 
why a single server won't load in QGIS.  Then you can take that full 
request and paste it into the ticket, for the QGIS team to examine.


-jeff

--
Jeff McKenna
MapServer Consulting and Training Services
http://www.gatewaygeomatics.com/




On 2016-07-14 6:31 AM, Mats Elfström wrote:

Hi!
For some reason, existing projects and WMS connections from 2.14.3 does
not work in 2.16.
Capabilities download fails, or I get Map request failed
[error:Connection closed.
Is there some fundamental change in 2.16 that needs another setup or
other parameters for WMS?
Most of the the services I use needs basic authorization, but that seems
to work. The error occurs as the map is to be rendered.
We rely heavily on WMS for background maps, so this is a showstopper for
v 2.16.




___
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] Plugin Profile e Qgis 2.16 Nødebo

2016-07-14 Per discussione Luca Mandolesi
Si ma prima è meglio verificare prima di intasare di facezie gli
sviluppatori con issues errati. Ho aperto un ticket nel repo github degli
sviluppatori.

Mi chiedo come mai altri plulgin non ne risentano.

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


Re: [QGIS-it-user] Plugin Profile e Qgis 2.16 Nødebo

2016-07-14 Per discussione Totò
mando wrote
> Il plugin Profile mi propone questo errore riferito alla variabile
> versione
> di Qgis:
> 
> ver = str(QGis.QGIS_VERSION)
> 
> 
> Mi è venuto un dubbio: non è che è dovuto al nome di Qgis Nødebo dove la
> ø non viene digerita?
> 
> Possibile?
> 
> Ciao Luca

Confermo, nella 2.16 , l'errore!!!



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/Plugin-Profile-e-Qgis-2-16-N-debo-tp5276339p5276360.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] Plugin Profile e Qgis 2.16 Nødebo

2016-07-14 Per discussione Luca Mandolesi
Il plugin Profile mi propone questo errore riferito alla variabile versione
di Qgis:

ver = str(QGis.QGIS_VERSION)


Mi è venuto un dubbio: non è che è dovuto al nome di Qgis Nødebo dove la
ø non viene digerita?

Possibile?

Ciao Luca


[0]
An error has occurred while executing Python code:

UnicodeEncodeError: 'ascii' codec can't encode character u'\xf8' in
position 8: ordinal not in range(128)

Traceback (most recent call last):
  File "C:/Users/Luca/.qgis2/python/plugins\profiletool\profileplugin.py",
line 90, in run
if self.checkIfOpening() == False:
  File "C:/Users/Luca/.qgis2/python/plugins\profiletool\profileplugin.py",
line 216, in checkIfOpening
ver = str(QGis.QGIS_VERSION)
UnicodeEncodeError: 'ascii' codec can't encode character u'\xf8' in
position 8: ordinal not in range(128)


Versione Python: 2.7.4 (default, Apr  6 2013, 19:54:46) [MSC v.1500 32 bit
(Intel)]
Versione di QGIS: 2.16.0-Nødebo Nødebo, d0b3e39
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] QGIS 2.16 cannot use WMS services as 2.14 did

2016-07-14 Per discussione Mats Elfström
Very likely. The services have the same origin. I will update the bug tracker. 

Hälsning / Regards
Mats.E

Skickat från min / Sent from my iPhone, Ursäkta att jag är kortfattad / Excuse 
my brevity. 

> 14 jul 2016 kl. 11:51 skrev Luigi Pirelli :
> 
> can it be this sever issue https://hub.qgis.org/issues/15258
> 
> please add more info in the issue tracker
> 
> regards
> Luigi Pirelli
> 
> **
> * Boundless QGIS Support/Development: lpirelli AT boundlessgeo DOT com
> * LinkedIn: https://www.linkedin.com/in/luigipirelli
> * Stackexchange: http://gis.stackexchange.com/users/19667/luigi-pirelli
> * GitHub: https://github.com/luipir
> * Mastering QGIS:
> https://www.packtpub.com/application-development/mastering-qgis
> **
> 
> 
>> On 14 July 2016 at 11:31, Mats Elfström  wrote:
>> Hi!
>> For some reason, existing projects and WMS connections from 2.14.3 does not
>> work in 2.16.
>> Capabilities download fails, or I get Map request failed [error:Connection
>> closed.
>> Is there some fundamental change in 2.16 that needs another setup or other
>> parameters for WMS?
>> Most of the the services I use needs basic authorization, but that seems to
>> work. The error occurs as the map is to be rendered.
>> We rely heavily on WMS for background maps, so this is a showstopper for v
>> 2.16.
>> 
>> Regards, Mats.E
>> --
>> __
>> Mats Elfström, Väpplingvägen 21, SE-227 38 LUND, Sweden
>> tel: +46 46 145959 / mob: +46 70 595 39 35
>> alt e-mail: mats.elfst...@giskraft.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-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] infotool - solved

2016-07-14 Per discussione Neumann, Andreas
Hi Thomas, 

Marking a thread as "solved" as you did is just fine - but don't forget
to also reply to the mailing-list ;-) 

The Shapefiles from Autocad seems to be a separate issue - please report
it at hub.qgis.org and upload sample data to reproduce the issue. 

Andreas 

On 2016-07-14 11:47, Thomas Dunz wrote:

> Hi Andreas
> 
> The problem was, that the panel "Identify Results" didn't show up, but the 
> panel which is used bey inserting new objects.
> I could solve that just now with the help of a friend, who encountered the 
> same.
> 
> The problem occures with shape-files (ESRI) which were exported by AutoCADMap 
> (version 2008). When I save this layers in QGIS as shp-Format, with the new 
> file everything works nicely. Therefore it seems to be an exportproblem auf 
> my ACADMap.
> 
> Thanks a lot for your effort
> 
> Thomas
> 
> PS: How can I mark that thread solved?
> 
> Hi Thomas, 
> 
> What exactly would you expect? To see the form directly? 
> 
> Note that the Info Tool has it's own panel titled "Identify Results". In 
> there you can change to different modes: 
> 
> * Current Layer
> * Top down, stop at first
> * Top down
> * Layer selection
> 
> And there is a checkbox to open the form if there is only one hit. Note that 
> if you have multiple hits, you need to select in the list in the panel for 
> which feature you want to open the form.  
> 
> The "Layer selection" (context menu in the map) and the "Top down, stop at 
> first" are the two most useful modes in my opinion. 
> 
> All of the modes should honor the "identifyable" checkbox in the project 
> properties. 
> 
> Hope this clarifies how it behaves? If not, please clarify what exactly 
> fails. 
> 
> Greetings, 
> 
> Andreas 
> 
> On 2016-07-14 10:27, Thomas Dunz wrote: 
> Hi
> 
> I encouter the following  problem with the infotool in QGIS vers. 8.6, Win 7 
> (please notify that I translatetd the menuitems from german to english, so 
> the might differ a littel from the original wording - but I hope, I made the 
> point clear):
> 
> When hitting the infotool-button or via menu "View->Object identify 
> (Ctrl,Shift,i)", I see only the attributes written in the attributetable. 
> Ctrl,Shift,I doesnt work at all.
> The checkbox in the menu "project->projectproperties->Layer identfiable" 
> doesn't affect that behaviour. The attributetable attributes are shown even 
> when "identifiable" is not marked.
> 
> The same appears when i try out a higher version of QGIS (2.12).
> 
> Any suggestions how to fix? Thanks in advance.
> 
> Thomas

-- 
Dr. Fahlbusch + Partner
Sorge 29
38678 Clausthal - Zellerfeld

Telefon: 05323 / 715830
Telefax: 05323 / 715838

Diese email enthält Informationen, die nur für den Empfänger bestimmt
sind. Sollten Sie nicht der Empfänger sein und diese email irrtümlich
erhalten haben, löschen Sie die email einschließlich aller Anhänge bitte
unverzüglich von Ihrem Rechner /Server und verständigen Sie bitte den
Absender. Sie sind nicht berechtigt, Informationen, die nicht für Sie
bestimmt sind, auf Ihrem Rechner oder sonstwie zu speichern. Sie sind
auch nicht berechtigt, die Ihnen irrtümlicherweise übersandten
Informationen zu nutzen oder weiterzugeben.

  ___
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] QGIS 2.16 cannot use WMS services as 2.14 did

2016-07-14 Per discussione Luigi Pirelli
can it be this sever issue https://hub.qgis.org/issues/15258

please add more info in the issue tracker

regards
Luigi Pirelli

**
* Boundless QGIS Support/Development: lpirelli AT boundlessgeo DOT com
* LinkedIn: https://www.linkedin.com/in/luigipirelli
* Stackexchange: http://gis.stackexchange.com/users/19667/luigi-pirelli
* GitHub: https://github.com/luipir
* Mastering QGIS:
https://www.packtpub.com/application-development/mastering-qgis
**


On 14 July 2016 at 11:31, Mats Elfström  wrote:
> Hi!
> For some reason, existing projects and WMS connections from 2.14.3 does not
> work in 2.16.
> Capabilities download fails, or I get Map request failed [error:Connection
> closed.
> Is there some fundamental change in 2.16 that needs another setup or other
> parameters for WMS?
> Most of the the services I use needs basic authorization, but that seems to
> work. The error occurs as the map is to be rendered.
> We rely heavily on WMS for background maps, so this is a showstopper for v
> 2.16.
>
> Regards, Mats.E
> --
> __
> Mats Elfström, Väpplingvägen 21, SE-227 38 LUND, Sweden
> tel: +46 46 145959 / mob: +46 70 595 39 35
> alt e-mail: mats.elfst...@giskraft.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-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 2.16 cannot use WMS services as 2.14 did

2016-07-14 Per discussione Mats Elfström
Hi!
For some reason, existing projects and WMS connections from 2.14.3 does not
work in 2.16.
Capabilities download fails, or I get Map request failed [error:Connection
closed.
Is there some fundamental change in 2.16 that needs another setup or other
parameters for WMS?
Most of the the services I use needs basic authorization, but that seems to
work. The error occurs as the map is to be rendered.
We rely heavily on WMS for background maps, so this is a showstopper for v
2.16.

Regards, Mats.E
-- 
__
Mats Elfström, Väpplingvägen 21, SE-227 38 LUND, Sweden
tel: +46 46 145959 / mob: +46 70 595 39 35
alt e-mail: mats.elfst...@giskraft.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] infotool

2016-07-14 Per discussione Neumann, Andreas
Hi Thomas, 

What exactly would you expect? To see the form directly? 

Note that the Info Tool has it's own panel titled "Identify Results". In
there you can change to different modes: 

* Current Layer
* Top down, stop at first
* Top down
* Layer selection

And there is a checkbox to open the form if there is only one hit. Note
that if you have multiple hits, you need to select in the list in the
panel for which feature you want to open the form.  

The "Layer selection" (context menu in the map) and the "Top down, stop
at first" are the two most useful modes in my opinion. 

All of the modes should honor the "identifyable" checkbox in the project
properties. 

Hope this clarifies how it behaves? If not, please clarify what exactly
fails. 

Greetings, 

Andreas 

On 2016-07-14 10:27, Thomas Dunz wrote:

> Hi
> 
> I encouter the following  problem with the infotool in QGIS vers. 8.6, Win 7 
> (please notify that I translatetd the menuitems from german to english, so 
> the might differ a littel from the original wording - but I hope, I made the 
> point clear):
> 
> When hitting the infotool-button or via menu "View->Object identify 
> (Ctrl,Shift,i)", I see only the attributes written in the attributetable. 
> Ctrl,Shift,I doesnt work at all.
> The checkbox in the menu "project->projectproperties->Layer identfiable" 
> doesn't affect that behaviour. The attributetable attributes are shown even 
> when "identifiable" is not marked.
> 
> The same appears when i try out a higher version of QGIS (2.12).
> 
> Any suggestions how to fix? Thanks in advance.
> 
> Thomas

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

2016-07-14 Per discussione Thomas Dunz

Hi

I encouter the following  problem with the infotool in QGIS vers. 8.6, 
Win 7 (please notify that I translatetd the menuitems from german to 
english, so the might differ a littel from the original wording - but I 
hope, I made the point clear):


When hitting the infotool-button or via menu "View->Object identify 
(Ctrl,Shift,i)", I see only the attributes written in the 
attributetable. Ctrl,Shift,I doesnt work at all.
The checkbox in the menu "project->projectproperties->Layer identfiable" 
doesn't affect that behaviour. The attributetable attributes are shown 
even when "identifiable" is not marked.


The same appears when i try out a higher version of QGIS (2.12).

Any suggestions how to fix? Thanks in advance.

Thomas

--
Dr. Fahlbusch + Partner
Sorge 29
38678 Clausthal - Zellerfeld

Telefon: 05323 / 715830
Telefax: 05323 / 715838

Diese email enthält Informationen, die nur für den Empfänger bestimmt sind. 
Sollten Sie nicht der Empfänger sein und diese email irrtümlich erhalten haben, 
löschen Sie die email einschließlich aller Anhänge bitte unverzüglich von Ihrem 
Rechner /Server und verständigen Sie bitte den Absender. Sie sind nicht 
berechtigt, Informationen, die nicht für Sie bestimmt sind, auf Ihrem Rechner 
oder sonstwie zu speichern. Sie sind auch nicht berechtigt, die Ihnen 
irrtümlicherweise übersandten Informationen zu nutzen oder weiterzugeben.

___
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