view flys-backend/contrib/shpimporter/utils.py @ 3339:790c12c55abb

Backend: Added DB indices for fasten access to cross section points. flys-backend/trunk@4927 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 11 Jul 2012 10:37:03 +0000
parents 5a654f2e35bc
children 59ca5dab2782
line wrap: on
line source
import os

SHP='.shp'

def findShapefiles(path):
    shapes = []

    for root, dirs, files in os.walk(path):
        if len(files) == 0:
            continue

        print "Processing directory '%s' with %i files " % (root, len(files))

        for f in files:
            idx = f.find(SHP)
            if (idx+len(SHP)) == len(f):
                shapes.append((f.replace(SHP, ''), root + "/" + f))

    return shapes

http://dive4elements.wald.intevation.org