[Qgis-user] [bug] Crash of QGIS 0.9.1 opening attribut table

2008-01-10 Thread Jacolin Yves
HI list,

I would like to confirm a bug which crash QGIS 0.9.1.

I am editing a layer, copying-pasting a feature from a layer to another one. 
As the attribute table are different for the two layers, when I save my 
modification, a windows alert me that there is a problem with the type of the 
fields XXX (which is boolean, and I try to instert text for example).

With the 0.8.0 release, I opened the atribut table, looking for the -1 id and 
change the incorrect data and save my layer. However, with the 0.9.1 release, 
QGIS crash when I try to open the attribut table.

Do you this issue? Do I need to fill a bug report? Does someone can reproduce 
this bug?

Thanks for your great work.

Y.
-- 
Yves Jacolin
---
http://softlibre.gloobe.org
___
Qgis-user mailing list
Qgis-user@lists.qgis.org
http://lists.qgis.org/cgi-bin/mailman/listinfo/qgis-user


Re: [Qgis-user] [bug] Crash of QGIS 0.9.1 opening attribut table

2008-01-10 Thread Tim Sutton
Hi Jacolin

Do you have a bug tracker account? Contact me if you need one. Please
check that there isnt an existing bug report for this. If there is
append your comments. If not feel free to open a new bug.

Regards

Tim

2008/1/10, Jacolin Yves [EMAIL PROTECTED]:
 HI list,

 I would like to confirm a bug which crash QGIS 0.9.1.

 I am editing a layer, copying-pasting a feature from a layer to another one.
 As the attribute table are different for the two layers, when I save my
 modification, a windows alert me that there is a problem with the type of the
 fields XXX (which is boolean, and I try to instert text for example).

 With the 0.8.0 release, I opened the atribut table, looking for the -1 id and
 change the incorrect data and save my layer. However, with the 0.9.1 release,
 QGIS crash when I try to open the attribut table.

 Do you this issue? Do I need to fill a bug report? Does someone can reproduce
 this bug?

 Thanks for your great work.

 Y.
 --
 Yves Jacolin
 ---
 http://softlibre.gloobe.org
 ___
 Qgis-user mailing list
 Qgis-user@lists.qgis.org
 http://lists.qgis.org/cgi-bin/mailman/listinfo/qgis-user



-- 
Tim Sutton
QGIS Project Steering Committee Member - Release  Manager
Visit http://qgis.org for a great open source GIS
openModeller Desktop Developer
Visit http://openModeller.sf.net for a great open source ecological
niche modelling tool
Home Page: http://tim.linfiniti.com
Skype: timlinux
Irc: timlinux on #qgis at freenode.net
___
Qgis-user mailing list
Qgis-user@lists.qgis.org
http://lists.qgis.org/cgi-bin/mailman/listinfo/qgis-user


Re: [Qgis-user] SPLIT character encoding problem?

2008-01-10 Thread Micha Silver
Hello David:


I also think you have a permissions problem. See below...


davideps wrote:

 Hi everyone,

 I'm still working on this and am not actually sure the character encoding is
 causing the problem. According to
 http://tlt.psu.edu/suggestions/international/web/encoding/05nonroman.html,
 the coding for hebrew windows should be similar to ISO-8859-8. But, I'm
 getting a permission denied error in the geometry column even though I am
 the owner of the database... I've pasted text from the terminal when I run
 shp2pgsql and also from the postgresql log file. Any help would be
 appreciated!

 -david


 --sudo shp2pgsql -s 2039 -W ISO-8859-8 URBANI.shp urban_areas | psql
 spatialtest

 Shapefile type: Polygon
 Postgis type: MULTIPOLYGON[2]
 SET
 BEGIN
 NOTICE:  CREATE TABLE will create implicit sequence urban_areas_gid_seq
 for serial column urban_areas.gid
 NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index
 urban_areas_pkey for table urban_areas
 CREATE TABLE
 ERROR:  permission denied for relation geometry_columns
   
 ^^^

Check the grants on geometry_columns. i.e. in psql do:

geodata= \z geometry_columns;
   Access privileges for database geodata
 Schema |   Name   | Type  |Access privileges
+--+---+--
 public | geometry_columns | table | 
{postgres=arwdRxt/postgres,dba=arwdRxt/postgres}
(1 row)

You probably should have ALL PRIVILEGES (arwdRxt) on the 
geometry_columns table for whatever database user is trying to do the 
shp2pgsql insert.

Cheers,
Micha

-- 
Micha Silver
Arava Development Co, Sapir, Israel
tel: +972(8)6592270
cell: +972(52)3665918

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


[Qgis-user] How to identify a raster on the map?

2008-01-10 Thread andrea pacifici
Hi,
I have a Qgis-GRASS GIS project containing more than 200 rasters: it is a
GIS project about a portion of Mars (yes... the planet!).
Often, I need to identify the name of one of such rasters just by clicking
on it on the map.
Which is the best way to do this with Qgis? The Identify button give
information on a raster only if the raster it is already selected.
There is a plugin to do this?

Otherwise, I think the only way is to build a vector layer representing
raster footprints, and interrogate it.

Thanks

Andrea

-- 
_

Dott. Geol. Andrea Pacifici, Ph.D.
Via della Billona 1093,
55100 Lucca, Italy
Cell. +39328-09918108
E-Mail [EMAIL PROTECTED]
___
Qgis-user mailing list
Qgis-user@lists.qgis.org
http://lists.qgis.org/cgi-bin/mailman/listinfo/qgis-user


Re: [Qgis-user] How to identify a raster on the map?

2008-01-10 Thread Tim Sutton
Hi Andrea

The best way to do this would probably to use the gdal shptille
utility to build a shapefile that contains indexes to each image.See

http://www.gdal.org/gdaltindex.html

A plugin like you envisage should be possible but none has been written yet.

Regards

Tim

2008/1/10, andrea pacifici [EMAIL PROTECTED]:
 Hi,
 I have a Qgis-GRASS GIS project containing more than 200 rasters: it is a
 GIS project about a portion of Mars (yes... the planet!).
 Often, I need to identify the name of one of such rasters just by clicking
 on it on the map.
 Which is the best way to do this with Qgis? The Identify button give
 information on a raster only if the raster it is already selected.
 There is a plugin to do this?

 Otherwise, I think the only way is to build a vector layer representing
 raster footprints, and interrogate it.

 Thanks

 Andrea

 --
 _

 Dott. Geol. Andrea Pacifici, Ph.D.
 Via della Billona 1093,
 55100 Lucca, Italy
 Cell. +39328-09918108
 E-Mail [EMAIL PROTECTED]
 ___
 Qgis-user mailing list
 Qgis-user@lists.qgis.org
 http://lists.qgis.org/cgi-bin/mailman/listinfo/qgis-user




-- 
Tim Sutton
QGIS Project Steering Committee Member - Release  Manager
Visit http://qgis.org for a great open source GIS
openModeller Desktop Developer
Visit http://openModeller.sf.net for a great open source ecological
niche modelling tool
Home Page: http://tim.linfiniti.com
Skype: timlinux
Irc: timlinux on #qgis at freenode.net
___
Qgis-user mailing list
Qgis-user@lists.qgis.org
http://lists.qgis.org/cgi-bin/mailman/listinfo/qgis-user