8 lines
271 B
Python
8 lines
271 B
Python
from app.models.landcover import LandcoverPathRequest, LandcoverPathResponse
|
|
|
|
|
|
def path_landcover(request: LandcoverPathRequest) -> LandcoverPathResponse:
|
|
raise NotImplementedError(
|
|
"Landcover and canopy raster sampling is implemented in a later stage"
|
|
)
|