Python beginner here. I am using python to reproject a folder of rasters (.tifs). Each raster has a projection that I want to change to WGS 1984 (espg:4326). I want to use an open-source GIS library rather than ESRI's ArcPy library. I'm assuming this needs to occur with a loop going through my folder directory and reprojecting each raster one by one.
My current lines of code read:
newpath = 'path to my folder'
for raster in os.listdir(newpath):
gdal.Warp(new_filename, raster, dstSRS="+init=epsg:4326")
The problem I'm attempting to solve is how to correctly specify the output filename of each raster in the gdal.Warp line.
Any suggestions?