db_util.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # 连接数据库
  2. import psycopg2
  3. from psycopg2.extras import DictCursor
  4. import logging
  5. # 配置日志
  6. logging.basicConfig(level=logging.INFO)
  7. logger = logging.getLogger(__name__)
  8. conn = psycopg2.connect(
  9. dbname="test",
  10. user="postgres",
  11. password="postgis",
  12. host="192.168.100.30",
  13. port="5432"
  14. )
  15. def getDiffEwkt(ewkt, tbName):
  16. with conn.cursor(cursor_factory=DictCursor) as cur:
  17. sql = f"""SELECT
  18. st_asewkt ( st_difference ( st_geomfromewkt ( %s ), st_union ( tb.geom ) ) )
  19. FROM
  20. "{tbName}" as tb
  21. WHERE
  22. st_contains ( st_geomfromewkt ( %s ), tb.geom );"""
  23. complete_sql = cur.mogrify(sql, (ewkt, ewkt,)).decode('utf-8')
  24. logger.info(f"Executing SQL: {complete_sql}")
  25. cur.execute(sql, (ewkt, ewkt,))
  26. res = cur.fetchone()
  27. return res[0]
  28. # ewkt='SRID=4490;POLYGON ((106.67844989540063 38.207187208754306, 106.67844989540063 38.212680372816806, 106.67295673133813 38.212680372816806, 106.67295673133813 38.207187208754306, 106.67844989540063 38.207187208754306))'
  29. # getEwkt=getDiffEwkt('6401812024070108270001',ewkt)
  30. # print(getEwkt)