Mercurial > dive4elements > river
view flys-backend/contrib/shpimporter/utils.py @ 2807:5ac1db5156be
Some oracle db schema adaptions specific to bed heights in MINFO.
flys-backend/trunk@4215 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Wed, 11 Apr 2012 13:09:46 +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