Mercurial > dive4elements > river
view flys-backend/contrib/shpimporter/utils.py @ 3338:e19a503e4150
Partial fix for flys/issue697: Increased the decimal places of Ws, Qs and Kms to 5.
flys-backend/trunk@4923 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 11 Jul 2012 08:09:32 +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