Big (Green) Data

We are experiencing the Fourth Industrial Revolution, where the boundary between the digital and biological worlds is blurred by a fusion of technology and innovation. Building on the Third Industrial Revolution, which automated production through electronics and information technology, the Fourth is disrupting every industry in the world – and the environmental protection industry is no exception. Big data has been one of the buzz terms in the current Revolution, and organizations around the world have been leveraging its versatility to pursue green initiatives to protect our planet.

Big data has limitless potential. When it comes to environmental protection, big data plays an important role in saving labor and time. Compared to data collected manually by scientists, big data can be collected more efficiently and provides richer insights. Here are a few interesting examples of big data being used in the green technology industry.

Vestas – Improving Performance through Data Analysis

One of the world's largest turbine companies, Vestas, possesses vast amounts of data collected over the last two decades. Given that big data is not valuable until it is utilized, Vestas became an early adopter of big data analysis in the field of renewable energy.

Vestas installed sensors in turbines which monitored rotational speed, vibrations, temperatures, oil pressure filters, etc. For its latest model of turbines, up to 1,000 sensors have been installed, transmitting real-time data that is analyzed to help optimize product development and turbine performance, as well as service and maintenance.

By taking advantage of big data and analytics, Vestas has been able to increase the effectiveness of wind power to provide clean and sustainable energy. For example, big data and analytics helped Vestas’ lost production factor1 to reach 4.4 percent in 2016, which is almost four times greater than the figure in 2015, while the industry average is 3.6 percent. According to Vestas, this translates into savings of €150 million for its customers.

Siemens – Remotely Controlling over 7,500 Wind Turbines All in One

Two years ago, industrial giant Siemens established a remote diagnostics center located at its global wind service headquarters in Denmark, aiming to monitor big data collected from more than 7,500 Siemens wind turbines set up worldwide.

The remote diagnostics center increases energy output by reducing the time of trouble-shooting onsite and the number of visits by experts and service teams. Siemens uses vibration diagnostics and data analysis to find signs of potential malfunctions which need to be fixed.

In fact, according to Siemens, 97% of common failures can be identified and dealt with before severe damages happen. 85% of unexpected deviations can be analyzed and evaluated so that turbines can be safely restarted remotely without sending the problems to the service team2 .


1 Lost production factor is a variable defined as the electricity production generated if the turbine is operating when the wind is blowing

2http://www.energy.siemens.com/us/en/services/renewable-energy/wind-power/remote-diagnostics.htm" style="color:blue;text-decoration:underline">http://www.energy.siemens.com/us/en/services/renewable-energy/wind-power/remote-diagnostics.htm

Conservation International – Protecting Endangered Species with Big Data

In 2013, Conservation International (CI) launched Earth Insights with HP to protect the biodiversity of threatened species in tropical forests using big data. Big data represents an advance over traditional ways of collecting data from tropical forests, which involved scientists travelling to remote regions to study species in person, a time consuming and inefficient process.

CI uses HP’s Vertica Analytics Platform to monitor and analyze the data collected by camera traps installed in the tropical forests at 16 sites across 15 countries. The system delivers massive volumes of data on trends, tropical forest health and early warnings of endangered species for conservation efforts.

According to CI, more than three terabytes of data have been collected from two million camera traps equipped with four million climate sensors. The analytic platform has analyzed data nine times faster than previous methods. With big data and its efficiency, scientists have been able to detect ecological changes in practically real time and respond proactively to environmental threats as they emerge.

Big Data Driving a Sustainable World

Not only does big data help make businesses more profitable, but it also helps to make our world a better place. Big data can improve profitability by providing insights to make production processes more efficient, and at the same time this improved efficiency contributes to less waste or pollution thereby leading to a more environmentally friendly outcome. As technology continues to play an indispensable role in our lives, there’s no reason not to use technology in conjunction with big data to make a positive difference to our planet.

时间: 2024-08-31 10:12:25

Big (Green) Data的相关文章

javascript实现图片相似度算法

 这篇文章主要介绍了javascript实现图片相似度算法,大家参考使用吧 代码如下: function getHistogram(imageData) {     var arr = [];     for (var i = 0; i < 64; i++) {         arr[i] = 0;     }     var data = imageData.data;     var pow4 = Math.pow(4, 2);     for (var i = 0, len = data

iOS小技巧总结,有你不知道的么

在这里总结一些iOS开发中的小技巧,能大大方便我们的开发,持续更新. UITableView的Group样式下顶部空白处理 //分组列表头部空白处理 UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0.1)]; self.tableView.tableHeaderView = view; UITableView的plain样式下,取消区头停滞效果 - (void)scrollViewDidScroll:(UIScr

Node.js数据流Stream之Duplex流和Transform流

Duplex流一个很好的例子是TCP套接字连接.需要实现_read(size)和_Write(data,encoding,callback)方法. var stream = require('stream'); var util = require('util'); util.inherits(Duplexer, stream.Duplex); function Duplexer(opt) { stream.Duplex.call(this, opt); this.data = []; } Du

Webkit 远程调试协议初探

Webkit 远程调试协议初探 任何做过 Web 开发的同学,都避免不了在浏览器内进行调试.而大部分同学的首选工具,就是 Chrome DevTools.DevTools 本身我们无需多说,是一个大家不能再熟悉的工具了.但是埋藏在 DevTools 下面的开放协议以及它赋予的众多可能性,至今仍未见到充分的剖析和应用. Webkit 的远程调试协议是 Webkit 在 2012 年引入的.目前所有 Webkit 内核的浏览器都支持这一特性.但是我们还是以 DevTools 和 Chrome 为出发

JSP里连接数据库实现数据插入出错 求帮助。

问题描述 首先有两个页面insert.jsp和insert-success.jsp, 在insert.jsp里面连接数据库dbs,把表stu中的数据输出,然后添加一条记录,添加之后,跳转到insert_success.jsp 输出添加之后的stu里的所有记录.表结构如下:insert.jsp源码<%@ page language="java" import="java.util.*" pageEncoding="GBK"%><%

值得收藏的iOS开发常用代码块_IOS

遍历可变数组的同时删除数组元素 NSMutableArray *copyArray = [NSMutableArray arrayWithArray:array]; NSString *str1 = @"zhangsan"; for (AddressPerson *perName in copyArray) { if ([[perName name] isEqualToString:str1]) { [array removeObject:perName]; } } 获取系统当前语言

javascript图片相似度算法实现 js实现直方图和向量算法_javascript技巧

复制代码 代码如下: function getHistogram(imageData) {    var arr = [];    for (var i = 0; i < 64; i++) {        arr[i] = 0;    }    var data = imageData.data;    var pow4 = Math.pow(4, 2);    for (var i = 0, len = data.length; i < len; i += 4) {        var

绿色数据中心将为教育业带来成熟的方案

笔者按: 本文讲的是绿色数据中心将为教育业带来成熟的方案,根据IDC的估算,从运行成本控制的角度看,在IT行业中,能源消耗成本已经达到其硬件采购成本的25%.而数据却正以52%的复合年均增长率不断攀升.当企业及大中型机构面对不断变化的业务压力,以及呈指数级快速增长的数据时,需要对数据中心环保.节能方面的特性予以足够的考虑和重视. 与此同时,企业数据中心领域各类产品也纷纷贴上了"绿色节能"的标签,各种以"绿色节能"为主打卖点的新技术也层出不穷,那么这些新技术和新产品是

开启绿色未来之旅—2013惠普创新科技研讨会在京举行

今天,能源消耗在企业的生产运营中无处不在,它是制约企业发展的瓶颈,更是推动企业发展的源动力."开启绿色未来之旅"- 2013惠普创新科技研讨会将于2013年9月27日在北京盛大举行.届时,来自WWF(世界自然基金会).IDC(国际数据公司)及惠普公司的资深业界代表将与您共同探讨全球环境与气候危机下,中国企业如何通过创新理念与领先科技在低碳经济中寻求可持续性发展,共同开启中国企业的绿色未来之旅! 会议日程 会议安排 08:30-09:30 入场 Walk-in 09:30-09:35 开