mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
8 lines
271 B
Python
8 lines
271 B
Python
|
import os.path
|
||
|
|
||
|
dataFolder = os.path.join(os.path.dirname(__file__), 'data')
|
||
|
raster = os.path.join(dataFolder, "raster.tif")
|
||
|
points = os.path.join(dataFolder, "points.shp")
|
||
|
lines = os.path.join(dataFolder, "lines.shp")
|
||
|
polygons = os.path.join(dataFolder, "polygons.shp")
|