Browse Source

Merge remote-tracking branch 'origin/master'

mengxiangge 5 years ago
parent
commit
026aa37ed8

+ 0 - 1
datacenter/docs/relation_calc/Bd2Sp.md

@@ -26,7 +26,6 @@ try:
     with plpy.subtransaction():
         for table in list:
             str = "UPDATE {0} as zone SET building_id = floor.build_id from public.floor as floor where floor_id = floor.id and zone.project_id = $1 and floor_id is not null".format(table.strip())
-            plpy.info(str)
             plan = plpy.prepare(str, ["text"])
             data = plan.execute([project_id])
 except Exception as e:

+ 65 - 0
datacenter/docs/relation_calc/CalcArea.md

@@ -0,0 +1,65 @@
+计算业务空间面积
+## 前置条件 
+    outline信息点不为空, 且格式正确
+    
+## 函数
+
+```
+CREATE OR REPLACE FUNCTION calc_area_v3(json_poly jsonb) RETURNS float8 AS
+$$
+from shapely.geometry import Polygon
+import json
+
+def meta_polygon_area(single_poly):
+    try:
+        poly_len = len(single_poly)
+        poly = []
+        for i in range(poly_len):
+            pair = single_poly[i]
+            poly.append((pair["X"], pair["Y"]))
+        p = Polygon(poly)
+        return p.area
+    except Exception as e:
+        plpy.info(e)
+        return 0.0
+
+
+def get_area(polygons):
+    length = len(polygons)
+    if length == 0:
+        return 0.0
+    total_area = 0.0
+    for j in range(length):
+        polygon = polygons[j]
+        single_area = meta_polygon_area(polygon)
+        if single_area == 0.0:
+            return 0.0
+        if j == 0:
+            total_area = single_area
+        else:
+            total_area -= single_area
+    return total_area
+
+try:
+    polygon_list = json.loads(json_poly)
+    total_len = len(polygon_list)
+    area = 0.0
+    for index in range(total_len):
+        single_area = get_area(polygon_list[index])
+        if single_area == 0:
+            return None
+        area += single_area
+    return area
+except Exception as e:
+    plpy.info(e)
+    return None
+$$
+    LANGUAGE 'plpython3u' VOLATILE;
+```
+## 入参
+    1. 业务空间的outline
+## 例子
+    select id, outline, local_name, calc_area_v3(outline)/1000000 as "area(m2)" from public.zone_air_conditioning where outline is not null;
+    
+## 其他
+    Python的Shapely包文档地址   https://shapely.readthedocs.io/en/latest/manual.html

+ 0 - 1
datacenter/docs/relation_calc/Eq2Fl.md

@@ -68,7 +68,6 @@ try:
                     plan = plpy.prepare("update equipment set floor_id = $1 where id = $2", ["text", "text"])
                     plan.execute([equip['floor_id'], equip['id']])
                 except Exception as ex:
-                    plpy.info(ex)
                     continue
 except Exception as e:
     plpy.warning(e)

+ 47 - 0
datacenter/docs/relation_calc/Eq2Sh.md

@@ -0,0 +1,47 @@
+设备所在竖井关系计算
+## 前置条件
+    1. 首先需要有设备所在业务空间关系
+    2. 需要有竖井包含业务空间关系
+## 计算过程
+    1. 通过 竖井--> 业务空间 --> 设备的间接关系, 堆出竖井和设备的关系
+    2. 结果保存到r_eq_in_sh表中
+## 函数
+```
+-- 设备所在竖井
+create or replace function public.rel_eq2sh(project_id character varying) returns boolean
+as
+$$
+
+try:
+    # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
+    with plpy.subtransaction():
+        delete_plan = plpy.prepare("delete from r_eq_in_sh where project_id = $1 and sign = 2", ["text"])
+        delete_plan.execute([project_id])
+        join_plan = plpy.prepare("select sh.shaft_id as shaft_id, eq.equip_id as equip_id from r_sh_contain_sp_base as sh inner join r_eq_in_sp_base as eq on sh.space_id = eq.space_id where eq.project_id = $1 and sh.project_id = $1", ["text"])
+        rel = join_plan.execute([project_id])
+        eq2sh = dict()
+        for row in rel:
+            shaft = row['shaft_id']
+            equip = row['equip_id']
+            if shaft not in eq2sh:
+                eq2sh[shaft] = set()
+            eq_set = eq2sh[shaft]
+            eq_set.add(equip)
+        for sid, eq_set in eq2sh.items():
+            for eq_id in eq_set:
+                plan = plpy.prepare("insert into r_eq_in_sh(shaft_id, equip_id, project_id, sign) values($1, $2, $3, 2)", ["text", "text", "text"])
+                plan.execute([sid, eq_id, project_id])
+except Exception as e:
+    plpy.warning(e)
+    return False
+else:
+    return True
+$$
+LANGUAGE 'plpython3u' VOLATILE;
+```
+
+## 入参
+    1. 项目id
+    
+## 例子
+    1. select public.rel_eq2sh('Pj1101010015');

+ 0 - 7
datacenter/docs/relation_calc/Eq2Sp.md

@@ -20,20 +20,16 @@ import json
 
 def is_in_meta_polygon(point, single_poly, radius):
     poly_len = len(single_poly)
-    plpy.info(poly_len)
     poly = []
     for i in range(poly_len):
         pair = single_poly[i]
         poly.append((pair["X"], pair["Y"]))
-        plpy.info(pair["X"])
-
     p = Path(poly)
     return p.contains_points([point], None, radius)
 
 
 def is_in_polygon(point, polygons):
     polygons_length = len(polygons)
-    plpy.info(polygons_length)
     if polygons_length == 0:
         return False
     for j in range(polygons_length):
@@ -64,8 +60,6 @@ def is_point_in_polygon(x, y, json_poly):
 # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
 input_table_list = tables.split(',')
 output_table_list = out_tables.split(',')
-#if len(input_table_list) > 0
-    #plpy.info(input_table_list[0])
 with plpy.subtransaction():
     for i in range(0, len(input_table_list)):
         in_table_name = input_table_list[i]
@@ -90,7 +84,6 @@ with plpy.subtransaction():
             if len(spaces) == 0:
                 continue
             # 判断设备的bim_location是否在业务空间的outline内
-            # plpy.info("设备有{0}个, 业务空间有{1}个".format(len(equips), len(spaces)))
             for equip in equips:
                 for space in spaces:
                     try:

+ 1 - 1
datacenter/docs/relation_calc/Fl2Fl.md

@@ -26,7 +26,7 @@ try:
         plan2 = plpy.prepare("select f1.id as lid, f2.id as rid from floor f1 left join floor f2 on f1.model_id = f2.model_id where f1.id != f2.id and f1.project_id = $1 and f2.project_id = $1", ["text"])
         relation = plan2.execute([project_id])
         if len(relation) == 0:
-            plpy.info("计算出没有关系")
+            # plpy.info("计算出没有关系")
             return True
         for row in relation:
             plan3 = plpy.prepare("insert into r_fl_through_fl(floor_id, floor_other_id, project_id, sign) values($1, $2, $3, 2) ", ["text", "text", 'text'])

+ 0 - 7
datacenter/docs/relation_calc/Fl2Sp.md

@@ -1,7 +0,0 @@
-楼层下的业务空间
-
-## 前置条件
-    
-
-## 处理方式
-楼层绑定模型时自动计算

+ 35 - 0
datacenter/docs/relation_calc/Pe2Bd.md

@@ -0,0 +1,35 @@
+资产所在建筑
+## 前置条件
+    1. 资产有绑定的设备或部件
+    2. 绑定的设备或部件有所在建筑
+    
+## 计算流程
+    根据 资产 --> 设备/部件 --> 建筑 的间接关系, 来获取资产和建筑的所在关系
+    
+## 函数
+```
+-- 资产属于建筑体
+create or replace function public.rel_pe2bd(project_id character varying) returns boolean
+as
+$$
+try:
+    # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
+    with plpy.subtransaction():
+        plan = plpy.prepare("update property as pe set building_id = eq.building_id from equipment eq where eq.id = pe.equip_id and eq.building_id is not null and eq.project_id = $1 and pe.project_id = $1", ["text"])
+        rel = plan.execute([project_id])
+except Exception as e:
+    plpy.warning(e)
+    return False
+else:
+    return True
+$$
+LANGUAGE 'plpython3u' VOLATILE;
+
+
+select public.rel_pe2bd('Pj1101010015');
+```
+
+## 入参
+    1. 项目id
+## 例子
+    select public.rel_pe2bd('Pj1101010015');

+ 34 - 0
datacenter/docs/relation_calc/Pe2Fl.md

@@ -0,0 +1,34 @@
+资产所在楼层
+## 前置条件
+    1. 资产有绑定的设备或部件
+    2. 绑定的设备或部件有所在楼层
+    
+## 计算流程
+    根据 资产 --> 设备/部件 --> 楼层 的间接关系, 来获取资产所在建筑的关系
+    
+## 函数
+```
+-- 资产属于楼层
+create or replace function public.rel_pe2fl(project_id character varying) returns boolean
+as
+$$
+try:
+    # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
+    with plpy.subtransaction():
+        plan = plpy.prepare("update property as pe set floor_id = eq.floor_id from equipment eq where eq.id = pe.equip_id and eq.floor_id is not null and eq.project_id = $1 and pe.project_id = $1", ["text"])
+        rel = plan.execute([project_id])
+except Exception as e:
+    plpy.warning(e)
+    return False
+else:
+    return True
+$$
+LANGUAGE 'plpython3u' VOLATILE;
+
+select public.rel_pe2fl('Pj1101010015');
+```
+
+## 入参
+    1. 项目id
+## 例子
+    select public.rel_pe2fl('Pj1101010015');

+ 37 - 0
datacenter/docs/relation_calc/Pe2Sh.md

@@ -0,0 +1,37 @@
+资产所在竖井
+## 前置条件
+    1. 资产有绑定的设备或部件
+    2. 绑定的设备或部件有所在竖井关系
+    
+## 计算流程
+    根据 资产 --> 设备/部件 --> 竖井 的间接关系, 来获取资产所在竖井的关系
+    
+## 函数
+```
+-- 资产所在竖井
+create or replace function public.rel_pe2sh(project_id character varying) returns boolean
+as
+$$
+try:
+    # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
+    with plpy.subtransaction():
+        delete_plan = plpy.prepare("delete from r_pe_in_sh where project_id = $1 and sign = 2", ["text"])
+        delete_plan.execute([project_id])
+        plan = plpy.prepare("insert into r_pe_in_sh(equip_id, shaft_id, project_id, sign) select pe.id, rel.shaft_id, rel.project_id, 2 from property pe inner join r_eq_in_sh rel on pe.equip_id = rel.equip_id where pe.project_id = $1 and rel.project_id = $1", ["text"])
+        plan.execute([project_id])
+except Exception as e:
+    plpy.warning(e)
+    return False
+else:
+    return True
+$$
+LANGUAGE 'plpython3u' VOLATILE;
+
+
+select public.rel_pe2sh('Pj1101010015');
+```
+
+## 入参
+    1. 项目id
+## 例子
+    select public.rel_pe2sh('Pj1101010015');

+ 42 - 0
datacenter/docs/relation_calc/Pe2Sp.md

@@ -0,0 +1,42 @@
+资产所在业务空间
+## 前置条件
+    1. 资产有绑定的设备或部件
+    2. 绑定的设备或部件有所在业务空间关系
+    
+## 计算流程
+    根据 资产 --> 设备/部件 --> 业务空间 的间接关系, 来获取资产所在业务空间的关系
+    
+## 函数
+```
+-- 资产所在业务空间
+create or replace function public.rel_pe2sp(project_id character varying) returns boolean
+as
+$$
+try:
+    input_tables = ['r_eq_in_sp_zone_air_conditioning', 'r_eq_in_sp_zone_clean', 'r_eq_in_sp_zone_domestic_water_supply', 'r_eq_in_sp_zone_fire', 'r_eq_in_sp_zone_function',
+        'r_eq_in_sp_zone_general', 'r_eq_in_sp_zone_heating', 'r_eq_in_sp_zone_lighting', 'r_eq_in_sp_zone_network', 'r_eq_in_sp_zone_power_supply', 'r_eq_in_sp_zone_security', 'r_eq_in_sp_zone_tenant']
+    output_tables = ['r_pe_in_sp_zone_air_conditioning', 'r_pe_in_sp_zone_clean', 'r_pe_in_sp_zone_domestic_water_supply',
+        'r_pe_in_sp_zone_fire', 'r_pe_in_sp_zone_function', 'r_pe_in_sp_zone_general', 'r_pe_in_sp_zone_heating', 'r_pe_in_sp_zone_lighting',
+        'r_pe_in_sp_zone_network', 'r_pe_in_sp_zone_power_supply', 'r_pe_in_sp_zone_security', 'r_pe_in_sp_zone_tenant']
+    # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
+    with plpy.subtransaction():
+        for i in range(len(output_tables)):
+            delete_plan = plpy.prepare("delete from {0} where project_id = $1 and sign = 2".format(output_tables[i]), ["text"])
+            delete_plan.execute([project_id])
+            join_plan = plpy.prepare("insert into {1}(equip_id, space_id, project_id, sign) select pe.id, rel.space_id, pe.project_id, 2 from property pe inner join {0} rel on pe.equip_id = rel.equip_id where pe.project_id = $1 and rel.project_id = $1".format(input_tables[i], output_tables[i]), ["text"])
+            rel = join_plan.execute([project_id])
+except Exception as e:
+    plpy.warning(e)
+    return False
+else:
+    return True
+$$
+LANGUAGE 'plpython3u' VOLATILE;
+
+select public.rel_pe2sp('Pj1101010015');
+```
+
+## 入参
+    1. 项目id
+## 例子
+    select public.rel_pe2sp('Pj1101010015');

+ 0 - 5
datacenter/docs/relation_calc/Sp2Fl.md

@@ -1,5 +0,0 @@
-空间所在楼层
-
-参见设备所在楼层的算法。
-
-需要一个空间相交不为空算法。

+ 46 - 0
datacenter/docs/relation_calc/Sy2Bd.md

@@ -0,0 +1,46 @@
+系统所在建筑
+## 前置条件
+    1. 系统下有设备
+    2. 系统下的设备有所属建筑的关系
+## 计算流程
+    1. 通过 系统 --> 设备 --> 建筑 的间接关系, 获取系统所在建筑的关系
+    2. 结果存储在 r_sy_in_bd 表中
+    
+## 函数
+~~~
+-- 系统所在建筑
+create or replace function public.rel_sy2bd(project_id character varying) returns boolean
+as
+$$
+try:
+    # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
+    with plpy.subtransaction():
+        delete_plan = plpy.prepare("delete from r_sy_in_bd where project_id = $1 and sign = 2", ["text"])
+        delete_plan.execute([project_id])
+        join_plan = plpy.prepare("select sy.sys_id, eq.building_id from r_sy_eq sy inner join equipment eq on sy.equip_id = eq.id where eq.project_id = $1 and sy.project_id = $1 and eq.building_id is not null", ["text"])
+        rel = join_plan.execute([project_id])
+        sy2bd = dict()
+        for row in rel:
+            sys = row['sys_id']
+            building = row['building_id']
+            if sys not in sy2bd:
+                sy2bd[sys] = set()
+            sys_set = sy2bd[sys]
+            sys_set.add(building)
+        for sid, sys_set in sy2bd.items():
+            for building in sys_set:
+                plan = plpy.prepare("insert into r_sy_in_bd(sys_id, building_id, project_id, sign) values($1, $2, $3, 2)", ["text", "text", "text"])
+                plan.execute([sid, building, project_id])
+except Exception as e:
+    plpy.warning(e)
+    return False
+else:
+    return True
+$$
+LANGUAGE 'plpython3u' VOLATILE;
+~~~
+
+## 入参
+    1. 项目id
+## 例子
+    select public.rel_sy2bd('Pj1101010015');

+ 46 - 0
datacenter/docs/relation_calc/Sy2Fl.md

@@ -0,0 +1,46 @@
+系统所在楼层
+## 前置条件
+    1. 系统下有设备
+    2. 系统下的设备有所属楼层关系
+## 计算流程
+    1. 通过 系统 --> 设备 --> 楼层 的间接关系, 获取系统所在楼层的关系
+    2. 计算关系存储在表 r_sy_in_fl 中
+## 函数
+~~~
+-- 系统所在楼层
+create or replace function public.rel_sy2fl(project_id character varying) returns boolean
+as
+$$
+try:
+    # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
+    with plpy.subtransaction():
+        delete_plan = plpy.prepare("delete from r_sy_in_fl where project_id = $1 and sign = 2", ["text"])
+        delete_plan.execute([project_id])
+        join_plan = plpy.prepare("select sy.sys_id, eq.building_id, eq.floor_id from r_sy_eq sy inner join equipment eq on sy.equip_id = eq.id where eq.project_id = $1 and sy.project_id = $1 and eq.floor_id is not null", ["text"])
+        rel = join_plan.execute([project_id])
+        sy2bd = dict()
+        for row in rel:
+            sys = row['sys_id']
+            building = row['building_id']
+            floor = row['floor_id']
+            if sys not in sy2bd:
+                sy2bd[sys] = dict()
+            sys_dict = sy2bd[sys]
+            sys_dict[floor] = building
+        for sid, sys_dict in sy2bd.items():
+            for floor, building in sys_dict.items():
+                plan = plpy.prepare("insert into r_sy_in_fl(sys_id, floor_id, building_id, project_id, sign) values($1, $2, $3, $4, 2)", ["text", "text", "text", "text"])
+                plan.execute([sid, floor, building, project_id])
+except Exception as e:
+    plpy.warning(e)
+    return False
+else:
+    return True
+$$
+LANGUAGE 'plpython3u' VOLATILE;
+~~~
+
+## 入参
+    1. 项目id
+## 例子
+    select public.rel_sy2fl('Pj1101010015');

+ 46 - 0
datacenter/docs/relation_calc/Sy2Sh.md

@@ -0,0 +1,46 @@
+系统所在竖井
+## 前置条件
+    1. 系统下有设备
+    2. 系统下的设备有所在竖井关系
+## 计算流程
+    1. 根据 系统 --> 设备 --> 竖井 来间接获取系统所属竖井关系
+    2. 计算后的关系存储在表 r_sy_in_sh
+## 函数
+```
+-- 系统所在竖井
+create or replace function public.rel_sy2sh(project_id character varying) returns boolean
+as
+$$
+try:
+    # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
+    with plpy.subtransaction():
+        delete_plan = plpy.prepare("delete from r_sy_in_sh where project_id = $1 and sign = 2", ["text"])
+        delete_plan.execute([project_id])
+        join_plan = plpy.prepare("select sy.sys_id, rel.shaft_id from r_sy_eq sy inner join r_eq_in_sh rel on sy.equip_id = rel.equip_id where rel.project_id = $1 and sy.project_id = $1", ["text"])
+        rel = join_plan.execute([project_id])
+        sy2sh = dict()
+        for row in rel:
+            sys = row['sys_id']
+            shaft = row['shaft_id']
+            if sys not in sy2sh:
+                sy2sh[sys] = set()
+            shaft_set = sy2sh[sys]
+            shaft_set.add(shaft)
+        for sid, shaft_set in sy2sh.items():
+            for shaft in shaft_set:
+                plan = plpy.prepare("insert into r_sy_in_sh(sys_id, shaft_id, project_id, sign) values($1, $2, $3, 2)", ["text", "text", "text"])
+                plan.execute([sid, shaft, project_id])
+except Exception as e:
+    plpy.warning(e)
+    return False
+else:
+    return True
+$$
+LANGUAGE 'plpython3u' VOLATILE;
+```
+
+## 输入
+    1. 项目id
+
+## 例子
+    select public.rel_sy2sh('Pj1101010015');

+ 53 - 0
datacenter/docs/relation_calc/Sy2Sp.md

@@ -0,0 +1,53 @@
+系统所在业务空间
+## 前置条件
+    1. 系统下有设备
+    2. 系统下的设备有所在业务空间关系
+    
+## 计算流程
+    1. 根据 系统 --> 设备 --> 业务空间 的间接关系, 获取系统和业务空间的关系
+    2. 计算结果存储在r_sy_in_sp_*中
+## 函数
+```
+-- 系统所在楼层
+create or replace function public.rel_sy2sp(project_id character varying) returns boolean
+as
+$$
+try:
+    input_tables = ['r_eq_in_sp_zone_air_conditioning', 'r_eq_in_sp_zone_clean', 'r_eq_in_sp_zone_domestic_water_supply', 'r_eq_in_sp_zone_fire', 'r_eq_in_sp_zone_function',
+        'r_eq_in_sp_zone_general', 'r_eq_in_sp_zone_heating', 'r_eq_in_sp_zone_lighting', 'r_eq_in_sp_zone_network', 'r_eq_in_sp_zone_power_supply', 'r_eq_in_sp_zone_security', 'r_eq_in_sp_zone_tenant']
+    output_tables = ['r_sy_in_sp_zone_air_conditioning', 'r_sy_in_sp_zone_clean', 'r_sy_in_sp_zone_domestic_water_supply',
+        'r_sy_in_sp_zone_fire', 'r_sy_in_sp_zone_function', 'r_sy_in_sp_zone_general', 'r_sy_in_sp_zone_heating', 'r_sy_in_sp_zone_lighting',
+        'r_sy_in_sp_zone_network', 'r_sy_in_sp_zone_power_supply', 'r_sy_in_sp_zone_security', 'r_sy_in_sp_zone_tenant']
+    # 将下面对数据库的操作作为一个事务, 出异常则自动rollback
+    with plpy.subtransaction():
+        for i in range(len(output_tables)):
+            delete_plan = plpy.prepare("delete from {0} where project_id = $1 and sign = 2".format(output_tables[i]), ["text"])
+            delete_plan.execute([project_id])
+            join_plan = plpy.prepare("select sy.sys_id, rel.space_id from r_sy_eq sy inner join {0} rel on sy.equip_id = rel.equip_id where rel.project_id = $1 and sy.project_id = $1".format(input_tables[i]), ["text"])
+            rel = join_plan.execute([project_id])
+            sy2sp = dict()
+            for row in rel:
+                sys = row['sys_id']
+                space = row['space_id']
+                if sys not in sy2sp:
+                    sy2sp[sys] = set()
+                space_set = sy2sp[sys]
+                space_set.add(space)
+            for sid, space_set in sy2sp.items():
+                for space in space_set:
+                    plan = plpy.prepare("insert into {0}(sys_id, space_id, project_id, sign) values($1, $2, $3, 2)".format(output_tables[i]), ["text", "text", "text"])
+                    plan.execute([sid, space, project_id])
+except Exception as e:
+    plpy.warning(e)
+    return False
+else:
+    return True
+$$
+LANGUAGE 'plpython3u' VOLATILE;
+```
+
+## 输入
+    1. 项目id
+
+## 例子
+    select public.rel_sy2sp('Pj1101010015');