The conceptual evolution of green building in the 21st century – textual changes in LEED

The conceptual evolution of green building is reflected in historical versions of green building rating tools. Computational text analysis on historical versions of LEED revealed changes in the category systems and textual contents, which reflects how LEED’s green building concept has evolved in the 21st century. Keywords: green building rating tool (GBRT); conceptual evolution; LEED; computational text analysis ...

January 3, 2023 · 10 min · Sheng, D.

Python多线程和多进程的运行速度比较

通过一个图像合成视频的脚本案例测试了一下Python3在单线程、多线程和多进程下的运行速度。发现多线程可以一定程度上提高运行速度(将1个线程拆为4个线程,提速大约83%),但是不能达到完全的并行运算,据说是因为threading模块并不能真正调用多个处理器。在多进程下运行,可以接近完全平行的运算速度。 ...

December 16, 2022 · 2 min · Sheng, D.

简单理想情形下的Barrel distortion

Barrel distortion(桶形畸变)是一种成像画面呈桶形膨胀的畸变现象,通常在广角镜头下出现。最近在调试生态监测相机时就遇到了非常典型的桶形畸变,会影响到对于监测对象的定位精确性。 ...

November 16, 2022 · 1 min · Sheng, D.

在SBM模型中引入上边界和指标权重

在实际应用SBM模型分析绿色发展效率的时候,发现面临着以下两个困难: 指标实际可取值具有上边界; 不同指标之间存在重要性差异。 于是对经典的非期望产出SBM模型进行了修改,以解决上述问题。📐 ...

September 7, 2022 · 3 min · Sheng, D.

自回归滑动平均模型预测全球CO2浓度变化

自回归滑动平均模型(Autoregressive moving average model,ARMA)是研究时间序列的重要方法,以由自回归模型(简称AR模型)与移动平均模型(简称MA模型)为基础“混合”构成。用AMRA模型预测了在当前趋势下,未来二十年内全球二氧化碳浓度的变化趋势。 分析过程 数据集:NOAA Earth System Research Laboratories下属的Global Monitoring Laboratory提供的1969年-2022年逐月的二氧化碳浓度变化数据 数据来源网址 ...

April 27, 2022 · 1 min · Sheng, D.