view flys-backend/contrib/shpimporter/shpimporter.py @ 2801:970dc0ad9dc6

Tagged module 'flys-backend' as 'pre2.7-2012-03-16'. flys-backend/trunk@4154 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 16 Mar 2012 07:25:59 +0000
parents 5a654f2e35bc
children bd9e76e0b55d
line wrap: on
line source
import ogr
import utils
from uesg import UESG

DBCONN='PG:dbname=flystest1 host=localhost user=flys password=flys port=5432'
PATH='/**/**/**/flys3-testdaten/Saar/Hydrologie/UeSG/Berechnung'


def getImporter():
    return UESG(DBCONN)


if __name__ == '__main__':
    shapes = utils.findShapefiles(PATH)
    print "Found %i Shapefiles" % len(shapes)

    types = {}
    importer = getImporter()

    for shpTuple in shapes:
        geomType = importer.walkOverShapes(shpTuple)
        try:
            num = types[geomType]
            types[geomType] = num+1
        except:
            types[geomType] = 1

    for key in types:
        print "%i x geometry type %s" % (types[key], key)

http://dive4elements.wald.intevation.org