How to Solve NameError: name 'reproject' is not defined -- rasterio

Solution: Import the 'reproject' module

To Solve the error, add the following line to the top of your code.

from rasterio import reproject

 

For more information:
Python rasterio reproject