We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec29efb commit 18ae5f3Copy full SHA for 18ae5f3
README.md
@@ -78,18 +78,18 @@ import pyosp
78
baseline = pyosp.datasets.get_path("homo_baseline.shp") # the path to baseline shapefile
79
raster = pyosp.datasets.get_path("homo_mount.tif") # the path to raster file
80
81
-orig = pyosp.Orig_curv(line, raster, width=100,
+orig = pyosp.Orig_curv(baseline, raster, width=100,
82
line_stepsize=3, cross_stepsize=None)
83
84
-elev = pyosp.Elev_curv(line, raster, width=100,
+elev = pyosp.Elev_curv(baseline, raster, width=100,
85
min_elev=0.01,
86
87
88
-slope = pyosp.Slope_curv(line, raster, width=100,
+slope = pyosp.Slope_curv(baseline, raster, width=100,
89
min_slope=1,
90
91
92
-tpi = pyosp.Tpi_curv(line, raster, width=100,
+tpi = pyosp.Tpi_curv(baseline, raster, width=100,
93
tpi_radius=50, min_tpi=0,
94
95
```
0 commit comments