Archiv der Kategorie: GIS

Tipps, Tricks, GIS, Geographical Information Systems, ArcGIS, ArcMap, QGIS

AT_GIS_GRID in QGIS 2.2 & ArcGIS 10.0 (NTv2 Transformation)

Die Verwendung einer NTv2-Transformation mit dem vom BEV bereitgestellten AT_GIS_GRID ermöglicht eine Genauigkeit von +/- 0,5m im Gegensatz zur Methode EPSG 1618 (7-Param. Position Vector) mit +/- 1,5m.  Mehr dazu in diesem Artikel.

QGIS 2.2 und ArcGIS 10 ermöglichen mittels manueller Einstellungen die Anwendung dieses Verfahrens auf Basis des vom BEV bereitgestellten gsb-Files AT_GIS_GRID.gsb (Download hier)

Hinweis: Das AT_GIS_GRID ist ursprünglich für die Transformation nach ETRS89 gedacht – man geht aber auch nach WGS84 von einer höheren Genauigkeit aus.

AT_GIS_GRID in QGIS 2.2 & ArcGIS 10.0 (NTv2 Transformation) weiterlesen

Zwischen dem österr. Bundesmeldenetz und WGS84

Durch die zunehmende Verwendung von Webservices wie WMS/WMTS-Diensten und eine “Internationalisierung” von Geodaten muss immer häufiger zwischen nationalen Bezugssystemen und beispielsweise Dezimalgrad(WGS84) oder UTM gewechselt werden. Gerade bei der Transformation kann man dabei schnell in massive Lagefehler stolpern.  Auf was muss man nun im Zusammenhang mit dem österr. Bundesmeldenetz (BMN31, MGI M31 und Co) achten ?

Zwischen dem österr. Bundesmeldenetz und WGS84 weiterlesen

Open(Geo)data in Österreich – Freie GEODatenvielfalt

Lange Zeit hat man neidvoll vor allem bei US-amerikanischen Behörden freie Geodaten erblickt und beziehen können – von Landsat-Bildern bis hin zu “topographischen Labels” für fast die ganze Welt von der NIMA.

Zusehends springen in Europa öffentliche Einrichtungen auf den OpenData bzw. OpenGovernmentalData (OGD)-Zug auf (http://de.wikipedia.org/wiki/Open_Data) und stellen u.a. auch spannende und wertvolle Geodaten frei zur Verfügung, so auch in Österreich.

opendata_AT_search

Open(Geo)data in Österreich – Freie GEODatenvielfalt weiterlesen

Python ArcGIS 10 – list all FeatureClasses in SDE-FeatureDataset (to txt-File)

If you want to list  and write to a txt-File all featureClasses (in a FetaureDataset) stored in SDE/Oracle, it is done with a few line Python.

import arcpy
from arcpy import env
import os

# Set the workspace for the ListFeatureClass function
#
env.workspace = "Database Connections/VECTOR.arcsde01.sde/FEATURE_DATASET"

# Use the ListFeatureClasses function to return a list of 
#  all shapefiles.
#
fcList = arcpy.ListFeatureClasses()

print str(fcList)

# setting up output-file and write to file
file = open("sdelayers.txt", "w")
file.write(str(fcList))
file.close()

Use BaseMap-Austria (basemap.at) with QGIS 2.x and ArcGIS 10.2.x

The Austrian  govermental geodata-departments offer a free Basemap for Austria – Basemap.at (http://basemap.at/) – similar to GoogleMaps or OSM, based on official governmental data.

You can access this map via QGIS too – add a WMS/WMTS-Layer and use the following URL

http://www.basemap.at/wmts/1.0.0/WMTSCapabilities.xml

basemapATQGIS

… for the best rendering-quality (no distortions) choose Google’s Pseudo Mercator as Project(Display)-CRS: EPSG 3857 (in QGIS 2.x: Settings – Project properties)

Choosing EPSG 3857 in QGIS 2.2
Choosing EPSG 3857 in QGIS 2.2

 

 

QGIS 2.0.1 on Fedora 20: Problems with “Raster-Menu”

After having QGIS 2.x successfully installed on Fedora 20 (yum install qgis) only the QGIS itself seems to be installed. You may get errors when trying to fetch new Plug-ins (Python!) or you have an nearly empty Raster-menu (without the GDAL-Tools).

qgissnapshot1

In these cases install the following packages with YUM:

  • qgis-python
  • gtatool-gdal
  • gdal

Screenshot-example (error): Missing GDAL-Lib – although the menu-items are in place:

qgissnapshot2

After installation of the above mentioned packages everything works fine 🙂 – e.g. hillshade and contour-lines

qgissnapshot3

 

From Google Tracks (Android Smartphone) to QGIS

The app GoogleTracks for Android-Smartphones is an easy to use  tool for logging GPS-Tracks with your phone – & it allows you to export the Tracks to GPS and KML. So it’s no problem to get your tracks in your GIS-Software.

How-To with QGIS 1.8

  • Export your Track to GPX in GoogleTracks on your phone
  • Copy the *.gpx on your computer (or by the way mail it from your phone 🙂 )
  • You can directly open the GPX in QGIS with “Add vector”
  • Attention: GPS-Data is saved in GCS WGS84 ! If you combine it with layers in your national CRS be aware of using the correct transformation-parameters !

Google Tracks in PlayStore: Link