file_util.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import os
  2. import rasterio
  3. from shapely.geometry import box
  4. def getAllFiles(filePath):
  5. fileList = []
  6. # 设置要遍历的文件夹路径
  7. folder_path = os.path.join(os.path.dirname(__file__), filePath)
  8. # 遍历文件夹
  9. for root, dirs, files in os.walk(folder_path):
  10. for file in files:
  11. file_path = os.path.join(root, file)
  12. if file_path.endswith('.tif') or file_path.endswith('.TIF'):
  13. fileList.append(file_path)
  14. return fileList
  15. # 获取当前目录下的文件夹
  16. def getDirList(filePath,startName):
  17. dirList = []
  18. # 设置要遍历的文件夹路径
  19. folder_path = os.path.join(os.path.dirname(__file__), filePath)
  20. # 遍历文件夹
  21. for root, dirs, files in os.walk(folder_path):
  22. for dir in dirs:
  23. if dir.startswith(startName):
  24. dirList.append(filePath+'/'+dir)
  25. return dirList
  26. # getDirList('img')
  27. def getTifEwkt(filePath):
  28. # 读取 tif 文件
  29. with rasterio.open(filePath) as src:
  30. # 获取 tif 文件的边界框 (bounds)
  31. bounds = src.bounds
  32. # 使用 shapely 的 box 函数创建矩形几何对象
  33. bbox = box(bounds.left, bounds.bottom, bounds.right, bounds.top)
  34. # 将矩形几何对象转换为 WKT 格式
  35. wkt = bbox.wkt
  36. ewkt='SRID=4490;'+wkt
  37. print('矢量范围:'+wkt)
  38. return ewkt