mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-09 00:35:20 -05:00
6 lines
216 B
Python
6 lines
216 B
Python
|
# shapefile_and_friends = None
|
||
|
# shapefile_plus_sidecars = shapefile_and_friends("test/data/states")
|
||
|
|
||
|
def shapefile_and_friends(path):
|
||
|
return dict((ext, path + "." + ext) for ext in ['shx', 'shp', 'dbf', 'prj'])
|