[GRASS-SVN] r64272 - grass-addons/grass7/vector/v.isochrones

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 21 01:24:44 PST 2015


Author: mlennert
Date: 2015-01-21 01:24:43 -0800 (Wed, 21 Jan 2015)
New Revision: 64272

Modified:
   grass-addons/grass7/vector/v.isochrones/v.isochrones.py
Log:
dbf driver does not like 'time' as column name


Modified: grass-addons/grass7/vector/v.isochrones/v.isochrones.py
===================================================================
--- grass-addons/grass7/vector/v.isochrones/v.isochrones.py	2015-01-21 09:13:15 UTC (rev 64271)
+++ grass-addons/grass7/vector/v.isochrones/v.isochrones.py	2015-01-21 09:24:43 UTC (rev 64272)
@@ -196,13 +196,13 @@
                       input=tmp_region_map,
                       output=isochrones,
                       type='area',
-                      column='time')
+                      column='traveltime')
 
     # give the polygons a default color table
     grass.run_command('v.colors',
                       map=isochrones,
                       use='attr',
-                      column='time',
+                      column='traveltime',
                       color='grey')
 
 if __name__ == "__main__":



More information about the grass-commit mailing list