[Qgis-user] Installation of QGIS 1.8

adamu eloji aeloji60 at yahoo.com
Fri Sep 6 05:46:22 PDT 2013


Dear All,

               Who will assist on how to install the QGIS version. Unlike 1.7, i tried the latest version, but some adverts are not helping matters.
Thanks
El-Oji


________________________________
 From: "qgis-user-request at lists.osgeo.org" <qgis-user-request at lists.osgeo.org>
To: qgis-user at lists.osgeo.org 
Sent: Thursday, September 5, 2013 11:15 AM
Subject: Qgis-user Digest, Vol 91, Issue 14
 

Send Qgis-user mailing list submissions to
    qgis-user at lists.osgeo.org

To subscribe or unsubscribe via the World Wide Web, visit
    http://lists.osgeo.org/mailman/listinfo/qgis-user
or, via email, send a message with subject or body 'help' to
    qgis-user-request at lists.osgeo.org

You can reach the person managing the list at
    qgis-user-owner at lists.osgeo.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Qgis-user digest..."


Today's Topics:

   1. Re: mapinfo file to postgis (Bo Victor Thomsen)
   2. Re: Android GPS streaming to QGis (Wesley Roberts)
   3. 1. Android GPS streaming to QGis (Zoltan Szecsei)
      (S?bastien Debuisson)


----------------------------------------------------------------------

Message: 1
Date: Thu, 05 Sep 2013 09:32:32 +0200
From: Bo Victor Thomsen <bo.victor.thomsen at gmail.com>
To: ibad raza <ibadraza001 at gmail.com>
Cc: qgis-user at lists.osgeo.org
Subject: Re: [Qgis-user] mapinfo file to postgis
Message-ID: <52283390.7080607 at gmail.com>
Content-Type: text/plain; charset="iso-8859-1"; Format="flowed"

Ibad -

First: The wkb_geometry geometry(MultiLineString,900914) part means that 
your table contains multiline geoobject in the projection EPSG:900914

I suspect you have run two errors in ogr2ogr.

I've done some digging into the problem:

I've attached a tab-file in projection epsg:25832 (that's utm32/etrs89). 
It contains 7 rows: one row each of geotype POINT, MULTIPOINT 
..,MULTIPOLYGON, NONE. When I use the ogr2ogr command from my previous 
post 2 things happens:

1. I get 6 - not 7 - new tables into my database.  The table with
    geometry type 'NONE' is missing. That means the *-where
    "OGR_GEOMETRY='%a' *command option fails for geometry type "none"
2. The 6 tables has all the projection epsg:900915 (AFAIK this is
    "Google spherical mercator" projection). It's not epsg:25832. This
    means that ogr2ogr can't reliably transfer the projection of the
    tabfile into postgis.

add 1) Sorry, at the moment you can't use my method to transfer rows 
with no geometry from a tab file into postgresql.

add 2) As a workaround, you can manually define the projection by using 
the -a_srs option in the ogr2ogr. Change the command to:

*for %a in (multilinestring multipolygon linestring polygon point 
multipoint none) do ogr2ogr -where "OGR_GEOMETRY='%a'" -a_srs EPSG:/nnnn 
/-f "PostgreSQL" 
PG:"host=**/myserver/**user=**/myuser/**dbname=**/mydatabase/**password=**/mypassword/**" 
-nlt %a -nln **/tablename/**_%a **/mytabfile.tab/*

*/nnnn /*must be the epsg number for the projection used in your mapinfo 
table.

I will file two bug reports for the ogr2ogr errors.

Regards
Bo Victor Thomsen
Aestas-GIS

Den 05-09-2013 06:58, ibad raza skrev:
> thanks Bo victor Thomsen
>
> I have tried this query and was able to add different types of 
> geometries into my postgis
> however the geometry column of every tables reads as wkb_geometry 
> geometry(MultiLineString,900914),
>
> can anyone explain to me that what does this means, a normal geometry 
> table only has only this argument wkb_geometry geometry,
>
>
> best
> Ibad Raza
>
>
> On Thu, Sep 5, 2013 at 2:49 AM, Bo Victor Thomsen 
> <bo.victor.thomsen at gmail.com <mailto:bo.victor.thomsen at gmail.com>> wrote:
>
>     Ibad -
>
>     The problem is that MapInfo tab files can contain several types of
>     geometry object all mixed together - lines, polygons, points ...
>     in a single file. This is not allowed in Postgis tables used by QGIS.
>     You have to split your "multi-type" tab file into several postgis
>     tables, where each table only contains one type of geoobject
>
>     Try the following on a command line (in windows):
>
>     *for %a in (multilinestring multipolygon linestring polygon point
>     multipoint none) do ogr2ogr -where "OGR_GEOMETRY='%a'" -f
>     "PostgreSQL"
>     PG:"host=**/myserver/**user=**/myuser/**dbname=**/mydatabase/**password=**/mypassword/**"
>     -nlt %a -nln **/tablename/**_%a **/mytabfile.tab/*
>
>     - Replace italic text as needed
>     - If the commandline is put into a .cmd file: Replace every
>     occurence of %a with %%a
>
>     The command will create 7 new layers for each tabfile. Each new
>     table will only contain one type of object (Depending on the
>     contents of the tabfile, some or most of the tables will be empty)
>
>     Regards
>     Bo Victor Thomsen
>     Aestas-GIS
>     Denmark
>
>
>     Den 04-09-2013 21:03, ibad raza skrev:
>>     hello list
>>
>>     I am trying to add a mapinfo file to postgis
>>     I have tried the fwtool ogr2ogr function
>>     but the problem is that everytime I add the file, some records
>>     are missing
>>     these are the records with no geometry which do not get added in
>>     the final table
>>
>>
>>     can anyone tell me that firstlly how can I add the rows without
>>     geometry in the table as well.
>>
>>     and is there another easy way to get mapinfo file into postgis
>>
>>     Thanks
>>     Ibad Raza
>>
>>
>>     _______________________________________________
>>     Qgis-user mailing list
>>    Qgis-user at lists.osgeo.org  <mailto:Qgis-user at lists.osgeo.org>
>>    http://lists.osgeo.org/mailman/listinfo/qgis-user
>
>
>     _______________________________________________
>     Qgis-user mailing list
>    Qgis-user at lists.osgeo.org <mailto:Qgis-user at lists.osgeo.org>
>    http://lists.osgeo.org/mailman/listinfo/qgis-user
>
>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-user/attachments/20130905/cd6fd820/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: test.zip
Type: application/zip
Size: 1445 bytes
Desc: not available
URL: <http://lists.osgeo.org/pipermail/qgis-user/attachments/20130905/cd6fd820/attachment-0001.zip>

------------------------------

Message: 2
Date: Thu, 5 Sep 2013 10:18:54 +0200
From: Wesley Roberts <jwesroberts at gmail.com>
To: "G. Allegri" <giohappy at gmail.com>
Cc: "qgis-user at lists.osgeo.org" <qgis-user at lists.osgeo.org>
Subject: Re: [Qgis-user] Android GPS streaming to QGis
Message-ID:
    <CAFik=FemZmrnhx=heLRuWF8hz_neEM5WjC76aX6U5juv6bkZZg at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Thanks Giovanni and Zoltan,

We make use of Android devices for work in Zambia and have been
"navigating" using an app called BackCountry Navigator. These options may
provide a nice alternative.

Regards,
Wesley


On Thu, Sep 5, 2013 at 9:26 AM, G. Allegri <giohappy at gmail.com> wrote:

> You need to bridge your Android device and something that emulate a serial
> port device for your laptop.
> I don't have experience with them, neither I know if open source solutions
> are available, but there are various solutions on the market, many of them
> using Bluetooth as the transmission mean between Android and the PC.
>
> Recently I heard about BlueNMEA and GPSDirect (this one for Windows and
> free only for non-commercial use).
>
> giovanni
>
>
>
> 2013/9/4 Zoltan Szecsei <zoltans at geograph.co.za>
>
>> Hi Guys,
>> Does anyone know of an app whereby I can link my Android phone to a
>> laptop running QGis, and have QGis read the GPS coords in realtime, and
>> track the position on a displayed image?
>>
>> Rather like a normal "car GPS", but using the GPS in my Android phone,
>> and tracking my position on my vectors and images that are being displayed
>> in QGis.
>>
>> TIA,
>> Zoltan
>>
>>
>>
>> --
>>
>> ==============================**=============
>> Zoltan Szecsei PrGISc [PGP0031]
>> Geograph (Pty) Ltd.
>> P.O. Box 7, Muizenberg 7950, South Africa.
>>
>> 65 Main Road, Muizenberg 7945
>> Western Cape, South Africa.
>>
>> 34? 6'16.35"S 18?28'5.62"E
>>
>> Tel: +27-21-7884897  Mobile: +27-83-6004028
>> Fax: +27-86-6115323     www.geograph.co.za
>> ==============================**=============
>>
>> ______________________________**_________________
>> Qgis-user mailing list
>> Qgis-user at lists.osgeo.org
>> http://lists.osgeo.org/**mailman/listinfo/qgis-user<http://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 at lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>



-- 
Dr Wesley Roberts
jwesroberts at gmail.com
Cell: +27(0)83 5355 646
skype: roberts-w
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-user/attachments/20130905/8f46b7e4/attachment-0001.html>

------------------------------

Message: 3
Date: Thu, 5 Sep 2013 10:15:47 +0000
From: S?bastien Debuisson <sebastien.debuisson at civc.fr>
To: "qgis-user at lists.osgeo.org" <qgis-user at lists.osgeo.org>
Subject: [Qgis-user] 1. Android GPS streaming to QGis (Zoltan Szecsei)
Message-ID:
    <e6f976a6405b4ce09199b841097361f4 at AM3PR02MB052.eurprd02.prod.outlook.com>
    
Content-Type: text/plain; charset="iso-8859-1"


________________________________________
De : qgis-user-bounces at lists.osgeo.org <qgis-user-bounces at lists.osgeo.org> de la part de qgis-user-request at lists.osgeo.org <qgis-user-request at lists.osgeo.org>
Envoy? : jeudi 5 septembre 2013 09:26
? : qgis-user at lists.osgeo.org
Objet : Qgis-user Digest, Vol 91, Issue 13

Send Qgis-user mailing list submissions to
        qgis-user at lists.osgeo.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.osgeo.org/mailman/listinfo/qgis-user
or, via email, send a message with subject or body 'help' to
        qgis-user-request at lists.osgeo.org

You can reach the person managing the list at
        qgis-user-owner at lists.osgeo.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Qgis-user digest..."


Today's Topics:

   1. Get Free Mobile Recharge! (Subbu sravan)
   2. Re: mapinfo file to postgis (ibad raza)
   3. 1. Android GPS streaming to QGis (Zoltan Szecsei)
      (S?bastien Debuisson)
   4. Re: 1. Android GPS streaming to QGis (Zoltan Szecsei)
      (Zoltan Szecsei)
   5. Re: Android GPS streaming to QGis (G. Allegri)


----------------------------------------------------------------------

Message: 1
Date: Thu, 5 Sep 2013 05:26:53 +0580
From: Subbu sravan <subbu.battula at gmail.com>
To: Qgis-user at lists.osgeo.org
Subject: [Qgis-user] Get Free Mobile Recharge!
Message-ID: <658f80193662505287707bafcb90bc3d at localhost.localdomain>
Content-Type: text/plain; charset="us-ascii"

An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-user/attachments/20130905/a21a3b9f/attachment-0001.html>

------------------------------

Message: 2
Date: Thu, 5 Sep 2013 09:58:18 +0500
From: ibad raza <ibadraza001 at gmail.com>
To: Bo Victor Thomsen <bo.victor.thomsen at gmail.com>
Cc: qgis-user at lists.osgeo.org
Subject: Re: [Qgis-user] mapinfo file to postgis
Message-ID:
        <CAD0k_teLO=m=+PYhWw3c7pK7Ukk1C2Gqptvy7+vkwbS+Rw7=kw at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

thanks Bo victor Thomsen

I have tried this query and was able to add different types of geometries
into my postgis
however the geometry column of every tables reads as wkb_geometry
geometry(MultiLineString,900914),

can anyone explain to me that what does this means, a normal geometry table
only has only this argument wkb_geometry geometry,


best
Ibad Raza


On Thu, Sep 5, 2013 at 2:49 AM, Bo Victor Thomsen <
bo.victor.thomsen at gmail.com> wrote:

>  Ibad -
>
> The problem is that MapInfo tab files can contain several types of
> geometry object all mixed together - lines, polygons, points ... in a
> single file. This is not allowed in Postgis tables used by QGIS.
> You have to split your "multi-type" tab file into several postgis tables,
> where each table only contains one type of geoobject
>
> Try the following on a command line (in windows):
>
> *for %a in (multilinestring multipolygon linestring polygon point
> multipoint none) do ogr2ogr -where "OGR_GEOMETRY='%a'" -f "PostgreSQL"
> PG:"host=**myserver**** user=**myuser**** dbname=**mydatabase****password=
> **mypassword****" -nlt %a -nln **tablename****_%a **mytabfile.tab*
>
> - Replace italic text as needed
> - If the commandline is put into a .cmd file: Replace every occurence of
> %a with %%a
>
> The command will create 7 new layers for each tabfile. Each new table will
> only contain one type of object (Depending on the contents of the tabfile,
> some or most of the tables will be empty)
>
> Regards
> Bo Victor Thomsen
> Aestas-GIS
> Denmark
>
>
> Den 04-09-2013 21:03, ibad raza skrev:
>
> hello list
>
>  I am trying to add a mapinfo file to postgis
> I have tried the fwtool ogr2ogr function
> but the problem is that everytime I add the file, some records are missing
> these are the records with no geometry which do not get added in the final
> table
>
>
>  can anyone tell me that firstlly how can I add the rows without geometry
> in the table as well.
>
>  and is there another easy way to get mapinfo file into postgis
>
>  Thanks
> Ibad Raza
>
>
> _______________________________________________
> Qgis-user mailing listQgis-user at lists.osgeo.orghttp://lists.osgeo.org/mailman/listinfo/qgis-user
>
>
>
> _______________________________________________
> Qgis-user mailing list
> Qgis-user at lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-user/attachments/20130905/4634afcb/attachment-0001.html>

------------------------------

Message: 3
Date: Thu, 5 Sep 2013 06:48:38 +0000
From: S?bastien Debuisson <sebastien.debuisson at civc.fr>
To: "qgis-user at lists.osgeo.org" <qgis-user at lists.osgeo.org>
Subject: [Qgis-user] 1. Android GPS streaming to QGis (Zoltan Szecsei)
Message-ID:
        <acf74cb5ff824bd19db54c9c3df49df9 at AM3PR02MB052.eurprd02.prod.outlook.com>

Content-Type: text/plain; charset="iso-8859-1"

Hi Zoltan

you can use GPS 2 bluetooth
https://play.google.com/store/apps/details?id=com.cajax.gps2bt2&hl=fr

Sebastien Debuisson
________________________________________
De : qgis-user-bounces at lists.osgeo.org <qgis-user-bounces at lists.osgeo.org> de la part de qgis-user-request at lists.osgeo.org <qgis-user-request at lists.osgeo.org>
Envoy? : mercredi 4 septembre 2013 21:00
? : qgis-user at lists.osgeo.org
Objet : Qgis-user Digest, Vol 91, Issue 11

Send Qgis-user mailing list submissions to
        qgis-user at lists.osgeo.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.osgeo.org/mailman/listinfo/qgis-user
or, via email, send a message with subject or body 'help' to
        qgis-user-request at lists.osgeo.org

You can reach the person managing the list at
        qgis-user-owner at lists.osgeo.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Qgis-user digest..."


Today's Topics:

   1. Android GPS streaming to QGis (Zoltan Szecsei)
   2. Re: Qgis-user Digest, Vol 91, Issue 9 (Richard Duivenvoorde)
   3. can't open Qgis Lisboa (Julio Cesar Canales Delgadillo)


----------------------------------------------------------------------

Message: 1
Date: Wed, 04 Sep 2013 16:31:25 +0200
From: Zoltan Szecsei <zoltans at geograph.co.za>
To: "qgis-user at lists.osgeo.org" <qgis-user at lists.osgeo.org>
Subject: [Qgis-user] Android GPS streaming to QGis
Message-ID: <5227443D.9010201 at geograph.co.za>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Hi Guys,
Does anyone know of an app whereby I can link my Android phone to a
laptop running QGis, and have QGis read the GPS coords in realtime, and
track the position on a displayed image?

Rather like a normal "car GPS", but using the GPS in my Android phone,
and tracking my position on my vectors and images that are being
displayed in QGis.

TIA,
Zoltan
---------------------------------------------------------
Hi Zoltan

you can use GPS 2 bluetooth
https://play.google.com/store/apps/details?id=com.cajax.gps2bt2&hl=fr

Sebastien Debuisson




--

===========================================
Zoltan Szecsei PrGISc [PGP0031]
Geograph (Pty) Ltd.
P.O. Box 7, Muizenberg 7950, South Africa.

65 Main Road, Muizenberg 7945
Western Cape, South Africa.

34? 6'16.35"S 18?28'5.62"E

Tel: +27-21-7884897  Mobile: +27-83-6004028
Fax: +27-86-6115323     www.geograph.co.za
===========================================



------------------------------

Message: 2
Date: Wed, 04 Sep 2013 17:00:33 +0200
From: Richard Duivenvoorde <rdmailings at duif.net>
To: Chalie Mulu <chalie_mulu at yahoo.com>
Cc: "qgis-user at lists.osgeo.org" <qgis-user at lists.osgeo.org>
Subject: Re: [Qgis-user] Qgis-user Digest, Vol 91, Issue 9
Message-ID: <52274B11.5080708 at duif.net>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

On 04-09-13 16:22, Chalie Mulu wrote:
> hi man
> when I open qgis 1.8 in win 7 bit 64 it says python error, would you
> tell how to fix it.
> belete

Hi Belete,

while not on Windows, I think nobody can answer your question if you do
not provide more information then you do now.

In the new website I will create a page to let you know what in general
we want to know, I think:

- preferably a descriptive title for your email
- which Operating System and version
- which QGIS version (exact)
- how you installed it (osgeo4w? msi-installer? own build?)
- at what time did it break (reinstall, new install, system update,
project??)
- what exactly is the error (not sure in the above if you mean that
"python error' is the error, or you mean there is a python error which
you did not write in you email

Without this info, it is very hard to answer for anybody. Or taking just
too much time because the answer will be a question to you etc etc.

So, please try again?

Regards,

Richard Duivenvoorde



------------------------------

Message: 3
Date: Wed, 04 Sep 2013 12:41:32 -0500
From: Julio Cesar Canales Delgadillo <cadj0506 at yahoo.com.mx>
To: qgis-user at lists.osgeo.org
Subject: [Qgis-user] can't open Qgis Lisboa
Message-ID: <522770CC.7090700 at yahoo.com.mx>
Content-Type: text/plain; charset="iso-8859-1"; Format="flowed"

Hello there,

I'm using Qgis Lisboa 1.8.0 on Windows 7 64 bits and all was working
well. Today I scanned my computer with anti-virus and now when I try to
open Qgis the following message appears: "the element /nircmd.exe/ to
which the direct access refers has been moved or changed and this direct
access will not work properly". Someone knows how to fix this problem?

Thanks in advance. Regards.

--
Dr. Julio Cesar Canales Delgadillo
Division of Environmental Sciences
Institute for Scientific and Technological Research of San Luis Potosi
Camino a la Presa San Jos? 2055, San Luis Potosi Mexico.
Phone: (444) 834-2000 ext. 2090

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-user/attachments/20130904/9796fc26/attachment-0001.html>

------------------------------

_______________________________________________
Qgis-user mailing list
Qgis-user at lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

End of Qgis-user Digest, Vol 91, Issue 11
*****************************************


------------------------------

Message: 4
Date: Thu, 05 Sep 2013 09:22:38 +0200
From: Zoltan Szecsei <zoltans at geograph.co.za>
To: qgis-user at lists.osgeo.org
Subject: Re: [Qgis-user] 1. Android GPS streaming to QGis (Zoltan
        Szecsei)
Message-ID: <5228313E.2080200 at geograph.co.za>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

It's very easy
You use this android software on your smarphone.
Connect yur PC and Smarphone with a bluetooth connection. (serial port).
Your bluetooth connection on your PC emulate a serial port.
Open Qgis, right click on the menubar and select GPS information
connect GPS/QGIS with the right port com or select autodetect.

We use often Qgis with a continuously stream (bluetooth or serial port) with no problem.

best regards

S?bastien Debuissn




Hi Sebastien,
Thanks for this pointer, will look at it (and similar).
How do I get QGis to then continuously read this stream of coordinates
and center it's current display on them?

Regards,
Zoltan


On 2013/09/05 08:48, S?bastien Debuisson wrote:
> Hi Zoltan
>
> you can use GPS 2 bluetooth
> https://play.google.com/store/apps/details?id=com.cajax.gps2bt2&hl=fr
>
> Sebastien Debuisson
> ________________________________________
> De : qgis-user-bounces at lists.osgeo.org <qgis-user-bounces at lists.osgeo.org> de la part de qgis-user-request at lists.osgeo.org <qgis-user-request at lists.osgeo.org>
> Envoy? : mercredi 4 septembre 2013 21:00
> ? : qgis-user at lists.osgeo.org
> Objet : Qgis-user Digest, Vol 91, Issue 11
>
> Send Qgis-user mailing list submissions to
>          qgis-user at lists.osgeo.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>          http://lists.osgeo.org/mailman/listinfo/qgis-user
> or, via email, send a message with subject or body 'help' to
>          qgis-user-request at lists.osgeo.org
>
> You can reach the person managing the list at
>          qgis-user-owner at lists.osgeo.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Qgis-user digest..."
>
>
> Today's Topics:
>
>     1. Android GPS streaming to QGis (Zoltan Szecsei)
>     2. Re: Qgis-user Digest, Vol 91, Issue 9 (Richard Duivenvoorde)
>     3. can't open Qgis Lisboa (Julio Cesar Canales Delgadillo)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 04 Sep 2013 16:31:25 +0200
> From: Zoltan Szecsei <zoltans at geograph.co.za>
> To: "qgis-user at lists.osgeo.org" <qgis-user at lists.osgeo.org>
> Subject: [Qgis-user] Android GPS streaming to QGis
> Message-ID: <5227443D.9010201 at geograph.co.za>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Hi Guys,
> Does anyone know of an app whereby I can link my Android phone to a
> laptop running QGis, and have QGis read the GPS coords in realtime, and
> track the position on a displayed image?
>
> Rather like a normal "car GPS", but using the GPS in my Android phone,
> and tracking my position on my vectors and images that are being
> displayed in QGis.
>
> TIA,
> Zoltan
> ---------------------------------------------------------
> Hi Zoltan
>
> you can use GPS 2 bluetooth
> https://play.google.com/store/apps/details?id=com.cajax.gps2bt2&hl=fr
>
> Sebastien Debuisson
>
>
>
>
> --
>
> ===========================================
> Zoltan Szecsei PrGISc [PGP0031]
> Geograph (Pty) Ltd.
> P.O. Box 7, Muizenberg 7950, South Africa.
>
> 65 Main Road, Muizenberg 7945
> Western Cape, South Africa.
>
> 34? 6'16.35"S 18?28'5.62"E
>
> Tel: +27-21-7884897  Mobile: +27-83-6004028
> Fax: +27-86-6115323     www.geograph.co.za
> ===========================================
>
>
>
> ------------------------------
>
> Message: 2
> Date: Wed, 04 Sep 2013 17:00:33 +0200
> From: Richard Duivenvoorde <rdmailings at duif.net>
> To: Chalie Mulu <chalie_mulu at yahoo.com>
> Cc: "qgis-user at lists.osgeo.org" <qgis-user at lists.osgeo.org>
> Subject: Re: [Qgis-user] Qgis-user Digest, Vol 91, Issue 9
> Message-ID: <52274B11.5080708 at duif.net>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> On 04-09-13 16:22, Chalie Mulu wrote:
>> hi man
>> when I open qgis 1.8 in win 7 bit 64 it says python error, would you
>> tell how to fix it.
>> belete
> Hi Belete,
>
> while not on Windows, I think nobody can answer your question if you do
> not provide more information then you do now.
>
> In the new website I will create a page to let you know what in general
> we want to know, I think:
>
> - preferably a descriptive title for your email
> - which Operating System and version
> - which QGIS version (exact)
> - how you installed it (osgeo4w? msi-installer? own build?)
> - at what time did it break (reinstall, new install, system update,
> project??)
> - what exactly is the error (not sure in the above if you mean that
> "python error' is the error, or you mean there is a python error which
> you did not write in you email
>
> Without this info, it is very hard to answer for anybody. Or taking just
> too much time because the answer will be a question to you etc etc.
>
> So, please try again?
>
> Regards,
>
> Richard Duivenvoorde
>
>
>
> ------------------------------
>
> Message: 3
> Date: Wed, 04 Sep 2013 12:41:32 -0500
> From: Julio Cesar Canales Delgadillo <cadj0506 at yahoo.com.mx>
> To: qgis-user at lists.osgeo.org
> Subject: [Qgis-user] can't open Qgis Lisboa
> Message-ID: <522770CC.7090700 at yahoo.com.mx>
> Content-Type: text/plain; charset="iso-8859-1"; Format="flowed"
>
> Hello there,
>
> I'm using Qgis Lisboa 1.8.0 on Windows 7 64 bits and all was working
> well. Today I scanned my computer with anti-virus and now when I try to
> open Qgis the following message appears: "the element /nircmd.exe/ to
> which the direct access refers has been moved or changed and this direct
> access will not work properly". Someone knows how to fix this problem?
>
> Thanks in advance. Regards.
>
> --
> Dr. Julio Cesar Canales Delgadillo
> Division of Environmental Sciences
> Institute for Scientific and Technological Research of San Luis Potosi
> Camino a la Presa San Jos? 2055, San Luis Potosi Mexico.
> Phone: (444) 834-2000 ext. 2090
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <http://lists.osgeo.org/pipermail/qgis-user/attachments/20130904/9796fc26/attachment-0001.html>
>
> ------------------------------
>
> _______________________________________________
> Qgis-user mailing list
> Qgis-user at lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>
> End of Qgis-user Digest, Vol 91, Issue 11
> *****************************************
> _______________________________________________
> Qgis-user mailing list
> Qgis-user at lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user


--

===========================================
Zoltan Szecsei PrGISc [PGP0031]
Geograph (Pty) Ltd.
P.O. Box 7, Muizenberg 7950, South Africa.

65 Main Road, Muizenberg 7945
Western Cape, South Africa.

34? 6'16.35"S 18?28'5.62"E

Tel: +27-21-7884897  Mobile: +27-83-6004028
Fax: +27-86-6115323     www.geograph.co.za
===========================================



------------------------------

Message: 5
Date: Thu, 5 Sep 2013 09:26:01 +0200
From: "G. Allegri" <giohappy at gmail.com>
To: Zoltan Szecsei <zoltans at geograph.co.za>
Cc: "qgis-user at lists.osgeo.org" <qgis-user at lists.osgeo.org>
Subject: Re: [Qgis-user] Android GPS streaming to QGis
Message-ID:
        <CAB4g1=wt5f8cykGYtZ-gEsfNoO6L9+b-_MsmFnKQj0AUpnwFJA at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

You need to bridge your Android device and something that emulate a serial
port device for your laptop.
I don't have experience with them, neither I know if open source solutions
are available, but there are various solutions on the market, many of them
using Bluetooth as the transmission mean between Android and the PC.

Recently I heard about BlueNMEA and GPSDirect (this one for Windows and
free only for non-commercial use).

giovanni



2013/9/4 Zoltan Szecsei <zoltans at geograph.co.za>

> Hi Guys,
> Does anyone know of an app whereby I can link my Android phone to a laptop
> running QGis, and have QGis read the GPS coords in realtime, and track the
> position on a displayed image?
>
> Rather like a normal "car GPS", but using the GPS in my Android phone, and
> tracking my position on my vectors and images that are being displayed in
> QGis.
>
> TIA,
> Zoltan
>
>
>
> --
>
> ==============================**=============
> Zoltan Szecsei PrGISc [PGP0031]
> Geograph (Pty) Ltd.
> P.O. Box 7, Muizenberg 7950, South Africa.
>
> 65 Main Road, Muizenberg 7945
> Western Cape, South Africa.
>
> 34? 6'16.35"S 18?28'5.62"E
>
> Tel: +27-21-7884897  Mobile: +27-83-6004028
> Fax: +27-86-6115323     www.geograph.co.za
> ==============================**=============
>
> ______________________________**_________________
> Qgis-user mailing list
> Qgis-user at lists.osgeo.org
> http://lists.osgeo.org/**mailman/listinfo/qgis-user<http://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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-user/attachments/20130905/79048aa5/attachment.html>

------------------------------

_______________________________________________
Qgis-user mailing list
Qgis-user at lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

End of Qgis-user Digest, Vol 91, Issue 13
*****************************************


------------------------------

_______________________________________________
Qgis-user mailing list
Qgis-user at lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

End of Qgis-user Digest, Vol 91, Issue 14
*****************************************
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-user/attachments/20130906/2cd824b1/attachment.html>


More information about the Qgis-user mailing list