Hi,
I am looking how to retrive metadata from GeoTiff files by using Julia language.
I can obtain the relevant information by using the rasterio.jl python package, but I am struggling to perform the same commands by using the Julia language. I looked at the Rasters.jl package, but could not find an easy answer.
Below is the code I wrote in Python and it will be great to find similar package in Julia language.
Many thanks for any help you may provide,
Joseph
import rasterio
def INFORMATION(Path_Input, Verbose=True):
Rasterio = rasterio.open(Path_Input)
Dimensions = Rasterio.transform
CellSize_X = Dimensions[0]
CellSize_Y = Dimensions[4]
N_Width = Rasterio.width
N_Hight = Rasterio.height
CRS = Rasterio.crs
Coord_X_Left = Rasterio.bounds[0]
Coord_X_Right = Rasterio.bounds[2]
Coord_Y_Top = Rasterio.bounds[3]
Coord_Y_Bottom = Rasterio.bounds[1]
Coord_TopLeft = [Coord_Y_Top, Coord_X_Left]
Coord_BottomRight = [Coord_Y_Bottom, Coord_X_Right]
if Verbose:
print("Cell size_X=", CellSize_X )
print("Cell size_Y=", CellSize_Y )
print("DEM width= " , N_Width)
print("DEM height= ", N_Hight)
print("Coordinate Reference System CRS=" , CRS)
print("Bounds= ", Rasterio.bounds)
print("Bound_Left= ", Coord_X_Left ," ,Bound_Right= ", Coord_X_Right ," ,Bound_Top= ", Coord_Y_Top ," ,Bound_Botton= ", Coord_Y_Bottom)
print("Coord_TopLeft= ", Coord_TopLeft)
print("Coord_BottomRight= ", Coord_BottomRight)
return CellSize_X, CellSize_Y, Coord_BottomRight, Coord_TopLeft, Coord_X_Left, Coord_X_Right, Coord_Y_Bottom, Coord_Y_Top, CRS, N_Hight, N_Width, Rasterio