utilsgis.py 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. # -*- coding: utf-8 -*-
  2. import os
  3. import sys
  4. import json
  5. import log
  6. import arcpy
  7. import appconfig
  8. from arcpy import env
  9. import importlib, sys
  10. importlib.reload(sys)
  11. # shp转json
  12. def shp2geojson(shpfile, geojson):
  13. try:
  14. env.workspace = os.path.dirname(shpfile)
  15. arcpy.FeaturesToJSON_conversion(shpfile, geojson, geoJSON="GEOJSON")
  16. except:
  17. msg = str(sys.exc_info()).decode('string-escape')
  18. print("####ERROR####" + msg)
  19. log.error(msg)
  20. # json转shp
  21. def esriJson2shp(jsonfile, shpfile):
  22. try:
  23. env.workspace = shpfile
  24. arcpy.JSONToFeatures_conversion(jsonfile, shpfile)
  25. except:
  26. msg = str(sys.exc_info()).decode('string-escape')
  27. print("####ERROR####" + msg)
  28. log.error(msg)
  29. # json存入SDE
  30. def esriJson2sde(jsonfile, target_table):
  31. try:
  32. sdeTable = target_table.split('.')
  33. sde = appconfig.SDE[sdeTable[0]]
  34. env.workspace = sde
  35. # Json转Shp(JSON不能追加)
  36. shpfile = jsonfile.replace('.json', '.shp')
  37. arcpy.JSONToFeatures_conversion(jsonfile, shpfile)
  38. arcpy.Append_management(shpfile, target_table, "NO_TEST")
  39. except:
  40. msg = str(sys.exc_info()).decode('string-escape')
  41. print("####ERROR####" + msg)
  42. log.error(msg)
  43. # shp转sde
  44. def shp2sde(shpfile, target_table, fields):
  45. sdeTable = target_table.split('.')
  46. sde = appconfig.SDE[sdeTable[0]]
  47. env.workspace = sde
  48. if fields != None:
  49. for field in fields:
  50. arcpy.AddField_management(shpfile, field["name"], field["type"])
  51. arcpy.CalculateField_management(shpfile, field["name"], "\"{0}\"".format(field["value"]), "PYTHON_9.3")
  52. arcpy.Append_management(shpfile, target_table, "NO_TEST")
  53. # sde转geojson
  54. def sde2shp(in_table, shpfile, where):
  55. try:
  56. sdeTable = in_table.split('.')
  57. sde = appconfig.SDE[sdeTable[0]]
  58. env.workspace = sde
  59. arcpy.Delete_management(shpfile)
  60. if where != "" and where != None:
  61. arcpy.Select_analysis(in_table, shpfile, where)
  62. else:
  63. arcpy.Select_analysis(in_table, shpfile, "1=1")
  64. except:
  65. msg = str(sys.exc_info()).decode('string-escape')
  66. print("####ERROR####" + msg)
  67. log.error(msg)
  68. # dwg转shp
  69. def dwg2shp(dwgfile, espg):
  70. try:
  71. log.info(dwgfile)
  72. # CAD文件路径
  73. input_cad_dataset = dwgfile
  74. # 文件路径
  75. defaultpath = os.path.dirname(input_cad_dataset)
  76. # 输入CAD文件名称
  77. CADname = input_cad_dataset.split('\\').pop().split('/').pop().rsplit('.', 1)[0]
  78. log.info(CADname)
  79. # 定义工作空间
  80. arcpy.env.workspace = defaultpath
  81. # gdb文件路径
  82. out_gdb_path = os.path.join(defaultpath, CADname + '.gdb')
  83. log.info("GDB=>" + out_gdb_path)
  84. # 要素集文件名称
  85. out_dataset_name = CADname
  86. # CAD转shp坐标比例
  87. reference_scale = "1"
  88. # 先创建一个gdb地理数据库
  89. if os.path.exists(out_gdb_path):
  90. arcpy.Delete_management(out_gdb_path)
  91. arcpy.CreateFileGDB_management(defaultpath, CADname + '.gdb')
  92. # 将CAD文件导入到gdb地理数据库,新建一个要素集
  93. arcpy.CADToGeodatabase_conversion(input_cad_dataset, out_gdb_path, out_dataset_name, reference_scale)
  94. # 切换工作空间到gdb中
  95. arcpy.env.workspace = out_gdb_path
  96. # 获取gdb中的文件列表
  97. datasets = arcpy.ListDatasets(feature_type='feature')
  98. # 输入shp文件的保存路径
  99. output_shp_path = os.path.join(defaultpath, CADname + '.shps')
  100. if not os.path.exists(output_shp_path):
  101. os.makedirs(output_shp_path)
  102. datasets = [''] + datasets if datasets is not None else []
  103. # 获取每个地理数据库中的要素集
  104. shp = ''
  105. for ds in datasets:
  106. for fc in arcpy.ListFeatureClasses(feature_dataset=ds):
  107. path = os.path.join(arcpy.env.workspace, ds, fc)
  108. log.info(path)
  109. outfc = arcpy.ValidateTableName(fc)
  110. shpfile = os.path.join(output_shp_path, outfc + '.shp')
  111. log.info(shpfile)
  112. if outfc == 'Polyline' or outfc == 'Polygon':
  113. shp += ";" + shpfile
  114. # 将要素集里的要素转为shp文件
  115. arcpy.FeatureClassToShapefile_conversion(outfc, output_shp_path)
  116. # 直接定义espg编号 - CGCS2000_3_Degree_GK_Zone_38
  117. coord_sys = arcpy.SpatialReference(espg)
  118. # 定义地理坐标系
  119. arcpy.DefineProjection_management(shpfile, coord_sys)
  120. print("####OK####" + shp)
  121. except:
  122. msg = str(sys.exc_info()).decode('string-escape')
  123. print("####ERROR####" + msg)
  124. log.error(msg)