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

Play Flash-Streams (rtmp://) via XBMC

Livestreams often use Adobe’s Flash format and Shockwave Flash-Players to supply live content to their users. To play them on a machine that hasn’t flash installed, many pipe rtmpdump’s output to their favourite media player, making integration into home cinema systems complicated. If the URL of the stream you watch regularly does not change (e.g. a TV station’s official livefeed), you can easily play this in XBMC.

Play Flash-Streams (rtmp://) via XBMC 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

Install Android on Odroid-U3 (SD-Card, Linux)

Some words on how to install Android on your Odroid-U3 using Linux:

  • Download the Image from http://dn.odroid.com/4412/Android/
  • Extract the ZIP-File with your GUI-ZIP-Tool or in Command-Line
  • Prepare the Micro-SD (USB-Card Reader with your SD)
    • Clear your SD with dd first: dd if=/dev/zero of=/dev/sdX bs=4M
      (Depending on the size of your SD, this action can take a lot of time…)
    • Now we flash the image on the SD-Card: sudo dd if=image.img of=/dev/sdX bs=4M
    • To safely remove the SD: sync
  • Now we insert the SD into our Odroid-U3 and first boot will proceed – and it will take some minutes (with black screen) !!! (Anyways At the first booting, the self-installing will take about 1~2 minutes. While installation, the blue LED is blinking and fan is running. The blue-LED will turn off after installation. Turn on again and enjoy.)

More on this:

http://forum.odroid.com/viewtopic.php?f=78&t=3302

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()

Stuff for nerds and geeks