[Qgis-user] Re: Spatialite queries

2011-06-09 Thread Chuck Young
Found the Find By Attribute Plugin and that seems to work well enpough

Thanks

Chuck

On Thu, Jun 9, 2011 at 5:50 PM, Chuck Young  wrote:

> Just wondering if there is a utility that allows one to select a shape
> through a GUI and display it / zoom to it.
>
> What I am working on is a set of shapes that represent areas where
> individuals work and I need to be able to go to any given area and find info
> on and display that area.
>
> I have been manually finding an area then creating an entry in the
> bookmarks but that seems a little dopey when we have all the power of a GIS.
>
> Chuck
>
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Georeferencer 3.1.9 bug (?) and work-around

2011-06-09 Thread Alister Hood
Sorry,
My comment was at the bottom... not sure how it got a >  in front of it.


Date: Fri, 10 Jun 2011 12:54:51 +1200
From: "Alister Hood" 
Subject: [Qgis-user] Georeferencer 3.1.9 bug (?) and work-around
To: ,
Message-ID:

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

Hi there,
 
> Date: Wed, 8 Jun 2011 18:04:04 -0400
> From: O 
> Subject: [Qgis-user] Georeferencer 3.1.9 bug (?) and work-around
> To: qgis-user 
> Message-ID: 
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Dear QGIS users,
> 
> Summary: I'm running the Georeferencer plugin 3.1.9 with QGIS 1.6.0 and it
> doesn't work correctly -- the raster is distorted and plotted in the wrong
> location. However, I found a work-around that fools the plugin into giving
> correct results, and appears to point out a serious bug in the plugin. (Or,
> I'm
> doing something wrong -- please let me know.)
> 
> (And please tell me if I've posted this in the wrong place.)
> 
> Suppose I have an image called "input.tif" that has some geospatial metadata
> with a CRS and image bounds. For the following discussion, here are the
> relevant lines that result from running "gdalinfo input.tif":
> 
> Size is 1101, 1091
> ...
> Upper Left ( 4578.469, -13361.035) ( 5d26'57.36"W, 2d10'18.28"S)
> Lower Left ( 4578.469, -13652.219) ( 5d26'57.36"W, 2d10'35.98"S)
> Upper Right ( 4872.322, -13361.035) ( 5d26'39.49"W, 2d10'18.28"S)
> Lower Right ( 4872.322, -13652.219) ( 5d26'39.49"W, 2d10'35.98"S)
> Center ( 4725.395, -13506.627) ( 5d26'48.43"W, 2d10'27.13"S)
> 
> Now suppose I open the Georeferencer and open this image, and define a
> transformation (say, "polynomial 1") with three ground control points
> (GCPs).
> When I tell it to "start georeferencing" and to load the result into my QGIS
> project, the image is hugely distorted and located in the wrong place. I
> found
> a BIG CLUE about what's happening when I asked it to "generate GDAL script".
> The result was:
> 
> gdal_translate -of GTiff -gcp 4690.78 13510.5 4434.32 -13412.7 \
> -gcp 4721.32 13469.4 4462.09 -13371.6 \
> -gcp 4753.5 13539.4 4497.52 -13458.7 \
> -gcp 4692 13536.2 4430.49 -13445.3 \
> "/path/input.tif" "/tmp/input.tif"
> 
> gdalwarp -r cubic -order 1 -co COMPRESS=NONE "/tmp/input.tif" \
> "/path/output.tif"
> 
> But if we look at the man pages for gdal_translate, the format for input of
> GCPs
> is:
> 
> -gcp pixel line easting northing elevation
> 
> The first argument to "-gcp" should be the x coordinate in *image* space,
> not in
> *coordinate* space. It should be the column number of the pixel in question
> (I
> don't know if it can be a floating point; hopefully it can). The second
> argument to "-gcp" has to be the *row* number of the pixel in the image
> being
> georeferenced. The "easting" and "northing" are indeed the x and y
> coordinates
> in the target coordinate system. But notice that in the gdal_translate
> command
> that the Georeferencer generated, the first two arguments are positions in
> coordinate space, not image space!
> 
> So, here's the work-around. We saw above that the size of the image is 1101
> x
> 1091. All we have to do is change the bounds of the input image so that the
> image's geographic coordinates match the image space coordinates. We can do
> that easily with gdal_translate, being careful to account for QGIS using a
> positive-up y-axis. Here's the command for the current case:
> 
> gdal_translate -of GTiff -a_ullr 0 0 1100 -1090 input.tif input_fixed.tif
> 
> Now, when we open the new input image (input_fixed.tif) into the
> Georeferencer
> and select GCPs, etc, it actually works!
> 
> M

>From my experience I think you're right that there is a "major bug" with the 
>georeferencer.  I too was getting extremely distorted (beyond recognition) 
>output rasters; in my case using a linear transformation.  I thought I only 
>had this problem when using more than two control points - but it's possible 
>I'm remembering that incorrectly, and I actually only got a sensible result by 
>choosing to create world files instead of new rasters.

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


[Qgis-user] Georeferencer 3.1.9 bug (?) and work-around

2011-06-09 Thread Alister Hood
Hi there,
 
> Date: Wed, 8 Jun 2011 18:04:04 -0400
> From: O 
> Subject: [Qgis-user] Georeferencer 3.1.9 bug (?) and work-around
> To: qgis-user 
> Message-ID: 
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Dear QGIS users,
> 
> Summary: I'm running the Georeferencer plugin 3.1.9 with QGIS 1.6.0 and it
> doesn't work correctly -- the raster is distorted and plotted in the wrong
> location. However, I found a work-around that fools the plugin into giving
> correct results, and appears to point out a serious bug in the plugin. (Or,
> I'm
> doing something wrong -- please let me know.)
> 
> (And please tell me if I've posted this in the wrong place.)
> 
> Suppose I have an image called "input.tif" that has some geospatial metadata
> with a CRS and image bounds. For the following discussion, here are the
> relevant lines that result from running "gdalinfo input.tif":
> 
> Size is 1101, 1091
> ...
> Upper Left ( 4578.469, -13361.035) ( 5d26'57.36"W, 2d10'18.28"S)
> Lower Left ( 4578.469, -13652.219) ( 5d26'57.36"W, 2d10'35.98"S)
> Upper Right ( 4872.322, -13361.035) ( 5d26'39.49"W, 2d10'18.28"S)
> Lower Right ( 4872.322, -13652.219) ( 5d26'39.49"W, 2d10'35.98"S)
> Center ( 4725.395, -13506.627) ( 5d26'48.43"W, 2d10'27.13"S)
> 
> Now suppose I open the Georeferencer and open this image, and define a
> transformation (say, "polynomial 1") with three ground control points
> (GCPs).
> When I tell it to "start georeferencing" and to load the result into my QGIS
> project, the image is hugely distorted and located in the wrong place. I
> found
> a BIG CLUE about what's happening when I asked it to "generate GDAL script".
> The result was:
> 
> gdal_translate -of GTiff -gcp 4690.78 13510.5 4434.32 -13412.7 \
> -gcp 4721.32 13469.4 4462.09 -13371.6 \
> -gcp 4753.5 13539.4 4497.52 -13458.7 \
> -gcp 4692 13536.2 4430.49 -13445.3 \
> "/path/input.tif" "/tmp/input.tif"
> 
> gdalwarp -r cubic -order 1 -co COMPRESS=NONE "/tmp/input.tif" \
> "/path/output.tif"
> 
> But if we look at the man pages for gdal_translate, the format for input of
> GCPs
> is:
> 
> -gcp pixel line easting northing elevation
> 
> The first argument to "-gcp" should be the x coordinate in *image* space,
> not in
> *coordinate* space. It should be the column number of the pixel in question
> (I
> don't know if it can be a floating point; hopefully it can). The second
> argument to "-gcp" has to be the *row* number of the pixel in the image
> being
> georeferenced. The "easting" and "northing" are indeed the x and y
> coordinates
> in the target coordinate system. But notice that in the gdal_translate
> command
> that the Georeferencer generated, the first two arguments are positions in
> coordinate space, not image space!
> 
> So, here's the work-around. We saw above that the size of the image is 1101
> x
> 1091. All we have to do is change the bounds of the input image so that the
> image's geographic coordinates match the image space coordinates. We can do
> that easily with gdal_translate, being careful to account for QGIS using a
> positive-up y-axis. Here's the command for the current case:
> 
> gdal_translate -of GTiff -a_ullr 0 0 1100 -1090 input.tif input_fixed.tif
> 
> Now, when we open the new input image (input_fixed.tif) into the
> Georeferencer
> and select GCPs, etc, it actually works!
> 
> M

>From my experience I think you're right that there is a "major bug" with the 
>georeferencer.  I too was getting extremely distorted (beyond recognition) 
>output rasters; in my case using a linear transformation.  I thought I only 
>had this problem when using more than two control points - but it's possible 
>I'm remembering that incorrectly, and I actually only got a sensible result by 
>choosing to create world files instead of new rasters.

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


[Qgis-user] Spatialite queries

2011-06-09 Thread Chuck Young
Just wondering if there is a utility that allows one to select a shape
through a GUI and display it / zoom to it.

What I am working on is a set of shapes that represent areas where
individuals work and I need to be able to go to any given area and find info
on and display that area.

I have been manually finding an area then creating an entry in the bookmarks
but that seems a little dopey when we have all the power of a GIS.

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


[Qgis-user] Apply Style to multiple layers

2011-06-09 Thread Chuck Young
Is there a way to apply a style to multiple layers with one action?

I have a set of independent layers that are similar data but kept distinct
for clarity.  I need to be able to apply the same style to all selected
layers rather than going to each one and going through the properties, load
style, etc.

Thanks

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


Re: [Qgis-user] attribute table

2011-06-09 Thread Giovanni Manghi
Hi,

with the field calculator you can clone the column into a new one of
"integer" or "decimal" type.

Cheers

-- Giovanni --


On Thu, 2011-06-09 at 08:35 -0700, Julio Cesar Canales DElgadillo wrote:
> Hello everybody,
> 
> Do you know how can I change the type of a field in the attributes
> table of a shp? I'm trying to get the counts of the values of a field
> that is determined as string, thus in the query, qgis doesn't
> recognize the difference between 10 and 14 (because as string both
> have a 1). I thing that changing the field to type integer this
> problem can be solved, but I don't know how to do that.
> If  you now how to do it and can share the tipp, it would be great for
> me.
> 
> Thanks in advance.
> 
> Biól.MCF. Julio César Canales Delgadillo.
> Verhaltensbiologie
> Barbarastr. 11
> Fachbereich 5 Biologie/Chemie
> Universität Osnabrück
> 49076 Osnabrück
> Phone: +(49) 0541 969 3803
> Mobil: +(49) 52 043 87082
> Alternative E-mail: julio.delgadi...@biologie.uni-osnabrueck.de
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user


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


[Qgis-user] attribute table

2011-06-09 Thread Julio Cesar Canales DElgadillo
Hello everybody,

Do you know how can I change the type of a field in the attributes table of a 
shp? I'm trying to get the counts of the values of a field that is determined 
as string, thus in the query, qgis doesn't recognize the difference between 10 
and 14 (because as string both have a 1). I thing that changing the field to 
type integer this problem can be solved, but I don't know how to do that.
If  you now how to do it and can share the tipp, it would be great for me.

Thanks in advance.

Biól.MCF. Julio César Canales Delgadillo.

Verhaltensbiologie

Barbarastr. 11

Fachbereich 5 Biologie/Chemie

Universität Osnabrück

49076 Osnabrück

Phone: +(49) 0541 969 3803

Mobil: +(49) 52 043 87082

Alternative E-mail: julio.delgadi...@biologie.uni-osnabrueck.de___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] python error in opening

2011-06-09 Thread Giuseppe Sucameli
Hi Ahmet,

2011/6/9 ahmet temiz 

> I am getting a python error message at opening of QGIS 1.7 and
> gdal requiring modules are not working.
>
> here is the part of the error message:
>
> Couldn't load plugin GdalTools due an error when
> calling its classFactory() method
>

Maybe you miss the python-gdal library. Install it and try again.
Cheers.


> Python version:
> 2.6.6 (r266:84292, Sep 15 2010, 16:02:57)
> [GCC 4.4.5]
>
>
> QGIS version:
> 1.7.0-Wroclaw Wroclaw, 15677M
> 
>
> what do I have to do ?
>
> regards
> --
> Ahmet Temiz
> Jeoloji Müh.
> Afet ve Acil Durum Yönetimi Başkanlığı
> Planlama ve Zarar Azaltma Dairesi Başkanlığı
> Bilgi ve CBS grubu
> Eskişehir Yolu 10. km.
> Lodumlu / Ankara
> Tel : 0 312 2872680 / 1535
> 
>
> Ahmet Temiz
> Geological Eng.
> Information Systems - GIS Group
> Disaster and Emergency Management
> of Presidency
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>



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


Re: [Qgis-user] python error in opening

2011-06-09 Thread ahmet temiz
that was directly picked up from the error windows at startup of qgis
. Same window
appears when I tried to load gdal plugin.

09 Haziran 2011 11:31 tarihinde Marco Bernasocchi
 yazdı:
> It should be in the error windows that says there has been an error. or if
> you start qgis from a console in the console as well.
> ciao
> Marco
>
> On 06/09/2011 10:12 AM, ahmet temiz wrote:
>>
>> hello
>>
>> how can I get it
>>
>> 09 Haziran 2011 11:06 tarihinde Camilo Polymeris
>>  yazdı:
>>>
>>> Could you post the whole python backtrace to see where the error
>>> originates?
>>> Regards
>>>
>>> Camilo
>>>
>>> El jun 9, 2011 2:17 a.m., "ahmet temiz"
>>>  escribió:

 hello

 I am getting a python error message at opening of QGIS 1.7 and
 gdal requiring modules are not working.

 here is the part of the error message:

 Couldn't load plugin GdalTools due an error when
 calling its classFactory() method
 
 Python version:
 2.6.6 (r266:84292, Sep 15 2010, 16:02:57)
 [GCC 4.4.5]


 QGIS version:
 1.7.0-Wroclaw Wroclaw, 15677M
 

 what do I have to do ?

 regards
 --
 Ahmet Temiz
 Jeoloji Müh.
 Afet ve Acil Durum Yönetimi Başkanlığı
 Planlama ve Zarar Azaltma Dairesi Başkanlığı
 Bilgi ve CBS grubu
 Eskişehir Yolu 10. km.
 Lodumlu / Ankara
 Tel : 0 312 2872680 / 1535
 

 Ahmet Temiz
 Geological Eng.
 Information Systems - GIS Group
 Disaster and Emergency Management
 of Presidency
 ___
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-user
>>
>>
>
>



-- 
Ahmet Temiz
Jeoloji Müh.
Afet ve Acil Durum Yönetimi Başkanlığı
Planlama ve Zarar Azaltma Dairesi Başkanlığı
Bilgi ve CBS grubu
Eskişehir Yolu 10. km.
Lodumlu / Ankara
Tel : 0 312 2872680 / 1535


Ahmet Temiz
Geological Eng.
Information Systems - GIS Group
Disaster and Emergency Management
of Presidency
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] python error in opening

2011-06-09 Thread Marco Bernasocchi
It should be in the error windows that says there has been an error. or 
if you start qgis from a console in the console as well.

ciao
Marco

On 06/09/2011 10:12 AM, ahmet temiz wrote:

hello

how can I get it

09 Haziran 2011 11:06 tarihinde Camilo Polymeris  yazdı:

Could you post the whole python backtrace to see where the error originates?
Regards

Camilo

El jun 9, 2011 2:17 a.m., "ahmet temiz"  escribió:

hello

I am getting a python error message at opening of QGIS 1.7 and
gdal requiring modules are not working.

here is the part of the error message:

Couldn't load plugin GdalTools due an error when
calling its classFactory() method

Python version:
2.6.6 (r266:84292, Sep 15 2010, 16:02:57)
[GCC 4.4.5]


QGIS version:
1.7.0-Wroclaw Wroclaw, 15677M


what do I have to do ?

regards
--
Ahmet Temiz
Jeoloji Müh.
Afet ve Acil Durum Yönetimi Başkanlığı
Planlama ve Zarar Azaltma Dairesi Başkanlığı
Bilgi ve CBS grubu
Eskişehir Yolu 10. km.
Lodumlu / Ankara
Tel : 0 312 2872680 / 1535


Ahmet Temiz
Geological Eng.
Information Systems - GIS Group
Disaster and Emergency Management
of Presidency
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user





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


Re: [Qgis-user] python error in opening

2011-06-09 Thread ahmet temiz
hello

how can I get it

09 Haziran 2011 11:06 tarihinde Camilo Polymeris  yazdı:
> Could you post the whole python backtrace to see where the error originates?
> Regards
>
> Camilo
>
> El jun 9, 2011 2:17 a.m., "ahmet temiz"  escribió:
>> hello
>>
>> I am getting a python error message at opening of QGIS 1.7 and
>> gdal requiring modules are not working.
>>
>> here is the part of the error message:
>>
>> Couldn't load plugin GdalTools due an error when
>> calling its classFactory() method
>> 
>> Python version:
>> 2.6.6 (r266:84292, Sep 15 2010, 16:02:57)
>> [GCC 4.4.5]
>>
>>
>> QGIS version:
>> 1.7.0-Wroclaw Wroclaw, 15677M
>> 
>>
>> what do I have to do ?
>>
>> regards
>> --
>> Ahmet Temiz
>> Jeoloji Müh.
>> Afet ve Acil Durum Yönetimi Başkanlığı
>> Planlama ve Zarar Azaltma Dairesi Başkanlığı
>> Bilgi ve CBS grubu
>> Eskişehir Yolu 10. km.
>> Lodumlu / Ankara
>> Tel : 0 312 2872680 / 1535
>> 
>>
>> Ahmet Temiz
>> Geological Eng.
>> Information Systems - GIS Group
>> Disaster and Emergency Management
>> of Presidency
>> ___
>> Qgis-user mailing list
>> Qgis-user@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/qgis-user
>



-- 
Ahmet Temiz
Jeoloji Müh.
Afet ve Acil Durum Yönetimi Başkanlığı
Planlama ve Zarar Azaltma Dairesi Başkanlığı
Bilgi ve CBS grubu
Eskişehir Yolu 10. km.
Lodumlu / Ankara
Tel : 0 312 2872680 / 1535


Ahmet Temiz
Geological Eng.
Information Systems - GIS Group
Disaster and Emergency Management
of Presidency
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] python error in opening

2011-06-09 Thread Camilo Polymeris
Could you post the whole python backtrace to see where the error originates?
Regards

Camilo
El jun 9, 2011 2:17 a.m., "ahmet temiz"  escribió:
> hello
>
> I am getting a python error message at opening of QGIS 1.7 and
> gdal requiring modules are not working.
>
> here is the part of the error message:
>
> Couldn't load plugin GdalTools due an error when
> calling its classFactory() method
> 
> Python version:
> 2.6.6 (r266:84292, Sep 15 2010, 16:02:57)
> [GCC 4.4.5]
>
>
> QGIS version:
> 1.7.0-Wroclaw Wroclaw, 15677M
> 
>
> what do I have to do ?
>
> regards
> --
> Ahmet Temiz
> Jeoloji Müh.
> Afet ve Acil Durum Yönetimi Başkanlığı
> Planlama ve Zarar Azaltma Dairesi Başkanlığı
> Bilgi ve CBS grubu
> Eskişehir Yolu 10. km.
> Lodumlu / Ankara
> Tel : 0 312 2872680 / 1535
> 
>
> Ahmet Temiz
> Geological Eng.
> Information Systems - GIS Group
> Disaster and Emergency Management
> of Presidency
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] No geometry for sql server

2011-06-09 Thread Christophe B
Hello Nathan,

thanks for your last blog post
on
MSSQL.
Just a little question : ogr2ogr create a geometry type with -overwrite
control
It is possible to use the geography GEOM_TYPE ? (all my tables are in geography
type)

On OSGeo4w shell :
ogr2ogr -overwrite -f MSSQLSpatial "MSSQL:server=server;database=
basename;trusted_connection=yes;GeometryFormat=wkb" "C:\Shape\temp.shp" -lco
SRID=4326 -lco GEOM_TYPE=GEOGRAPHY

return :
ERROR 1: INSERT command for new feature failed. [Microsoft][ODBC SQL Server
Driv
er][SQL Server]A .NET Framework error occurred during execution of
user-defined
routine or aggregate "geography":
System.FormatException: 24204: The spatial reference identifier (SRID) is
not va
lid. The specified SRID must match one of the supported SRIDs displayed in
the s
ys.spatial_reference_systems catalog view.

yet, there is [4326EPSG4326GEOGCS["WGS 84",...] on the
sys.spatial_reference_systems

Have you encountered the same problem ?


2011/4/13 Nathan Woodrow 

> The issue is not with the python code itself but rather something in the
> qgis code for the ogr provider.  I know there is a bug there I'm just having
> trouble tracking down what it is.
>
>
> On Wed, Apr 13, 2011 at 6:07 PM, Yves Jacolin  wrote:
>
>> Christophe,
>>
>> Why do you say the issue come from the python code? Your example shows
>> nothing
>> ;)
>>
>> What is the result of your last command?
>>
>> Y.
>> Le mercredi 13 avril 2011 09:49:04, Christophe B a écrit :
>> > Hello Yves,
>> >
>> > I tried to convert my table to a shapfile with ogr2ogr (GDAL 1.8.0,
>> > released 2011/01/02) and it works : my shapfile has geometry and
>> attribute
>> > data. It is therefore a problem whis python code !
>> >
>> > >>> conn_string ="MSSQL:server=.\SQLEXPRESS;
>> >
>> >
>> database=ObservatoireCommerce;tables=dbo.T_CommuneGeographie;trusted_connec
>> > tion=yes"
>> >
>> > >>> qgis.utils.iface.addVectorLayer(conn_string,'test','ogr')
>> >
>> > 2011/4/12 Yves Jacolin 
>> >
>> > > Christophe,
>> > >
>> > > could you test ogr directly to connect to your SQL Server? For example
>> > > convert
>> > > sql server layer into shapefile. You will know if this is an ogr or
>> QGIS
>> > > issue.
>> > >
>> > > Y.
>> > >
>> > > Le mardi 12 avril 2011 12:39:21, Nathan Woodrow a écrit :
>> > > > This seems to be a bug, I have noticed it is happens mainly on
>>  Windows
>> > >
>> > > XP
>> > >
>> > > > but Windows 7 also has this bug.  I'm not sure where the problem is,
>> I
>> > > > suspect QGIS as OGR via command line returns the correct objects.
>> > > >
>> > > > - Nathan
>> > > >
>> > > > On Tue, Apr 12, 2011 at 8:16 PM, Christophe B > >
>> > >
>> > > wrote:
>> > > > > Hello List,
>> > > > >
>> > > > > I now test the ability to connect to SQL Server data whis GDAL 1.8
>> of
>> > > > > QGIS 1.7.
>> > > > > The connection is correct but I have no geometry in return, and
>> the
>> > >
>> > > right
>> > >
>> > > > > attribute data (error).
>> > > > > Is a problem in GDAL / OGR? or QGIS 1.7?
>> > > > >
>> > > > > Should we open a new ticket ?
>> > > > >
>> > > > > Thank you in advance
>> > > > >
>> > > > > Christophe Baume
>> > > > >
>> > > > > ___
>> > > > > Qgis-user mailing list
>> > > > > Qgis-user@lists.osgeo.org
>> > > > > http://lists.osgeo.org/mailman/listinfo/qgis-user
>> > >
>> > > --
>> > > Yves Jacolin
>> > >
>> > > http://yjacolin.gloobe.org
>>
>> --
>> Yves Jacolin
>>
>> http://yjacolin.gloobe.org
>> ___
>> Qgis-user mailing list
>> Qgis-user@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/qgis-user
>>
>
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>
>
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user