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 2f321e0 commit bad8b97Copy full SHA for bad8b97
README.md
@@ -76,18 +76,18 @@ import pyosp
76
baseline = pyosp.datasets.get_path("homo_baseline.shp") # the path to baseline shapefile
77
raster = pyosp.datasets.get_path("homo_mount.tif") # the path to raster file
78
79
-orig = pyosp.orig_curv(line, raster, width=100,
+orig = pyosp.Orig_curv(line, raster, width=100,
80
line_stepsize=3, cross_stepsize=none)
81
82
-elev = pyosp.elev_curv(line, raster, width=100,
+elev = pyosp.Elev_curv(line, raster, width=100,
83
min_elev=0.01,
84
85
86
-slope = pyosp.slope_curv(line, raster, width=100,
+slope = pyosp.Slope_curv(line, raster, width=100,
87
min_slope=1,
88
89
90
-tpi = pyosp.tpi_curv(line, raster, width=100,
+tpi = pyosp.Tpi_curv(line, raster, width=100,
91
tpi_radius=50, min_tpi=0,
92
93
```
0 commit comments