Re: [Qgis-user] Problem with PROCESSING-GRASS Algorithms

2019-03-04 Thread Claas Leiner

Yes,

I had the same problem (Ubuntu 16.04)

My Workaroud:

Open the file

/usr/share/qgis/python/plugins/processing/algs/grass7/Grass7Utils.py

and delete every line with:

encoding="cp{}".format(Grass7Utils.getWindowsCodePage()) if isWindows() 
else None,


After that I can run Processing-Grass-Commands,

Cöaas

--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de

http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
QGIS Projekt | http://qgis.org/de/site/
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] spatialite with update trigger seems to result in 'unselectable' geometry

2019-02-07 Thread Claas Leiner

Hi Janneke

in a similar problem,
it helped to update the spatial index:

-
CREATE TRIGGER update_geom AFTER UPDATE ON watersources BEGIN

UPDATE watersources SET geom = Transform(MakePoint(east, north, 4326), 
32638) WHERE id=1678;

-- I have done this in my trigger
Select recoverSpatialIndex('watersources','geom');
SELECT UpdateLayerStatistics('watersources');

END




--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de

http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
QGIS Projekt | http://qgis.org/de/site/
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] spatialite layer does not show

2018-12-19 Thread Claas Leiner

Hi Reginald,

Sometimes a invalid spatialIndex is a reason, that spatialite layer does 
not shown.


Open the DB-manager in QGIS
Klick of your database in the tree and and then open the SQL-Windows 
(press F2).


execute this statement in the SQL-Windows of the DB-Manager:
select recoverspatialindex('tablename','geom');

after that execute:
select updatelayerstatistics('tablename');

tablename = name of the spatialite layer
geom= name of the geometry column

Claas


--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de
http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Iterators in QGIS

2018-11-13 Thread Claas Leiner

Hi,

you can convert with ogr2ogr in a batch-file:



Windows:
Copy this code in a file called shp2gpkg.bat
---.
@echo off
echo Write Shapes to Geopackage

set /p db="Name of the geopackage:  "

set /p pfa="Path to Shapes: "

set /p kbs="EPSG of SRS?"

pushd "%pfa%"
for %%i in (*.shp) do (
ogr2ogr --config OGR_SQLITE_SYNCHRONOUS OFF  --config OGR_SQLITE_CACHE 
8192 -f "GPKG" -skipfailures -update -addfields -gt unlimited -nlt 
PROMOTE_TO_MULTI -a_srs EPSG:%kbs% %db%.gpkg %%i

)
--
and save shp2gpkg.bat
to C:\path_to__gis_installation\bin

then you can rund shp2gpkg.bat in the osge4wshell to convert a directory 
with shapefiles in as Geopackage.


---

Linux:
Copy this code in a file called shp2gpkg.sh
---
#!/bin/bash
# shp2gpkg Shapes to Geopackge

read -p "Name of the geopackage and return:   " db
echo
echo
read -p "Path to the Shapes   " verzeich
echo
echo
read -p "EPSG of SRS?   " kbs
echo
echo
cd $verzeich

#shp
for shps in *.shp; do
ogr2ogr --config OGR_SQLITE_SYNCHRONOUS OFF  --config OGR_SQLITE_CACHE 
8192 -f "GPKG" -skipfailures -update -addfields -gt unlimited -nlt 
PROMOTE_TO_MULTI -a_srs EPSG:$kbs $db.gpkg $shps

done
-
and save shp2gpkg.sh
to /home/username/bin
then you can rund shp2gpkg.sh to convert a directory with shapefiles in 
a Geopackage.

------

Claas



--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de

http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
QGIS Projekt | http://qgis.org/de/site/
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] QGIS user meeting DE / QGIS-Anwendertreffen 2018 - Anmeldung geöffnet

2018-08-02 Thread Claas Leiner
This message provides information about QGIS user meeting in Germany and 
is therefore written in German.


-

Liebe Leute,

endlich ist es so weit:

Sie können Sich zum QGIS-Anwendertreffen 2018 in Essen anmelden.

Das Treffen findet am 14. September in Essen statt. Die Teilnahme am 
Hauptprogramm ist kostenlos - bei Buchung eines Workshops wir eine 
Beitrag von 100 € fällig.


Sämtliche Infos sind hier zu finden:

http://www.qgis.de/doku.php?id=site:anwendertreffen:essen2018

Anmerkung:

Es sind bisher nur 3 Workshops gelistet - Ein vierter kommt 
wahrscheinlich noch ins Angebot - Inhalt und Referent ist ab der 
nächsten Woche bekannt.



Viele Grüße,

Claas Leiner

--

Claas Leiner
QGIS Anwendergruppe DE

Wilhelmshöher Allee 304 E
34131 Kassel
0561/56013445
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] qgis 3.2 attribute table thousand separator

2018-06-29 Thread Claas Leiner

Hi,

In my opinion, no representation of a thousand separator in the 
attribute table is required. This is confusing for the users. By 
default, the attribute table should show only data, not a representation.

If needed, it can be created using the expression format_number ().

format_number(11615,0) returns 11.615
format_number(11615,2) returns 11.615,00

This is easier than in the operating system settings.

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

[Qgis-user] QGIS User Meeting 2018: Lectures and workshops wanted!

2018-06-22 Thread Claas Leiner
This mail refers to the German-speaking QGIS user meeting in Essen and 
is therefore written in German.



Liebe Leute,

am 14. September 2018 findet in Essen das 8. deutschlandweite 
QGIS-Anwendertreffen statt.


Wir suchen noch Vorträge, Workshops und Stammtisch-Betreuer!


-
Vorträge:

Die Länge eines Vortrags beträgt 20 Minuten + 10 Minuten Diskussion.
Wir suchen insbesondere nach Beiträgen rund um den praktischen Einsatz 
von QGIS in Behörden und Firmen sowie nach Erfahrungsberichten zur 
Migration auf QGIS.
Wobei hat sich QGIS besonders bewährt? Welche Probleme sind aufgetaucht 
und wie wurden Sie gelöst? Wie kommen die Mitarbeiter/innen mit QGIS zu 
recht? Mit welchen überraschenden Tricks sind im QGIS räumliche 
Fragestellungen und Darstellungsziele gelöst worden? Wir sind eine 
effektive Datenhaltung und der Datenaustausch umgesetzt worden?


Das wären beispielhafte Fragen, zu den es spannende Vorträge geben könnte.


---
Workshops:

Für einen Workshop stehen 3 Stunden zu Verfügung. Ziel ist es, 
interessante Arbeitsabläufe im QGIS an übersichtlichen Beispielen 
praktisch durchzuführen. Ob eher auf die Visualisierung oder die 
Geodaten-Verarbeitung bezogen - wir freuen uns über alle Vorschläge!


Inhalte, Zielgruppe und erforderliche QGIS-Version müssen genau 
beschrieben werden. Ein Workshop-Skript und Übungsdaten zum Mitnehmen 
sollten zur Verfügung gestellt werden. Die Teilnehmer/innen nutzen ihren 
eigenen Laptop und müssen spätestens drei Tage vor dem Workshop die 
Möglichkeit haben, Übungsdaten herunterzuladen.
Wir bitten daran zu denken, die Workshops aufs Thema zu zentrieren und 
nicht zu überfrachten - drei Stunden sind schnell vorbei! Außerdem 
sollten die Workshops möglichst auch ohne Internetverbindung 
durchführbar sein.




---
Stammtische-Moderator/innen:

Auf dem letzten Anwendertreffen haben wir das erste mal thematische 
Stammtische angeboten, bei denen sich die Teilnehmer/innen über 
spezifische Themen austauschen sollten. Ziel war es, dem fachlichen 
Gespräch der QGIS-Anwender/innen untereinander mehr Raum zu bieten als 
nur die Pausen zwischen den Vorträgen. Dieses Konzept soll weiter 
verfolgt werden. Wir suchen noch nach Stammtisch-Moderator/innen die, 
Interessierte zu bestimmten Themen zusammenbringen. Die Themen können 
technisch sein (wie z.B. QGIS und Datenbanken) sich auf ein 
Arbeitsumfeld beziehen (wie z.B. QGIS in der öffentlichen Verwaltung) 
oder auch in andere Richtungen gehen.



--
Vorschläge bitte bis zum 1. Juli an cl...@qgis.de

Vielen Dank!

Claas


--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de

http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
QGIS Projekt | http://qgis.org/de/site/
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] GEOS-Verarbeitungsfehler: Ein oder mehrere Eingabeobjekte haben ungültige Geometrien.

2018-05-25 Thread Claas Leiner

Hi!

Alternative

Toolbox > GRASS > v.overlay

that runs with every geometry

Greatings, Claas

--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de

http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
QGIS Projekt | http://qgis.org/de/site/
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] QGIS 3 Modeller

2018-03-01 Thread Claas Leiner

Hello,

I habe a question to Graphical Modeller in qgis 3

Is there any way to convert qgis 2 models to qgis 3 without having to 
completely rebuild the models?


many greetings,

Claas

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

[Qgis-user] ALKIS-Konverter für NAS zu SpatiaLite

2017-12-06 Thread Claas Leiner

Hallo liebe Leute,

jetzt bin ich mit vielen Sachen im Verzug und war ein wenig abgetaucht. 
Die Seite für die Arbeitsgruppe "Freiberuflich mit QGIS" starte ich in 
der kommenden Woche.


Heute möchte alle, die mit amtlichen Katasterdaten im NAS-XML-Format aus 
dem ALKIS zu tun haben, einladen meinen OGR/SpatiaLite-ALKIS-Konverter 
auszuprobieren.


Aus verschiedenen Aufträgen und aus eigenem Interesse habe ich 
verschiedene SQL-Skripte für SpatiaLite geschrieben, um die 
ALKIS-NAS-Daten mit ihren verschiedenen Beziehungen im QGIS verfügbar zu 
machen, ohne eine Datenbank installieren zu müssen.


Jetzt habe ich die einzelnen SQL-Skripte über eine Windows-Batch und ein 
Linux-Shell-Skript in einen Ablauf zusammengefasst. Das Ganze lässt sich 
 mit einem Doppelklick über ein Desktop-Icon starten, so dass der 
Anwender keine Kommandos eingeben muss. Es müssen nur das Verzeichnis 
mit den XML-Dateien, das Bundesland und das gewünschte 
Ausgabe-Koordinatensystem angebeben werden. Das Werkzeug ermittelt den 
Ort der QGIS-Installation, um auf ogr2ogr zuzugreifen. spatialite.exe 
ist mit dabei.


Folgendes wird umgesetzt:

- Sämtliche Inhalte aller NAS-XML-Dateien eines Verzeichnisses
  werden in in eine SpatiaLite-Datenbank kopiert und thematisch
  zusammengefasst.
- Fügt die Landnutzung in einen Layer zusammen und trägt die
  Nutzung als  Klartext-Attribut ein.
- Erzeugt einen Gebäudelayer mit Klartext-Nutzung, Straße, Hausnummer
  und Flurstück des Gebäudes als Attribute.
- Verbindet Hausnummern und Adressen mit Flurstücken und Gebäuden.
- Schreibt die anteillige Flächennutzung als Attribut für jedes
  Flurstück.
- Listet sämtliche Eigentümer jedes Flurstücks mit Adresse als Attribut
  in den Flurstückslayer.
- Erzeugt eine Tabelle sämtlicher Buchungsstellen mit den Eigentümern
  sowie ihrer Beziehung zu den Flurstücken und schreibt die Adressen
  jedes Eigentümers als  Attribut.
- In einem QGIS-Projekt wird dieses Beziehung über eine
  Eins-zu-Viele-Relation im Objektformular des
  FlurstückLayers umgesetzt.
- Exportiert Gebäude, Flächennutzung und Flurstücke mit
  Eigentümern sowie Nutzungsanteilen als Shapefile.

Ihr könnt das Werkzeug herunterladen unter:
https://app.box.com/s/g9cfdw5l9et1k6ow4mv77va6yas0sjgg

Früher oder später möchte ich das Werkzeug als freie Software 
veröffentlichen. Aktuell möchte ich es aber vorher noch ein paar mal 
verkaufen...


Für Mitglieder des Anwendervereins stelle ich es zur freien Nutzung, 
auch für den kommerziellen Einsatz zur Verfügung. Ich freue mich über 
Rückmeldungen.
Ich würde es dann demnächst auch auf dem Mitgliederbereich unserer 
Webseite einstellen.


Mit vielen Grüßen,

Claas


--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de

http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
QGIS Projekt | http://qgis.org/de/site/
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS 2.18.8: Update with issues

2017-05-26 Thread Claas Leiner

Am 26.05.2017 um 10:53 schrieb Jürgen E. Fischer:

Hi Claas,

On Fri, 26. May 2017 at 09:45:29 +0200, Claas Leiner wrote:

So better stay at 2.18.7. Strange, so far the 2.18 was very reliable and it
is actually a bugfix update.


Test the nighlies before the release please.


Jürgen




Hi Jürgen,

Yes, I see thats a good idea

Many Thanks
for fast bugfixing!

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

[Qgis-user] QGIS 2.18.8: Update with issues

2017-05-26 Thread Claas Leiner

Hello,

QGIS 2.18.8 seems to bring a lot of issues.
The problem with the expression editor is fixed in the nightly release 
2.18.8 (6768c89).

https://issues.qgis.org/issues/16589

However, another mistake has been noted:
QGIS is no longer able to load the results of modeller processes.
https://issues.qgis.org/issues/16621

In addition, the processing tools suddenly lack many translations into 
german.

https://issues.qgis.org/issues/16622

Also, the problem with the CSV files.
https://issues.qgis.org/issues/16589

So better stay at 2.18.7. Strange, so far the 2.18 was very reliable and 
it is actually a bugfix update.


Best regards,

Claas
--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de

http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
QGIS Projekt | http://qgis.org/de/site/
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] GRASS support lost (again)

2017-05-14 Thread Claas Leiner


I suspect there is a conflict with the package dependencies of ubuntugis.
If GRASS 7.2.1 is installed,  libgdal-grass 2.1.3 will be uninstalled. 
There ist a is dependence between libgdal-grass 2.1.3  and  the grass720 
package.

This would have to change by the Ubuntu package builders.

Best regards,

Claas


--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de

http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
QGIS Projekt | http://qgis.org/de/site/
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS 2.18.5 got deinstalled after updating ubuntugis dependencies

2017-03-27 Thread Claas Leiner

Hi,

gdal is updatet from 2.1.2 to 2.1.3
qgis 2.18.5 Depends on: gdal 2.1.2

http://hub.qgis.org/issues/16384

Claas
--
Am 27.03.2017 um 22:27 schrieb Bernd Vogelgesang:

Hi again,

had a running 2.18.4.
Then an update to 2.18.5 came in.
A day later, some dependencies got updated, but obviously QGIS itself
got deinstalled and is conflicting with some dependencies.
Shame on me that I was again so careless to just run the updates.

Anyone knows what is going on and how to revert to a working QGIS with
ubuntugis features on Linux Mint/Ubuntu xenial

Cheers
Bernd



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

Re: [Qgis-user] Shapefile with file .cpg(codepage)

2016-07-07 Thread Claas Leiner

Hi,

QGIS uses the .cpg file when you deselect the Option  "Ignore shapefile 
encoding declaration"


You find it:
Settings > Options >  Data Sources

Then there are no encoding-problems tu use QGIS with Shapefiles in in a 
mixed environment.


Cheers

Claas


--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de
http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
___
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] Error with 2.14.3 standallone and msys

2016-06-27 Thread Claas Leiner

Create an empty Dummy-directory msys and set the msys-path. Then all is O.K.

Claas

Am 27.06.2016 um 16:46 schrieb Randal Hale:

Got a client and we're working through a problem - They have 2.14.3
Standalone. We are trying to activate GRASS 7. When we leave provider
options we get an error of:
Wrong Value for parameter "Msys Folder"
Specified Path does not exist: C:/Progra~1/QGISES~1/apps\msys"

Since msys is not there anymore,  is there something I can set this to
to get rid of the error. I typically run the Advanced installer - but
they went with standalone so now I've switched to standlone. I saw this
mentioned on 14654 - https://hub.qgis.org/issues/14654 . For fun I set
this to msvcrt and the error stopped and we were able to save the
options - BUT - I have no idea if this is acceptable.

Randy





___
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.14.3 with ubuntugis dependencies on Ubuntu xenial?

2016-06-23 Thread Claas Leiner

Does somebody know,
When QGIS 2.14.3 with ubuntugis dependencies (gdal 2.1!) is available 
for Ubuntu  xenial?


Best wishes,
Claas
___
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] Overlay tools and join Attributes from the processing are not work correctly

2016-04-02 Thread Claas Leiner

Unfortunately, some tools from the toolbox of QGIS 2.14 not work correctly.
Join Attributes tables not working (Bug report #14428) and overlay tools 
(#14504) produce incomplete results.

When the Python Files (.installpath/python/plugins/processing/algs/qgis)
JoinAttributes.py
Intersection.py
Clip.py
Difference.py
are replaced by the files from the previous version Processing (2.12.2) 
everything works.

(Download:
https://plugins.qgis.org/plugins/processing/version/2.12.2/)
It would make sense to integrate this version 2.12.2 of the relevant 
tools in QGIS 2.14 until these bugs are fixed.


Posted as ticket http://hub.qgis.org/issues/14606

Best wishes

Claas

___
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.14 report always coordinate in geographic

2016-03-11 Thread Claas Leiner

Hi,

There ist a new setting option:

Project > Project properties >
General > Coordinate display > Display coordinates using:
You can change Degrees to Map units (m)

Claas

--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de
http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
___
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] Tabele-Join viaToolbox in QGIS 2.14 does not work

2016-03-09 Thread Claas Leiner

Good Morning,
in QGIS 2.14 the table JOIN no longer works on the Toolbox.

"PROCESSING TOOLBOX > QGISgeoalgorithms > Vector general tools > Join 
attributes table" don't work.
This means all models that use table joins running currently not in QGIS 
2.14.


I have reported the error:
http://hub.qgis.org/issues/14428

Until Fixing the bugs, can make do with the old version of the algorithm 
that was used in the processing version 12.2.


Download:
https://plugins.qgis.org/plugins/processing/version/2.12.2/
The Replacements file: JoinAttributes.py

Ubuntu:
/usr/share/python/plugins/processing/algs/qgis/JoinAttributes.py
Windows:
C:\qgisInstallation\apps\qgis\python\plugins\processing\algs\qgis\JoinAttributes.py

Best wishes

Claas
--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de
http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
___
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] Display shapes with sorted area-size?

2016-03-08 Thread Claas Leiner

Fieldcalculator:
new Field and calculate area with §area

then
Install Plugin MMQGIS
then
MMQGIS > Modiy > sort
Sort Attribute: the new Field
Direction: Ascending

In the output-Shapefile the smale Polygon above the larger

Claas


--
-
GKG-Kassel - Dr.-Ing. Claas Leiner
QGIS-Support und mehr

Geodatenservice, Kartenwerkstatt &
GIS-Schule Kassel

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445
claas.lei...@gkg-kassel.de
http://www.gkg-kassel.de

Unterstützen Sie QGIS
QGIS-DE e.V. | http://qgis.de
___
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.14: SpatiaLite 4.3, Geos 3.5, GDAL 2?

2016-02-26 Thread Claas Leiner

Hello ,

Does anyone know if there any hope that QGIS 2.14 is compiled for Ubuntu 
14.04 with SpatiaLite 4.3.0 and Geos 3.5?


Also because of the bugs # 13934. Furthermore digitizing SpatiaLite 
layers leads to the described crashes.

The installation of Geos 3.5 and 4.3 SpatiaLite has not helped.

Also GDAL 2 for Ubuntu 14.04?

Best regards,

Claas Leiner


--
___
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] custom string formatting for grid coordinate labels

2016-02-18 Thread Claas Leiner

Hi,

With Unicode Characters is a good idea. As the code is implemented 
directly in a QGIS-Expression me remains a mystery.
I have searched for the mark on LibreOffice (insert special characters) 
and then copied using CTRL-C / CTRL-V in the expression.


With this expression:

Case
when @grid_axis = 'x' then (substr(@grid_number ,1,5) || '⁰⁰⁰ ᴱ')
when @grid_axis = 'y' then (substr(@grid_number ,1,5) || '⁰⁰⁰ ᴺ')
end

Do I get the coordinates marking shown in the attached image.

Best wishes

Claas
___
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 User-Meeting in Kassel : 25. September Programm + Anmeldung

2015-08-17 Thread Claas Leiner

Dear people,
place on 25 September, as in recent years, an user meeting with lectures 
and workshops.

Below the program, as well as a spreadsheet template for registration.

http://www.qgis-anwendertreffen.de/

Best regards,

Claas Leiner
-
Liebe Leute,

am 25. September findet, wie in den letzten Jahren auch, ein ganztägiges 
Anwendertreffen mit Vorträgen und Workshops statt.

Anbei das Programm, sowie eine Tabellenvorlage zur Anmeldung.

http://www.qgis-anwendertreffen.de/

Mit vielen Grüßen,

Claas Leiner





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


[Qgis-user] QGIS User-Meeting in Kassel : 25. September Programm + Anmeldung

2015-08-11 Thread Claas Leiner

Dear people,
place on 25 September, as in recent years, an user meeting with lectures 
and workshops.

Below the program, as well as a spreadsheet template for registration.

http://www.qgis-anwendertreffen.de/

Best regards,

Claas Leiner
-
Liebe Leute,

am 25. September findet, wie in den letzten Jahren auch, ein ganztägiges 
Anwendertreffen mit Vorträgen und Workshops statt.

Anbei das Programm, sowie eine Tabellenvorlage zur Anmeldung.

http://www.qgis-anwendertreffen.de/

Mit vielen Grüßen,

Claas Leiner






anmeldung_qgis_anwendertreffen_kassel_2015.xls
Description: MS-Excel spreadsheet
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] QGIS-Anwendertreff am 25. September

2015-07-21 Thread Claas Leiner

Liebe Leute,
am 25. September 2015 wird in Kassel wieder ein QGIS-Anwendertreffen mit 
Vorträgen und Workshops stattfinden.


Wir suchen noch nach interessanten Vorträgen und Workshop-Angeboten. Wer 
etwas beitragen möchte, melde sich bitte bis zum 31. Juli bei mir.


Mit vielen Grüßen,

Claas Leiner


Dear people,
September 25, 2015 QGIS user meeting will be held with lectures and 
workshops in Kassel again.


We are still looking for interesting presentations and workshop 
offerings. If you want to contribute, please register until 31 July with me.


Best regards,

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

Re: [Qgis-user] making mistakes with raster calculator

2015-04-09 Thread Claas Leiner

Vou can do it with:

(( 3_NDFI@1 = 0 ) * 0) + ((3_NDFI@1  0)*5)

Claas

Am 09.04.2015 um 00:09 schrieb Giacomo Fontanelli:

Dear forum

I use QGIS 2.8.1.

I have a raster map, Float32, pixel values range from -0.7 to 1.

I Would like to make a map with pixel having only two values:

pixels with values = 0 should be 0

pixels with values  0 should be 5.

the sintax

( 3_NDFI@1 = 0 ) =0 AND  ( 3_NDFI@1  0 ) =5

doesn't work because it produces a map with only 0 values.

In order to reach my goal I must do

( 3_NDFI@1 = 0 ) =0 AND  ( 3_NDFI@1  0 ) =1

then multiply result by 5.

What's the problem?
Is it possible to fulfil the purpose with only one raster operation?

Thank you very much




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


[Qgis-user] raster calculator - no file produced

2015-02-22 Thread Claas Leiner

Hello,
I've just installed QGIS 2.8 and noticed that the raster calculator 
writes any files on Ubuntu 12.04. The formula you typed was valid. The 
following error message is displayed in the console:

Warning: QFileInfo :: AbsolutePath: Constructed with empty filename
Has anyone seen something similar?

Many Greetings,

Claas
--

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


Re: [Qgis-user] Transformation using NTv2 grids

2015-02-17 Thread Claas Leiner

Look here:

http://www.gkg-kassel.de/pdf/Praezise_Transformation_im_QGIS_mit_Batchmodus.pdf

Cheers Claas


Am 17.02.2015 um 15:26 schrieb Bernd Vogelgesang:

Hi there,
reactivating this thread and also pushing it to the dev list to maybe
receive a statement:

Is it somehow planned to include the BETA2007.gsb and the resulting
changes into QGIS for 2.8 by default?

I received already some questions, cause now even german bureaucracy is
waking up and tell users to switch to ETRS and transform the data from
Gauss-Krueger.
But for the majority of QGIS users, this will be rocket science if they
even learn THAT they have to create custom CRS, change srs.db entries
and do other wizardry.

So far, googling QGIS and BETA2007 yields no results on any moves
into this direction.
But without, QGIS users in Germany will likely produce tons of trash
data in the near future or already do so without knowing (me included
till today).

Also see https://hub.qgis.org/issues/11347

... or is is not that critical as I believe it is?

Cheers
Bernd


Am 05.02.2014, 16:13 Uhr, schrieb Marco Hugentobler
marco.hugentob...@sourcepole.ch:


Hi


Would it be possible to define a Custom CRS for the source CRS
containing the
nadgrids-stuff for doing ntv2 transformation in QGIS 2.0.1?



Yes, it is possible to work with custom CRS (although it is not so
convenient).


Is this already in 2.1?
If yes, where could one find it?



There is a dialog showing the available datum transformations. This
dialog shows up as soon as a layer needs a datum transformation (e.g.
if on-the-fly reprojection is toggled or when doing save as').
However, the ntv2 transformation info has to be inserted into srs.db /
table datum_transform first.

Regards,
Marco

On 05.02.2014 15:42, Robert Nuske wrote:

Hi Marco,


QGIS 2.2 will have support for NTv2 datum transformations as a core
function.

Is this already in 2.1?
If yes, where could one find it?


Would it be possible to define a Custom CRS for the source CRS
containing the
nadgrids-stuff for doing ntv2 transformation in QGIS 2.0.1?

For example GK3:
+proj=tmerc +lat_0=0 +lon_0=9 +k=1.00 +x_0=350 +y_0=0
+ellps=bessel
+units=m +nadgrids=BETA2007.gsb +wktext


cheers,
   robert



On 05.02.2014 13:34, Burgstaller Stefan wrote:

Hi,

is it already possible to reproject shape-files using NTv2 grids? I
was looking for appropriate plugins, help documents and already
available tools but I have not found anything. Since the federal
states in Germany start to convert their geospatial data from
Gauss-Kruger to ETRS89 with NTv2 grids this topic becomes more and
more urgent.

Greetings,

Stefan Burgstaller



___
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


[Qgis-user] QGIS-Anwendertreffen 2014

2014-08-08 Thread Claas Leiner

Info for germanlanguage QGIS Usermeeting

Nach den erfolgreichen QGIS Anwendertreffen der letzten Jahre in der 
Schweiz und in Kassel, wird es


am Freitag dem 19. September 2014

ein weiteres deutschsprachiges QGIS Anwendertreffen in Kassel geben.

Die Veranstaltung wird gemeinsam vom QGIS-Community-Team sowie dem 
Serviceportal GIS und Geodaten am FB 06 der Uni Kassel getragen und 
wendet sich sowohl an erfahrene Anwender als auch an Interessierte, die 
sich erstmals über den Leistungsumfang freier GIS-Software informieren 
möchten.


Neben Praxisberichten und dem individuellen Erfahrungsaustausch am 
Vormittag, wird es am Nachmittag kostenpflichtige Workshops für Anfänger 
und Fortgeschrittene geben.


Infos zu Programm und Anmeldung finden Sie unter:

http://www.qgis-anwendertreffen.de/

Zur Anmeldung verwenden Sie bitte die Tabellendatei, die Sie hier:

http://www.qgis-anwendertreffen.de/download/anmeldung_qgis_anwendertreffen_kassel_2014.zip

herunterladen können:

Schicken Sie die ausgefüllte Tabelle  per Mail an:
claas.lei...@uni-kassel.de

Mit vielen Grüßen,

Claas Leiner


--
-
Dr.-Ing. Claas Leiner

Geodatenservice, Kartenwerkstatt 
GIS-Schule

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/56013445 oder 0561/804-7196
Mobil: 01525/3876673
claas.lei...@eschenlaub.de
http://www.eschenlaub.de

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


Re: [Qgis-user] NAS format via OGR/PostNAS ?

2014-03-06 Thread Claas Leiner

Hello Cristine,

NAS is not listet in the ad Vector-layers dialog but you can still open 
a NAS-XML-File. Then you can save the Layers as Shapefile etc.


A quicker way on the commandline with ogr2ogr which is installed with 
QGIS. (OSGeo4W-Shell)


Konvert as Shapefiles in a directory
ogr2ogr -f ESRI Shapefile targetdirectory SOURCE.XML

konvert as SpatiaLite
ogr2ogr -f SQLite -dsco SPATIALITE=yes -s_srs EPSG:25832 -skipfailures 
-gt 1024 target.sqlite source.xml


Regards, Claas


Am 06.03.2014 08:22, schrieb Christine:

Thanks a lot, Bernd, for your efforts.

Didn't found NAS listed in the QGIS file open list, so I assumed it won't
work yet. How stupid.
Will try it as soon as possible by myself.

Regards, Christine




--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/NAS-format-via-OGR-PostNAS-tp5104870p5107825.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user




--
-
Dr.-Ing. Claas Leiner

Praxis für Geodatenmanagement, GIS-Schulungen
und Support zu freier GIS-Software (QGIS, GRASS etc.)

Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/81676217 oder 0561/804-7196
claas.lei...@eschenlaub.de
http://www.eschenlaub.de

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


[Qgis-user] QGIS 2.2: Bug in the Line-Pattern-Fill

2014-02-25 Thread Claas Leiner

Hello,
there is a Bug in the Line-Pattern-Fill Symbology. When I change the 
angle of Line pattern, then is a Angle of 45° a pattern from left-bottom 
to right-top. When I choose the Angle 135° then is it the same pattern 
and not left-top to right-bottom. Its no possibility to choose a pattern 
from left-top to right-bottom.


I have opened a ticket:
https://hub.qgis.org/issues/9647

Sorry for my bad english!

Claas Leiner
--
---
attachment: patternbug.png___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] import osm-file to qgis

2014-02-07 Thread Claas Leiner
You can load OSM- or PBF-Files direkt in QGIS (Layer  add vectorlayer 
(all Files because *osm ist not in the list))! Then save the layers as 
Shapefiles!


Am 05.02.2014 12:02, schrieb Larissa Hauser:

Hi there

After having downloaded and unpacked the .osm-file for switzerland from 
geofabrik.de, I have successfully imported the included poi-dataset into QGIS 
(2.0.1). Even though the osm-file contains all the user ids and user names 
(checked in a text editor), these attributes have not been imported in QGIS 
(they are not displayed in the respective attribute table).

Does anyone know this problem or have an idea about it and would like to help 
me?

This would be great!

Thank you very much!
___
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] QGIS-Anwendertreffen 2013: Vortrags- und Workshopangebote gesucht

2013-07-03 Thread Claas Leiner

Info for germanlanguage QGIS Usermeeting

Nach den erfolgreichen Quantum GIS Anwendertreffen der letzten Jahre in 
der Schweiz und in Kassel, wird es


am Freitag dem 20. September 2013

ein weiteres deutschsprachiges QGIS Anwendertreffen in Kassel geben.

Die Veranstaltung wird gemeinsam vom QGIS-Community-Team sowie dem 
Serviceportal GIS und Geodaten am FB 06 der Uni Kassel getragen und 
wendet sich sowohl an erfahrene Anwender als auch an Interessierte, die 
sich erstmals über den Leistungsumfang freier GIS-Software informieren 
möchten.


Neben Praxisberichten und dem individuellen Erfahrungsaustausch, wird es 
wieder Workshops geben. Die Themen der Workshops stehen noch nicht fest, 
es wird jedoch auf jeden Fall einen Einsteigerworkshop und zwei 
Workshops für erfahrene Nutzer/innen geben.


Wir suchen noch nach interessanten Vorträgen aus der Anwenderpraxis und 
nach spannenden Workshop-Angeboten. Wenn Sie eine Idee haben, melden Sie 
sich bei uns!


Ein Vorab-Anmeldeformular, in dass Sie auch Vortrags- oder 
Workshopangebote eintragen können, finden Sie hier zum Download:


http://cms.uni-kassel.de/asl/fileadmin/daten/Einrichtungen/Geo-Info/konferenz/QGIS_Anwendertreffen_2013_Anmeldung_.zip

Schicken Sie es einfach per Mail an: claas.lei...@uni-kassel.de. Weitere 
Infos zum Programm und zeitlichen Ablauf finden Sie:


http://cms.uni-kassel.de/asl/fb/einrichtungen/geo-info/qgis-anwenderkonferenz.html

Mit vielen Grüßen,

Claas Leiner


--
-
Dr.-Ing. Claas Leiner

Lehrkraft für Geographische Informationssysteme
und Geodaten-Koordinator am FB 06 (ASL)
Fachgebiet Vegetations- und Landschaftsökologie

Universität Kassel
Gottschalkstraße 26 a / Raum 1112
34109 Kassel
Tel: 0561/804-7196
claas.lei...@uni-kassel.de

http://www.uni-kassel.de/asl/geo-info.

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


[Qgis-user] QGIS-Anwendertreffen am 21. September in Kassel - Programm

2012-07-27 Thread Claas Leiner

Liebe QGIS-Anwender/innen und Interessierte,

am 21. September findet in Kassel ein weiteres deutschsprachiges 
Anwendertreffen mit Vorträgen und Workshops statt.


Die Veranstaltung wird gemeinsam vom QGIS-Community-Team sowie dem 
Serviceportal GIS und Geodaten am FB 06 der Uni Kassel getragen und 
wendet sich sowohl an erfahrene Anwender als auch an Interessierte, die 
sich erstmals über den Leistungsumfang freier GIS-Software informieren 
möchten.


Programm und Anmeldeformulare stehen zum Download bereit

http://cms.uni-kassel.de/asl/fileadmin/daten/Einrichtungen/Geo-Info/konferenz/anmeldung.zip

Infos unter:
http://qgis.org/en/user-meetings/kassel-092012.html

Viele Grüße,

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


[Qgis-user] QGIS-Anwendertreffen am 21. September in Kassel

2012-07-12 Thread Claas Leiner

Liebe QGIS-Anmwender,

Wie im letzten Jahr, wird es auch in diesem September ein 
deutschsprachiges Quantum-GIS-Anwendertreffen mit Vorträgen und 
Praxis-Workshops an der Universität Kassel geben. Otto Dassau 
(QGIS-Community-Team)  und Claas Leiner (Portal Gis und Geodaten an der 
Uni Kassel) organisieren das Treffen gemeinsam.


Wir suchen für den 21. September noch Referenten, die aus der Praxis 
über interessante Einsatzfelder von QGIS berichten können.


Wer einen interessanten Vorschlag für einen Vortrag anzubieten hat, 
schicke mir einfach eine Mail, (claas.lei...@uni-kassel.de)


Viele Grüße,

Claas Leiner

Info: http://qgis.org/en/user-meetings/kassel-092012.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] QGIS-Anwendertreffen am 09. September -

2011-08-18 Thread Claas Leiner

info in german language

Liebe Leute,

wer am QGIS-Anwendertreffen am 09. September in Kassel interessiert ist,
kann sich das fertige Programm und den Anmeldebogen herunterladen:

Anmedung:
http://cms.uni-kassel.de/asl/fileadmin/daten/Einrichtungen/Geo-Info/konferenz/anmeldung.zip

Programm:
http://cms.uni-kassel.de/asl/fileadmin/daten/Einrichtungen/Geo-Info/konferenz/QGIS_Anwenderkonferenz_Kassel_09_09_2011.pdf

Infoseite:
http://www.qgis.org/de/anwendertreffen/kassel-092011.html

Die Anmeldefrist läuft bis zum 30. August! Also bitte anmelden!

Viele Grüße,

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


[Qgis-user] German-language QGIS-usermeeting in Kassel

2011-07-12 Thread Claas Leiner

info in german language

Liebe Leute,

ich habe gemeinsam mit Otto Dassau ein Programm für das dritte 
QGIS-Anwendertreffen im deutschsprachigen Raum entworfen.


Wir möchten alle Interessierten herzlich zu diesem Treffen einladen. 
Insbesondere freuen wir uns über Leute, die einen Vortrag (ca. 15- 20 
Minuten) über Ihre praktischen Erfahrungen mit QGIS halten möchten.


Das Programm gibt es unter:
http://cms.uni-kassel.de/asl/fileadmin/daten/Einrichtungen/Geo-Info/konferenz/QGIS_Anwenderkonferenz_Kassel_09_09_2011.pdf

Die Anmeldung findet Ihr unter
http://cms.uni-kassel.de/asl/fileadmin/daten/Einrichtungen/Geo-Info/konferenz/anmeldung.zip

Aktualisierte Infos zum Treffen wird es auf der Seite:
http://www.qgis.org/de/anwendertreffen/kassel-092011.html
geben

Viele Grüße,

Claas Leiner
--
-
Dr.-Ing. Claas Leiner

Lehrkraft für Geographische Informationssysteme
und Geodaten-Koordinator am FB 06 (ASL)
Fachgebiet Ökologische Standort- und Vegetationskunde

Universität Kassel
Gottschalkstraße 26 a / Raum 1112
34109 Kassel
Tel: 0561/804-7196
Mobil: 01525/3876673
claas.lei...@uni-kassel.de

http://www.uni-kassel.de/asl/geo-info.


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


[Qgis-user] Workarround for problem with Colour Scale Bar Plugin in QGIS 1.7

2011-06-27 Thread Claas Leiner

Hi,

The very usefull Colour Scale Bar Plugin don't work with QML-Files or 
Colour-Tables, saved in Raster-Properties from qgis 1.7.


A Workaround for this Problem:

Open the QML- or textfile in a Editor
Find the word INTERPOLATED
replace INTERPOLATED to DISCRETE

Save the file.

Now you can use the QML or Txt-File in the Colour Scale Bar Plugin.

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


Re: [Qgis-user] Workarround for problem with Colour Scale Bar Plugin in QGIS 1.7

2011-06-27 Thread Claas Leiner

O.K.

More easy is it, to  choose interpolation: diskrete in
Raster-Properties  Colour Map

Claas
Am 27.06.2011 21:47, schrieb Claas Leiner:

Hi,

The very usefull Colour Scale Bar Plugin don't work with QML-Files or
Colour-Tables, saved in Raster-Properties from qgis 1.7.

A Workaround for this Problem:

Open the QML- or textfile in a Editor
Find the word INTERPOLATED
replace INTERPOLATED to DISCRETE

Save the file.

Now you can use the QML or Txt-File in the Colour Scale Bar Plugin.

Claas
___
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] Workarround for problem with Colour Scale Bar Plugin in QGIS 1.7

2011-06-27 Thread Claas Leiner

O.K.,

einfacher ist es unter Rastereigenschaften  Farbkarte im Ausklappmenü 
hinter Interpolation diskkret zu wählen.


Grüße,

Claas



Am 27.06.2011 21:47, schrieb Claas Leiner:

Hi,

The very usefull Colour Scale Bar Plugin don't work with QML-Files or
Colour-Tables, saved in Raster-Properties from qgis 1.7.

A Workaround for this Problem:

Open the QML- or textfile in a Editor
Find the word INTERPOLATED
replace INTERPOLATED to DISCRETE

Save the file.

Now you can use the QML or Txt-File in the Colour Scale Bar Plugin.

Claas
___
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] Export to new Projektion

2011-06-20 Thread Claas Leiner

Hi,

When I Export a Shapefile from ETRS89/UTM 32 to DHDN Gauss-Krueger 3 the 
new Layer is more then 150 m wrong. When In export from ETRS89/UTM 32 to 
wgs84 und then from wgs84 to DHDN Gauss-Kruger 3 the result ist right. 
(qgis 1.6 and qgis 1.7).


Is there a way to change the projektion fro, ETRS89 to Gk3 in one Step?

thanks for answers,

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


Re: [Qgis-user] Export to new Projektion

2011-06-20 Thread Claas Leiner

Hi, thanks for answer

the parameters are

ETRS89 / UTm32:
+proj=utm +zone=32 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs

wgs84
+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs +towgs84=0,0,0

DHDN GK3:
+proj=tmerc +lat_0=0 +lon_0=9 +k=1 +x_0=350 +y_0=0 +ellps=bessel 
+towgs84=582,105,414,1.04,0.35,-3.08,8.3 +units=m +no_defs


From ETRS89/UTm32 to wgs84 and then to DHDN GK3 the result ist right
In one Step From ETRS89/UTm32 to DHDN GK3 the result ist wrong.

Claas

Am 20.06.2011 12:43, schrieb Paolo Cavallini:

Il giorno lun, 20/06/2011 alle 12.40 +0200, Claas Leiner ha scritto:

When I Export a Shapefile from ETRS89/UTM 32 to DHDN Gauss-Krueger 3 the
new Layer is more then 150 m wrong. When In export from ETRS89/UTM 32 to
wgs84 und then from wgs84 to DHDN Gauss-Kruger 3 the result ist right.
(qgis 1.6 and qgis 1.7).

Is there a way to change the projektion fro, ETRS89 to Gk3 in one Step?


You miss the datum shift (+towgs) parameters.
All the best.



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


[Qgis-user] QGIS 1.7

2011-06-10 Thread Claas Leiner

Hallo,

after discussion about relese QGIS 1.7 I have one question:

Is there now a way to download qgis 1.7 binarys for Windows and for Ubuntu?

Thanks for your answers.

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


Re: [Qgis-user] Re: Join Attributes - no Shapefile createt (QGIS 1.4)

2010-03-10 Thread Claas Leiner
Thanks for answers,

when I openend the termine.dbf with OpenOffice.org, delete the dbf-infos
in the column-heads, save the file as *.odt and then save the file as
*.dbf (utf8), I can join the termine.dbf. The encoding was the problem,
I think.

Claas
-
Dr.-Ing. Claas Leiner
Praxis für Landschaft, Vegetation und freie Geoinformationssysteme
Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/6026527
claas.lei...@eschenlaub.de
http://www.eschenlaub.de/landveg


Bernd Vogelgesang schrieb:
 Tested with attached shapefile and dbf file, however, I suspect it has
 something to do with the encoding of your shapefile (how was it
 created?), because while this file does not work, other shapefiles
 (using for example UTF-8) work fine, including other shapefiles joined
 with your dbf file.
 Can you provide any further details?
 Carson
 
 Hi Claas and the others,
 this shapefile was created by me (nice surprise to find it as an issue
 here ;) )
 I digitized it from a WMS-Layer with QGIS 1.4 OSGEO4W-Installation on XP
 in UTF-8 with the first 3 table columns.
 The other data columns were added in OpenOffice Calc and several
 corrections of the dbf were made in Calc as well. Can this be the reason?
 Did do this more often and haven't had problems before.
 Is there sth particular stored within the shape file itself about the
 database structure that is now leading to the malfunction? (No idea
 about the inner anatomy of shapes)
 
 If this is not the case, could it be then some kind of data corruption
 caused by compressing for sending by email? (just a wild guess)
 
 Bernd
 ___
 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] OSGeo4W Qgis start up procedure entry point not found error message

2010-01-26 Thread Claas Leiner
Hallo Falk,

mein English ist leider so schlecht, dass es mir schwer fällt auf
Englisch zu antworten.
Aus Deinem Vor- und Nachnamen schließe ich, dass Du auch mit einer
deutschsprachigen Antwort etwas anfangen kannst.

Ich hatte eine ähnliches rätselhaftes Problem bei qgis 1.3 bzw qgis 1.4,
bis ich auf die Idee kam, alle Dateien aus C:\OSGeo4W\bin zusätzlich
nach C:\OSGeo4W\apps\qgis-unstable\bin zu kopieren. Danach funktionierte
es.

Viele Grüße,

Claas Leiner
-
Dr.-Ing. Claas Leiner
Praxis für Landschaft, Vegetation und freie Geoinformationssysteme
Wilhelmshöher Allee 304 E
34131 Kassel
Tel. 0561/6026527
claas.lei...@eschenlaub.de
http://www.eschenlaub.de/landveg


Falk Grossmann schrieb:
 Up to this point I have had no problems using qgis - installed through
 the OSGeo4W on XP pro. After having downloaded the recent stable qgis
 version through the OSGeo4W installer I have not been able to start the
 program. After an initial DOS interface I get a error message qgis.exe
 - Entry Point Not Found and The procedure entry point
 ?dri...@qsqldatabase@@SA?AVQStringList@@XZ could not be located in the
 dynamic link library QtSql4.dll.
 
 I have uninstalled all the folders and treid to reinstall the same and
 older version without success. I have googled this problem but have not
 found any solution.
 
 Any suggestions/links on this issue would be very much appreciated!
 
 Cheers,
 
 Falk
 
 
 
 
 
 ___
 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