appconfig.py 968 B

1234567891011121314151617181920212223242526272829303132
  1. # -*- coding: utf-8 -*-
  2. import os
  3. root = os.path.dirname(os.path.abspath(__file__))
  4. # SDE
  5. SDE = {
  6. "JCPT": os.path.join(root, r"sde\JCPT.sde"),
  7. "KJGH": os.path.join(root, r"sde\KJGH.sde"),
  8. "KJGH_QY": os.path.join(root, r"sde\KJGH_QY.sde"),
  9. "KJGH_JCPT": os.path.join(root, r"sde\KJGH_JCPT.sde"),
  10. "SDE": os.path.join(root, r"sde\SDE.sde")
  11. }
  12. # 数据库
  13. # DB_CONN = 'KJGH/KJGH@127.0.0.1:1521/orclpdb'
  14. # DB_CONN = 'postgres/postgres@192.168.60.52:5432/basep'
  15. #DB_CONN = 'dbname=basep user=postgres password=postgres host=192.168.60.52 port=5432 search_path=onemap'
  16. DB_CONN = {"dbname": "kjgh", "user": "postgres", "password": "postgres", "host": "192.168.60.240", "port": "5432",
  17. "options": "-c search_path=otherSchema,onemap"}
  18. # 行政区
  19. XZQ = [
  20. {"xzqbm": "", "xzqmc": ""}
  21. ]
  22. # 获取SDE工作空间
  23. def getSDE(in_table):
  24. sdeTable = in_table.split('.')
  25. sde = SDE[sdeTable[0]]
  26. return sde