Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
  • Loading branch information
gisfanmachel committed Sep 20, 2024
1 parent b8aa2e8 commit 28ca5af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion com.vgis.python.rs/vgis_rs/tifTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def get_all_meta_of_tif(tif_path):
# 右下角
tif_maxx = adfGeoTransform[0] + cols * adfGeoTransform[1] + rows * adfGeoTransform[2]
tif_miny = adfGeoTransform[3] + cols * adfGeoTransform[4] + rows * adfGeoTransform[5]
envelop = (tif_minx, tif_miny, tif_maxx, tif_maxy)
envelop = [tif_minx, tif_miny, tif_maxx, tif_maxy]

# 获取投影信息
proj_wkt = TifFileOperator.get_projection_by_gdalinfo(tif_path)
Expand Down

0 comments on commit 28ca5af

Please sign in to comment.