Skip to content

Commit 55ab89e

Browse files
committed
update docstring
1 parent c127edb commit 55ab89e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/user_guide/01_Reading_data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,14 @@ shp = utilities.read_file(input="/path/to/boxes_shapefile.shp")
139139
shp.head()
140140
```
141141

142-
If your shapefile does not include an `image_path` column, you must provide the raster path via `rgb_path`:
142+
If your shapefile does not include an `image_path` column, you must provide the raster path via `img_path`:
143143

144144
```python
145145
from deepforest import utilities
146146

147147
shp = utilities.read_file(
148148
input="/path/to/boxes_shapefile.shp",
149-
rgb_path="/path/to/OSBS_029.tif"
149+
image_path="/path/to/OSBS_029.tif"
150150
)
151151
```
152152

@@ -157,7 +157,7 @@ from deepforest import utilities
157157

158158
shp = utilities.read_file(
159159
input="/path/to/boxes_shapefile.shp",
160-
rgb_path="/path/to/OSBS_029.tif",
160+
image_path="/path/to/OSBS_029.tif",
161161
label="Tree"
162162
)
163163
```

0 commit comments

Comments
 (0)