• 大小: 106KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-06
  • 语言: 其他
  • 标签: arcgis  

资源简介

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


评论

共有 条评论