view flys-backend/contrib/shpimporter/utils.py @ 4305:8c51c43e59ca

Rename gauge_discharge_curve_at_export facet to at Rename gauge_discharge_curve_at_export facet to at to get an export with a filename ending .at. This feels horribly wrong...
author Björn Ricks <bjoern.ricks@intevation.de>
date Mon, 29 Oct 2012 15:24:32 +0100
parents 59ca5dab2782
children b1d7e600b43b
line wrap: on
line source
import os
from shpimporter import DEBUG, INFO, ERROR

SHP='.shp'

def findShapefiles(path):
    shapes = []

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

        DEBUG("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