资源简介
arcgis批量配准,快速批量配准,工作上常用到
代码片段和文件信息
# -*- coding:gb2312 -*-
#名称:写图像名文本(writeimgname.py)
#时间:2010年8月25日
#作者:云浩
#内容:把同一文件夹中的图像文件名写入投影参数文本文件
import sys os string glob
pydir = os.getcwd() + ‘\\‘
dirPath = os.path.abspath(‘..‘) + ‘\\‘
filelist = os.listdir(dirPath)
jpgfiles = glob.glob(dirPath + ‘*.jpg‘)
tiffiles = glob.glob(dirPath + ‘*.tif‘)
if jpgfiles == [] and tiffiles == []:
print dirPath + ‘没有JPG、TIF格式的影像文件,重选工作目录。‘
sys.exit()
f = True
while f == True:
txtname = raw_input(‘输入新建坐标参数文件名:‘)
if txtname.find(‘.txt‘) == -1:
txtname = txtname + ‘.txt‘
if glob.glob(dirPath + txtname) <> []: # 判断要创建的文件是否存在,如果存在则退出脚本
txtfile = dirPath + txtname
print txtfile + ‘已存在,请重输文件名。‘
else:f = False
newtxtfile = open(dirPath + txtname‘w‘)
for fname in jpgfiles + tiffiles:
kname = fname.split(dirPath)[1]
sname = kname.split(‘.‘)[0]
newtxtfile.write(sname+‘\n‘)
print sname
newtxtfile.close()
print ‘在‘ + dirPath + ‘工作目录下共有‘ + str(len(jpgfiles + tiffiles)) + ‘幅图像的文件名已输入‘ + txtname + ‘坐标参数文件中‘
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 144 2004-02-06 17:41 地图批量配准\Xian 1980.prj
文件 276992 2010-08-30 15:19 地图批量配准\中国国家基本地形图查询软件.exe
文件 1187 2010-08-30 17:32 地图批量配准\写图幅名.py
文件 3477 2010-08-30 23:30 地图批量配准\地图批量配准.py
目录 0 2010-08-31 13:24 地图批量配准
----------- --------- ---------- ----- ----
281800 5
相关资源
- 广东省各地级市边界shp等文件_Arcgis
- 玫瑰图制作教程
- ArcGIS10.4 全套软件加许可
- ARCGIS二调符号库195057
- ArcGis9.2万能license
- ArcGis9.2破解文件
- ArcGIS.10.2.2破解文件及破解说明
- 解决ArcGIS 10.2.2不能正常运行BUG的DLL文
- Arcgis批量裁剪
- ArcGIS Engine影像处理和分类
- 世界矢量图 国家,城市,湖泊,河流
- ArcGIS JS API调用天地图的地图服务
- Arcgis for Server10.3授权文件
- arcgis9.3破解到2048
-
Tianditu_Vec_w.xm
l - 太原shp格式电子地图
- ArcGIS10.7.1 的官方中文汉化语言包
- 1最新国土三调符号样式10月版.zip
- arcgis10.7.1.txt
- ArcGIS Engine 9.3 Runtime ecp
- arcgis建筑物密度计算
- 川渝地区shp文件
- ArcGIS研习班.txt
- ArcGIS全套文件.txt
- 700多个降水量站点shp图层
- arcgis10.5+汉化包安装包
- GeometryService实现距离长度测量
- 基于VS的ARCGIS Engine二次开发小程序,
- Arcgis Engine10.2安装包
- ArcGIS_Desktop_107_166570-DanCrack.iso.torrent
评论
共有 条评论