소스 검색

d.vect.thematic: do not forget the layer for v.univar

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@52801 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 12 년 전
부모
커밋
f69861fdda
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scripts/d.vect.thematic/d.vect.thematic.py

+ 1 - 1
scripts/d.vect.thematic/d.vect.thematic.py

@@ -330,7 +330,7 @@ def main():
     if not where:
         where = None
 
-    stats = grass.read_command('v.univar', flags = 'eg', map = map, type = stype, column = column, where = where)
+    stats = grass.read_command('v.univar', flags = 'eg', map = map, type = stype, column = column, where = where, layer = layer)
     stats = grass.parse_key_val(stats)
 
     min  = float(stats['min'])