outmap.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # -*- coding: utf-8 -*-
  2. import os
  3. import sys
  4. import log
  5. import uuid
  6. import arcpy
  7. import arcpy.mapping as mp
  8. class OutMap:
  9. def __init__(self, data):
  10. self.root = os.path.dirname(os.path.abspath(__file__))
  11. guid = ''.join(str(uuid.uuid1()).split('-'))
  12. self.jpg = os.path.join(self.root, r"mxds\fzxz\jpgs", guid);
  13. self.mxd = os.path.join(self.root, r"mxds\fzxz\FzxzMap.mxd");
  14. self.shp = os.path.join(self.root, r"mxds\fzxz\fzxz.mxd");
  15. os.makedirs(self.jpg)
  16. arcpy.RefreshActiveView()
  17. def run(self):
  18. mxd = mp.MapDocument(self.mxd)
  19. df = mp.ListDataFrames(mxd)[0]
  20. layF = mp.ListLayers(mxd, 'fzxzF')[0]
  21. layM = mp.ListLayers(mxd, 'fzxzM')[0]
  22. layExtent = layF.getExtent()
  23. cursor = arcpy.SearchCursor(layF, ['BSM'])
  24. for row in cursor:
  25. fid = row.getValue("BSM")
  26. where = "BSM='{0}'".format(str(fid))
  27. # 全局
  28. layF.definitionQuery = where
  29. layM.definitionQuery = ''
  30. df.extent = layExtent
  31. fileF = os.path.join(self.jpg, '{0}F.jpg'.format(fid))
  32. arcpy.RefreshActiveView()
  33. arcpy.mapping.ExportToJPEG(mxd, fileF, resolution=90)
  34. print(fileF)
  35. # 局部
  36. layF.definitionQuery = '-1'
  37. layM.definitionQuery = where
  38. fileM = os.path.join(self.jpg, '{0}M.jpg'.format(fid))
  39. df.extent = layM.getExtent()
  40. arcpy.RefreshActiveView()
  41. arcpy.mapping.ExportToJPEG(mxd, fileM, resolution=90)
  42. print(fileM)