1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
|
"""!@package grass.script.vector
@brief GRASS Python scripting module (vector functions)
Vector related functions to be used in Python scripts.
Usage:
@code
from grass.script import vector as grass
grass.vector_db(map)
...
@endcode
(C) 2008-2010 by the GRASS Development Team
This program is free software under the GNU General Public
License (>=v2). Read the file COPYING that comes with GRASS
for details.
@author Glynn Clements
@author Martin Landa <landa.martin gmail.com>
"""
import os
import types
import copy
import __builtin__
from core import *
# i18N
import gettext
gettext.install('grasslibs', os.path.join(os.getenv("GISBASE"), 'locale'), unicode=True)
# run "v.db.connect -g ..." and parse output
def vector_db(map, **args):
"""!Return the database connection details for a vector map
(interface to `v.db.connect -g'). Example:
\code
>>> grass.vector_db('lakes')
{1: {'layer': '1', 'name': '',
'database': '/home/martin/grassdata/nc_spm_08/PERMANENT/dbf/',
'driver': 'dbf', 'key': 'cat', 'table': 'lakes'}}
\endcode
@param map vector map
@param args
@return dictionary { layer : { 'layer', 'table, 'database', 'driver', 'key' }
"""
s = read_command('v.db.connect', flags = 'g', map = map, fs = ';', **args)
result = {}
for l in s.splitlines():
f = l.split(';')
if len(f) != 5:
continue
if '/' in f[0]:
f1 = f[0].split('/')
layer = f1[0]
name = f1[1]
else:
layer = f[0]
name = ''
result[int(layer)] = {
'layer' : layer,
'name' : name,
'table' : f[1],
'key' : f[2],
'database' : f[3],
'driver' : f[4] }
return result
def vector_layer_db(map, layer):
"""!Return the database connection details for a vector map layer.
If db connection for given layer is not defined, fatal() is called.
@param map map name
@param layer layer number
@return parsed output
"""
try:
f = vector_db(map)[int(layer)]
except KeyError:
fatal(_("Database connection not defined for layer %s") % layer)
return f
# run "v.info -c ..." and parse output
def vector_columns(map, layer = None, getDict = True, **args):
"""!Return a dictionary (or a list) of the columns for the
database table connected to a vector map (interface to `v.info
-c').
@code
>>> vector_columns(urbanarea, getDict = True)
{'UA_TYPE': {'index': 4, 'type': 'CHARACTER'}, 'UA': {'index': 2, 'type': 'CHARACTER'}, 'NAME': {'index': 3, 'type': 'CHARACTER'}, 'OBJECTID': {'index': 1, 'type': 'INTEGER'}, 'cat': {'index': 0, 'type': 'INTEGER'}}
>>> vector_columns(urbanarea, getDict = False)
['cat', 'OBJECTID', 'UA', 'NAME', 'UA_TYPE']
@endcode
@param map map name
@param layer layer number or name (None for all layers)
@param getDict True to return dictionary of columns otherwise list of column names is returned
@param args (v.info's arguments)
@return dictionary/list of columns
"""
s = read_command('v.info', flags = 'c', map = map, layer = layer, quiet = True, **args)
if getDict:
result = dict()
else:
result = list()
i = 0
for line in s.splitlines():
ctype, cname = line.split('|')
if getDict:
result[cname] = { 'type' : ctype,
'index' : i }
else:
result.append(cname)
i+=1
return result
# add vector history
def vector_history(map):
"""!Set the command history for a vector map to the command used to
invoke the script (interface to `v.support').
@param map mapname
@return v.support output
"""
run_command('v.support', map = map, cmdhist = os.environ['CMDLINE'])
# run "v.info -t" and parse output
def vector_info_topo(map):
"""!Return information about a vector map (interface to `v.info
-t'). Example:
\code
>>> grass.vector_info_topo('lakes')
{'kernels': 0, 'lines': 0, 'centroids': 15279,
'boundaries': 27764, 'points': 0, 'faces': 0,
'primitives': 43043, 'islands': 7470, 'nodes': 35234, 'map3d': 0, 'areas': 15279}
\endcode
@param map map name
@return parsed output
"""
s = read_command('v.info', flags = 't', map = map)
ret = parse_key_val(s, val_type = int)
if 'map3d' in ret:
ret['map3d'] = bool(ret['map3d'])
return ret
# interface for v.db.select
def vector_db_select(map, layer = 1, **kwargs):
"""!Get attribute data of selected vector map layer.
Function returns list of columns and dictionary of values ordered by
key column value. Example:
\code
>>> print grass.vector_db_select('lakes')['columns']
['cat', 'AREA', 'PERIMETER', 'FULL_HYDRO', 'FULL_HYDR2', 'FTYPE', 'FCODE', 'NAME']
>>> print grass.vector_db_select('lakes')['values'][3]
['3', '19512.86146', '708.44683', '4', '55652', 'LAKE/POND', '39000', '']
>>> print grass.vector_db_select('lakes', columns = 'FTYPE')['values'][3]
['LAKE/POND']
\endcode
@param map map name
@param layer layer number
@param kwargs v.db.select options
@return dictionary ('columns' and 'values')
"""
try:
key = vector_db(map = map)[layer]['key']
except KeyError:
error(_('Missing layer %(layer)d in vector map <%(map)s>') % \
{ 'layer' : layer, 'map' : map })
return { 'columns' : [], 'values' : {} }
if 'columns' in kwargs:
if key not in kwargs['columns'].split(','):
# add key column if missing
debug("Adding key column to the output")
kwargs['columns'] += ',' + key
ret = read_command('v.db.select',
map = map,
layer = layer,
**kwargs)
if not ret:
error(_('vector_db_select() failed'))
return { 'columns' : [], 'values' : {} }
columns = []
values = {}
for line in ret.splitlines():
if not columns:
columns = line.split('|')
key_index = columns.index(key)
continue
value = line.split('|')
key_value = int(value[key_index])
values[key_value] = line.split('|')
return { 'columns' : columns,
'values' : values }
# interface to v.what
def vector_what(map, coord, distance = 0.0):
"""!Query vector map at given locations
To query one vector map at one location
@code
print grass.vector_what(map = 'archsites', coord = (595743, 4925281), distance = 250)
[{'Category': 8, 'Map': 'archsites', 'Layer': 1, 'Key_column': 'cat',
'Database': '/home/martin/grassdata/spearfish60/PERMANENT/dbf/',
'Mapset': 'PERMANENT', 'Driver': 'dbf',
'Attributes': {'str1': 'No_Name', 'cat': '8'},
'Table': 'archsites', 'Type': 'Point', 'Id': 8}]
@endcode
To query one vector map with multiple layers (no additional parameters required)
@code
for q in grass.vector_what(map = 'some_map', coord = (596532.357143,4920486.21429), distance = 100.0):
print q['Map'], q['Layer'], q['Attributes']
new_bug_sites 1 {'str1': 'Beetle_site', 'GRASSRGB': '', 'cat': '80'}
new_bug_sites 2 {'cat': '80'}
@endcode
To query more vector maps at one location
@code
for q in grass.vector_what(map = ('archsites', 'roads'), coord = (595743, 4925281),
distance = 250):
print q['Map'], q['Attributes']
archsites {'str1': 'No_Name', 'cat': '8'}
roads {'label': 'interstate', 'cat': '1'}
@endcode
To query one vector map at more locations
@code
for q in grass.vector_what(map = 'archsites', coord = [(595743, 4925281), (597950, 4918898)],
distance = 250):
print q['Map'], q['Attributes']
archsites {'str1': 'No_Name', 'cat': '8'}
archsites {'str1': 'Bob_Miller', 'cat': '22'}
@endcode
@param map vector map(s) to query given as string or list/tuple
@param coord coordinates of query given as tuple (easting, northing) or list of tuples
@param distance query threshold distance (in map units)
@return parsed list
"""
if "LC_ALL" in os.environ:
locale = os.environ["LC_ALL"]
os.environ["LC_ALL"] = "C"
if type(map) in (types.StringType, types.UnicodeType):
map_list = [map]
else:
map_list = map
coord_list = list()
if type(coord) is types.TupleType:
coord_list.append('%f,%f' % (coord[0], coord[1]))
else:
for e, n in coord:
coord_list.append('%f,%f' % (e, n))
ret = read_command('v.what',
quiet = True,
flags = 'ag',
map = ','.join(map_list),
east_north = ','.join(coord_list),
distance = float(distance))
if "LC_ALL" in os.environ:
os.environ["LC_ALL"] = locale
data = list()
if not ret:
return data
dict_attrb = None
dict_map = None
dict_layer = None
attr_pseudo_key = 'Attributes'
for item in ret.splitlines():
try:
key, value = __builtin__.map(lambda x: x.strip(), item.split('=', 1))
except ValueError:
continue
if key in ('East', 'North'):
continue
if key == 'Map':
# attach the last one from the previous map
if dict_layer is not None:
dict_main = copy.copy(dict_map)
dict_main.update(dict_layer)
data.append(dict_main)
dict_map = { key : value }
dict_layer = None
dict_attrb = None
elif key == 'Layer':
# attach the last the previous Layer
if dict_layer is not None:
dict_main = copy.copy(dict_map)
dict_main.update(dict_layer)
data.append(dict_main)
dict_layer = { key: int(value) }
dict_attrb = None
elif key == 'Key_column':
dict_layer[key] = value
dict_attrb = dict()
dict_layer[attr_pseudo_key] = dict_attrb
elif dict_attrb is not None:
dict_attrb[key] = value
elif dict_layer is not None:
if key == 'Category':
dict_layer[key] = int(value)
else:
dict_layer[key] = value
else:
dict_map[key] = value
# TODO: there are some keys which has non-string values
# examples: Sq_Meters, Hectares, Acres, Sq_Miles
# attach the last one
if dict_layer is not None:
dict_main = copy.copy(dict_map)
dict_main.update(dict_layer)
data.append(dict_main)
return data
|