ArticlePDF Available

Earthquake Detection at the Edge: IoT Crowdsensing Network

Authors:

Abstract and Figures

State-of-the-art Earthquake Early Warning systems rely on a network of sensors connected to a fusion center in a client–server paradigm. The fusion center runs different algorithms on the whole data set to detect earthquakes. Instead, we propose moving computation to the edge, with detector nodes that probe the environment and process information from nearby probes to detect earthquakes locally. Our approach tolerates multiple node faults and partial network disruption and keeps all data locally, enhancing privacy. This paper describes our proposal’s rationale and explains its architecture. We then present an implementation that uses Raspberry, NodeMCU, and the Crowdquake machine learning model.
Content may be subject to copyright.


Citation: Bassetti, E.; Panizzi, E.
Earthquake Detection at the Edge:
IoT Crowdsensing Network.
Information 2022,13, 195. https://
doi.org/10.3390/info13040195
Academic Editors: Lorenzo
Carnevale and Massimo Villari
Received: 28 February 2022
Accepted: 11 April 2022
Published: 13 April 2022
Publisher’s Note: MDPI stays neutral
with regard to jurisdictional claims in
published maps and institutional affil-
iations.
Copyright: © 2022 by the authors.
Licensee MDPI, Basel, Switzerland.
This article is an open access article
distributed under the terms and
conditions of the Creative Commons
Attribution (CC BY) license (https://
creativecommons.org/licenses/by/
4.0/).
information
Article
Earthquake Detection at the Edge: IoT Crowdsensing Network
Enrico Bassetti * and Emanuele Panizzi
Department of Computer Science, Sapienza University of Rome, 00161 Rome, Italy; panizzi@di.uniroma1.it
*Correspondence: bassetti@di.uniroma1.it
Abstract:
State-of-the-art Earthquake Early Warning systems rely on a network of sensors connected
to a fusion center in a client–server paradigm. The fusion center runs different algorithms on the
whole data set to detect earthquakes. Instead, we propose moving computation to the edge, with
detector nodes that probe the environment and process information from nearby probes to detect
earthquakes locally. Our approach tolerates multiple node faults and partial network disruption
and keeps all data locally, enhancing privacy. This paper describes our proposal’s rationale and
explains its architecture. We then present an implementation that uses Raspberry, NodeMCU, and
the Crowdquake machine learning model.
Keywords: earthquake early warnings; crowdsensing; edge computing; Internet of Things
1. Introduction
Many countries perform earthquake detection through a national network composed
of hundreds of high-precision seismic stations. Each seismometer in a station has high
sensitivity and can perceive low magnitude or very distant earthquakes (sometimes from
other countries). By interpolating signals from three or more seismic stations, it is possible
to localize the epicenter and compute the magnitude. These seismic networks are costly,
and building them might be a decades-long process. Some countries use such networks
to provide an Earthquake Early Warning (EEW) system, such as the Japanese one by the
Japan Meteorological Agency JMA [1].
An alternative that has been gaining traction in the last decade is the crowdsensing
EEW network, based on the availability of low-cost Micro Electro-Mechanical Systems
(MEMS) sensors together with the widespread Internet connection. Volunteers can partic-
ipate in crowdsensing using their smartphone or an Internet of Things (IoT) sensor as a
seismometer. Crowdsensing EEW tackles the problem of MEMS’s low precision by trading
quality with quantity. By leveraging the lower cost of intelligent devices and distributing
such costs among participants, these systems have a large user base and thus many seis-
mometers, i.e., thousands or more. This approach has proven to be successful, for example,
in [2], at least to estimate the epicentral area and an approximated intensity.
Existing crowdsensing EEW networks adopt a centralized processing approach: seis-
mometers send the collected data to a fusion center that processes it to understand whether
the report is a quake signal or not. In some cases, the sensors send the MEMS raw signal to
the fusion center (dumb approach). Other times, the edge sensors perform partial calcula-
tions (limited due to resource constraints) and send preprocessed data. The fusion center
performs the detection work, adopting a post-processing filtering that involves signals from
many local seismometers to exclude false positive or false negative earthquake detections.
As explained in the next section, this architecture has some drawbacks that motivate
our work.
This work proposes a peer-to-peer distributed EEW architecture that is radically
different from existing architectures. It is based on edge computing, where each node
in a mesh network can sense the environment and detect a local earthquake without
relying on a fusion center or a leader node. It can share this information with its neighbors,
Information 2022,13, 195. https://doi.org/10.3390/info13040195 https://www.mdpi.com/journal/information
Information 2022,13, 195 2 of 15
propagating the detection. This system keeps all data locally and can tolerate multiple
node faults and partial network disruption.
Motivation
Ideally, an EEW system should be fault-tolerant, which means that if one or a few of
its components fail, the overall system can continue to work seamlessly. In the absence of
fault tolerance, the High Availability property (HA) might be helpful: HA systems tolerate
a stop or downtimes between the fault and its recovery. However, if a fault occurs during
an earthquake, the EEW system might be unavailable at a critical moment.
EEW systems currently built or proposed in the literature do not have a fault-tolerant
architecture, as the fusion center constitutes a Single-Point-of-Failure (SPoF) that, if unavail-
able, prevents the entire system from working. We should also consider the connections to
the fusion center, such as international internet links with sensors, as a system component
that can fail, causing the isolation of the fusion center and thus the unavailability of the
EEW system.
The first motivation behind our proposal is to solve the availability problem. As
we describe in Section 4.6, our system can tolerate multiple node faults and some partial
network disruption.
The mainstream EEW architecture also has a privacy-related issue. It is possible
to process raw accelerometric data to extract information other than seismic data. For
example, it is possible to detect some spoken words using the accelerometer in place of the
microphone [
3
]. As another example, we experienced in our work that we could correlate
the noise level of seismometers in our homes with the presence of people at home. So,
sending raw seismic signals to a fusion center might expose them to unwanted processing
that can violate the users’ privacy: An attacker could discover information about a family’s
life habits or even extract words of private conversations.
Our proposed architecture enhances the privacy of the detection, keeping the sensitive
data locally collected in private places by a crowdsensing EEW system.
2. Related Work
Decentralized approaches to earthquake detection were studied for years. Tsitsiklis [
4
]
proposed a decentralized detection architecture where a central system (named “fusion
center”) collects “messages” from sensors. In EEW, a “message” can be a signal sample
that the sensor claims to be a quake signal. Faulkner et al. [
5
] proposed a new version
of this architecture for massive noisy sensors networks, and Cochran et al. [
6
] presented
an implementation using accelerometers connected to laptops and workstations, named
QCN (Quake-catcher network). Similarly, MyShake, proposed by Kong et al. [
7
], is a
machine-learning-based EEW system that uses smartphones. The Earthquake Network
(Finazzi et al. [
8
]) is a different research project that uses smartphones and spatial correlation
to detect quakes. SeismoCloud ([
9
]) is another earthquake early warning system built using
smartphones and Internet-of-Things devices. All these systems differ from our proposal as
they rely on a central system to collect all reports and make the final decision.
Another approach is the one described by CrowdQuake, from Huang et al. [
10
].
CrowdQuake runs a Convolutional-Recurrent Neural Network on the fusion center, while
smartphones at the edge collect different-length samples and stream them to the fusion
center. While relying on the fusion center, this system differs from the previous ones
because it can perform both the decision and the detection in one step since the accuracy of
the Convolutional Recursive Neural Network (CRNN) is very high. It also shows some
architectural limits that we will describe in Section 3.
CrowdQuake+ [
11
] is an extension of the CrowdQuake network: While the original
network leverages only on smartphones, CrowdQuake+ is able to process data from
Internet-of-Things sensors. However, the overall architecture is the same, as well as the
limitations discussed in Section 3.
Information 2022,13, 195 3 of 15
Fischer et al., in [
12
], described SOSEWIN, a self-organizing Earthquake Early Warning
system using a wireless mesh network. They use a hybrid approach, where nodes act as
local fusion centers. Instead, in our proposal, each node is independent of others.
Lee et al. [13] presented a custom-made board for EEW. The board contains common
chipsets (like ESP8266) and custom software with an Artificial Neural Network for detection.
They propose to send the alert to nearby smart devices (TV, smartphones) via low range
transmissions (Bluetooth Low Energy) or Home Automation solutions for early warning
alerts. Unlike other solutions, including ours, they do not use a network to send the alert to
nearby houses; their alert is “personal”.
QuakeSense, presented by Boccadoro et al. in [
14
], is an EEW system based on LoRa,
a Low-Power wide area network (LPWAN) technology. In their proposal, sensors send
information (like vibrations) using LoRa to local base stations “LoRa gateways”, which
relays these data to the fusion center of QuakeSense. LoRa, unlike Wi-Fi, allows QuakeSense
to be deployed in remote locations with no access to the power grid: LPWAN transceiver’s
power consumption is low, allowing deployment with batteries and solar power. However,
it leverages the same centralized architecture as others do.
3. State-of-the-Art
We present five different systems of crowdsensing EEW, which cover all the scenarios
we can find in the literature. Other networks are similar to those presented here, so we do
not cover them.
3.1. Quake-Catcher Network
The QCN, Quake-Catcher Network, is an earthquake early warning system built by
volunteers to “fill the gap between the earthquake and traditional networks” [
6
]. It has been
built over BOINC [
15
]. QCN uses MEMS sensors found in some laptop brands (usually
in the anti-shock subsystem) and some USB accelerometer brands. According to [
6
], the
sensitivity of these accelerometers is low, and the network is well suited for an earthquake
of magnitude greater than 5.0.
QCN uses a Z-Score to detect potential quakes: when
z
is above 3, the sensor sends
all relevant data to the fusion center, such as the max amplitude or timestamp. Then, the
center will again use a Z-Score against the number of reports in a given area and time slice;
a value of z>6 will trigger an EEW.
3.2. MyShake
MyShake [
7
] is an earthquake early warning system developed by UC Berkeley Seis-
mology Lab, designed to collect and process data on a smartphone and send possible
quakes to a fusion center for confirmation. Volunteers can download a mobile application
on their smartphone to join the network.
The MyShake mobile app reads the signal from the smartphone’s internal MEMS
accelerometer. Then, it uses an artificial neural network to detect potential quakes and sends
quake candidates to the fusion center, where a clustering algorithm reduces false positives.
3.3. CrowdQuake
CrowdQuake, by Huang et al. [
10
], has a layered approach for earthquake detection.
The lower layer, composed of dedicated smartphones or custom Internet-of-Things devices,
senses the seismic data and streams it to an intermediate layer of “gateways”. Each gateway
is a GPU-equipped server that processes seismic samples from each sensor in a CRNN.
Then, it sends data to a third and fourth layer for notification, monitoring, and visualization.
Differently from others, Crowdquake requires a stable and low-latency network con-
nection between sensors and gateways because samples are sent for detection from the
accelerometers to the gateways, which act as fusion centers. This requirement is a substan-
tial limitation for the deployment, especially in remote sites.
Information 2022,13, 195 4 of 15
3.4. SOSEWIN
SOSEWIN [
12
] is a decentralized wireless mesh network of sensors built using stan-
dard PC boards and external sensors. There is a hierarchy in the network between nodes,
built using a leader election algorithm; the two most important kinds of nodes are the
sensing node and the leading node. A leading node receives information from five sensing
nodes and manages alerts from them and neighbors leading nodes. A sensing node filters
the accelerometer sensor information with an Infinite impulse response passband filter and
some thresholds, using an internal state machine to refine the detection.
The leading node acts as a fusion center of a cluster of sensing nodes. Using leader
election for leading nodes, SOSEWIN obtains High Availability.
3.5. SeismoCloud
In SeismoCloud [
9
], smartphone apps and Internet-of-Things devices make the sensor
network and connect to a fusion center. Both types of sensor nodes run an algorithm based
on dynamic Z-Score for candidate quakes detection and send candidate quakes to the
central server, where a clustering algorithm filters out false positives.
4. Proposed Architecture
We propose a new architecture for EEW systems based on crowdsensing and the
complete detection of earthquakes at the edge. This architecture, called SeismoCloud 2.0,
is an evolution of the SeismoCloud architecture [
9
]. The goal is to achieve fault tolerance
using low-cost commodity hardware while enhancing the privacy and scalability of the
system. The idea is to use a fully decentralized approach to detect earthquakes, creating a
partial-mesh network (with no single point of failure) that can survive multiple network
and hardware faults.
We will start describing each component of the system. Then, we will draw a compre-
hensive picture of the architecture.
4.1. Probes, Detectors, and Local Authorities
There are two roles for edge devices in our network: the probe and the detector. A
probe is a sensor capable of picking up the acceleration signal and streaming it to the
detector. The main role of the detector, on the other hand, is to run the detection algorithm
over the data stream from probes and match if there are any signs of an earthquake wave.
One detector can receive data from multiple probes. As the hardware for a probe is
very cheap, we expect that some detectors will have multiple probes attached. Having
multiple probes can maximize the chance of detection because probes may fail or miss
some vibrations (if they are improperly installed).
In addition, the two roles can be assigned to the same detector device if it includes an
accelerometer and can both read the accelerometer signal and run the detection algorithm
simultaneously. For example, smartphones and some System-on-Chip boards have enough
computing power to support such operations.
The detector is also equipped with a local alert device (speakers, blinking lights)
to alert its owner locally. Alerts are triggered both by local earthquakes and relevant
remote ones.
The Local Authority is a central system that supports the network with non-critical
services: It helps nodes discover other nodes and receives EEWs from the network to help
local safety authorities prepare rescue operations. The Local Authority is stateless due to
the nature of its services. It is possible to have more than one Local Authority instance
to obtain high availability or load balancing. They should share available information,
although they do not require synchronization but can implement eventual consistency.
Such a connection can be implemented, for example, using a gossiping protocol between
Local Authorities.
Information 2022,13, 195 5 of 15
4.2. Network Architecture
The network architecture that we propose is a partial mesh (Figure 1). While a
full mesh would be desirable for information exchange between detectors, it is entirely
unfeasible due to the resource constraints of Internet-of-Things devices and commodity
network connections.
Figure 1.
Network architecture example: six detectors (three of which have an embedded probe) and
three probes. Detectors are linked to neighbors based on their location.
Each node of the partial mesh is a detector. It is connected to neighbor detectors using
direct peer-to-peer links. Detectors exchange EEW messages using a gossiping protocol:
Each message is forwarded to neighbor detectors until it reaches a certain distance from the
reported quake location. Moreover, detectors report all quakes to the cloud service of the
local authority to relay this information to other services (e.g., rescue teams, TV broadcasts).
Probes connect to their nearest detector directly. They are not connected among them
and do not participate in any message exchange between detectors.
4.3. Bootstrap Sequence
When a detector powers up for the first time (Figure 2), it starts a discovery phase of
its neighbors using a registration and discovery service of the local authority. The detector
advertises its presence by using that service, providing its location, and in turn, it receives
the list of neighbors and details on how to connect to them.
After completing this exchange, the detector will connect to the indicated neigh-
bors and keep those connections alive, ready to relay information about early warnings.
Periodically, the detector repeats the registration and receives a new list of neighbors.
Differently, probes query the local authority for the detector they should connect to.
They do not advertise any information to the local authority (see Figure 3).
Information 2022,13, 195 6 of 15
Figure 2. Detector bootstrap sequence diagram.
Figure 3. Probe bootstrap sequence diagram.
4.4. Detection Pipeline
Figure 4shows the detection pipeline. Probes stream the signal using their network
connection to the detector. The detector has one buffer per probe, where it collects and
stores the accelerometer signal for some time. A sliding signal window is extracted and
sent to the detection algorithm at given intervals.
Figure 4.
Pipeline diagram. Each probe is attached to a buffer that feeds the detection algorithm’s
dedicated instance. Probe #3 is internal, as this detector also has the probe role.
Information 2022,13, 195 7 of 15
Suppose the detection algorithm detects a quake from any of its probes. In that case,
the detector relays the earthquake alert, together with its location and the signal data
(Table 1) to the local authority and neighbors.
Table 1. Earthquake Early Warning message content. This message is relayed between detectors.
EEW Message Content Description
Timestamp Timestamp of the detection
Origin Location
Location coordinates of the detector which originated the message
Signal Data Accelerometric samples
4.5. Scalability
The detectors mesh network can scale to an infinite number of nodes. Each detector of
the partial mesh is connected only to a few nearest neighbors. In addition, each message
will reach a subset of the whole network as it is geographically limited as described in
Section 4.2
. There is no need to scale up a central server to handle sensors traffic for
detection purposes.
The Local Authority system should be scaled according to the number of sensors.
Unlike the fusion center of the server–client model, a local authority instance is stateless
and not involved in the detection pipeline or EEW message dissemination. Scaling it is
more straightforward than scaling a fusion center.
4.6. Fault Tolerance
The network is fully fault-tolerant. A fault of one or few sensors will not stop the
gossiping. An EEW message can be prevented from reaching the entire network only if
multiple faults occur so that the network temporarily splits into two or more partitions.
However, the more sensors in the network, the less the chance of having such a split. Even if
this split occurs, it will not affect messages from other sensors living inside other partitions.
If sensors in the different partitions detect the quake, the EEW can still be sent to the whole
network (albeit with different origins).
A fault on a specific sensor itself will not stop the detection: neighbors can still detect
the earthquake, and they will still be able to pass information to others.
In case of faults in the Local Authority, which causes the unreachability of its service,
new nodes will not be able to connect to the network. However, already connected nodes
will keep their current connections. The local authority will not receive an EEW during the
downtime, but the EEW message gossiping will not stop, and earthquake detection will
remain active.
4.7. Privacy
The accelerometer signal is fully processed locally on each detector. The local authority
only receives signals classified as earthquakes by the detection algorithm. An attacker who
wants to monitor sensors (for example, to recognize spoken words or detect the presence of
people in a building) will need to attack specific sensors actively.
4.8. Practical Implementation Aspects
An essential aspect of crowdsensing EEW is an excellent practical implementation.
Complex user interfaces and systems that are difficult to understand can create obstacles to
widespread adoption, which is fundamental for these systems. Users of the proposed EEW
system should be able to use it even without computer science or domain skills. We suggest
distributing our system by leveraging mobile apps (for smartphones) and IoT devices to
overcome these difficulties.
Mobile apps can introduce users to the system (and, under the hood, they act as a
sensor themselves, when and where possible). The app’s User Interface will guide users to
Information 2022,13, 195 8 of 15
configure a new sensor and easily access the sensor’s data. The app’s design must exploit a
User-Centered Design (UCD) approach to avoid mistakes that jeopardize the entire project.
Another vital aspect is the simplicity of installing and managing IoT devices. Users
with no background in electronics or computer science should be able to install and run one
or more detectors or probes. We suggest addressing this problem by leveraging companies
that build custom boards on-demand: Users will receive a device that is no different from
other smart boxes at home (such as smart TVs, etc.). Once this “box” is connected to the
power supply, the sensor will receive its location from the companion app on the user’s
smartphone, requiring no further configuration on the user’s part.
We are in the process of designing and testing these implementation aspects: Results
will be presented in a forthcoming paper.
5. Prototype Implementation
We present the following implementation as an example of the architecture described
above. This implementation is currently running in our test environment.
5.1. Sensors Hardware
The detector device is a Raspberry Pi, made by the Raspberry Pi Foundation. It is
a System-on-Chip board with various ports (Ethernet, USB, HDMI, I
2
C, GPIO), Wi-Fi,
and Bluetooth wireless chipsets. For the current prototype, we use the Ethernet port to
provide an Internet connection to the detector, the I
2
C bus to connect the accelerometer (to
implement a Detector/Probe device), and a Wi-Fi card to create a dedicated Wi-Fi network
for external probes.
We tested different device versions: 2B, 3B, 3B+, and 4 (Table 2).
Table 2. Hardware specifications for prototype detectors.
Raspberry Pi
2B 3B 3B+ 4
CPU
BCM2836 BCM2837 BCM2837 BCM2711
4×Cortex-A7 4 ×Cortex-A53 4 ×Cortex-A53 4 ×Cortex-A72
900 MHz 1.2 GHz 1.4 GHz 1.5 GHz
RAM 1 GB 1 GB 1 GB 4 GB
Disk 64 GB SD 64 GB SD 64 GB SD 64 GB SD
Wi-Fi - 2.4 GHz 2.4/5 GHz 2.4/5 GHz
Ethernet Fast Ethernet Fast Ethernet Gigabit Gigabit
GPIO 40 pin 40 pin 40 pin 40 pin
The accelerometer is the MPU6050, widely used in low-cost IoT applications involv-
ing acceleration measurements. It has been demonstrated by Crisnapati et al. [
16
] and
Lee et al. [
13
] that this accelerometer can be used in EEW applications. The sensitivity of
such accelerometer allows detecting only major earthquakes, and we are experimenting
with higher-precision sensors, such as PhidgetSpatial Precision 0/0/3 High Resolution. The
experiment’s results, however, are out of scope for the current paper. The MPU6050 pro-
vides a 100Hz feed via I
2
C to the NodeMCU board (Table 3) or the Raspberry Pi board. By
connecting the MPU6050 directly to the Raspberry Pi, the probe and detector roles merge.
Probe sensors use an MCU board and an accelerometer, packed to run on 5v from a
power supply or battery. They transmit values using the Wi-Fi connection to the detector.
The MCU board is the “NodeMCU DEVKIT” that contains a ESP8266 SoC [
17
], based on
ESP-12 hardware. It has multiple GPIO ports and an integrated Wi-Fi network connection.
Information 2022,13, 195 9 of 15
Table 3. Hardware specifications for prototype probes.
NodeMCU
CPU
106Micro
L106
160 MHz
RAM 128 kBytes
Disk 4 MBytes
Wi-Fi 2.4 GHz
Ethernet -
GPIO 13 pin
5.2. Software
The Detector runs Raspberry PI OS (previously known as Raspbian), a Debian-based
GNU/Linux distribution. We use “Podman” to manage the lifecycle of our software, an
Open Container Initiative (OCI) image runner alternative to “Docker” that we chose as it is
daemon-less. The absence of a central process makes Podman more robust and less resource-
hungry than Docker. Podman runs a container with the code we are presenting and the
Crowdquake CRNN [
10
] detection algorithm. We built the main container executable using
Go (and TensorFlow C bindings). The use of containers simplifies the deployment of new
algorithms for testing.
The Probe runs a customized firmware that we built using the Expressif SDK for
Arduino. The firmware reads data from the accelerometer sensor and sends the stream via
WebSocket to the detector. The connection uses WebSocket to be compatible with HTTP
middlewares, such as network proxies and firewalls. The firmware checks for updates
and configuration at probe boot, querying the local authority. If it fails, it still connects to
the detector. We chose this Probe software architecture after comparison with an Message
Queue Telemetry Transport (MQTT) implementation. In our tests, we found MQTT too
complex for this scenario: while MQTT requires a broker, different publisher and subscriber
roles, and topics, in our case, we only had a publisher (the Probe) and a subscriber (the
Detector) with no need for topics. Thus, the MQTT implementation was overly complex
for our purpose, with no advantages.
We developed the Local Authority software using the Go language. It exposes Appli-
cation Program Interfaces for sensor discovery and debugging web pages. This implemen-
tation is not fully scalable yet, but we successfully tested it with more than 1000 detectors.
5.3. Detection Pipeline
The main container exposes a WebSocket endpoint for probes, and it reads the ac-
celerometer connected to the GPIO of the Raspberry Pi. The code spawns multiple processes
(based on the number of cores/CPUs of the Raspberry Pi) so that reading a local sensor
while receiving a network stream does not interfere with each other.
The probe data stream is buffered in memory by the main container to have a 2-second
signal window (200 values), with a 1-second sliding window, as shown in Figure 5. The
signal window is then sent to the detection algorithm, the Crowdquake CRNN (running
on the CPU). The structure of the Crowdquake CRNN is briefly reported in Figure 6and
presented by Huang et al. in [10].
The detection CRNN is run every second (as it receives a new set of samples each
second), and it looks for quakes in the last 2 s in the probe signal buffer. Each probe has its
independent buffer, and CRNN is run in parallel on each buffer.
Information 2022,13, 195 10 of 15
Figure 5.
Prototype pipeline. The detection algorithm is the Crowdquake CRRN, and the time
window is set to 2 s.
Figure 6. Crowdquake’s Convolutional Recurrent neural network.
6. Results
We ran our prototype in three different scenarios: First, we tested the pipeline using a
single software-only detector, feeding it with dummy accelerations to verify the system’s
soundness. Then, we built an actual probe to test the detection speed in real hardware.
Finally, we tested a network of sensors to measure the elapsed time between the first
detection and the EEWs.
The system’s soundness was tested using the Crowdquake dataset [
10
]. The dataset
comprises 174 tracks from natural earthquakes and 79 tracks from “noise”. Each earthquake
track is made of 30,000 accelerations triples (
X
,
Y
, and
Z
), sampled at 10Hz. Noise tracks
are recorded using smartphones in day-to-day activities [10].
As expected, feeding the Crowdquake dataset into the pipeline triggers the Crowdquake-
based detector in the same way as using their neural network directly (e.g., for evaluation
purposes). This result was expected because Crowdquake CRNN runs unmodified in our
proposal (so there was no reason to expect different performances).
The detection pipeline is capable of analyzing and outputting the result in a few
milliseconds, as shown in Table 4. The detection latency for Raspberry Pi 4 is lower
Information 2022,13, 195 11 of 15
(
Figures 7and 8
) thanks to the faster processor and different onboard bus wiring. This
lower speed for detection opens up the possibility for incrementing the detection frequency,
which is currently 1 Hz, to higher values, depending on the platform and the number of
probes for each detector. Further analysis is needed to assess the benefits and limits of
having sub-second detections.
Table 4. CRNN response speed for 2-s signal (200 values), averages on 300 samples.
Raspberry Pi Average Time Standard Deviation 90-Percentile
2B 27.19 ms 1.61 ms 28.73 ms
3B 27.78 ms 5.36 ms 30.74 ms
3B+ 22.44 ms 4.29 ms 24.59 ms
4 7.84 ms 0.41 ms 8.37 ms
Figure 7.
Detection latency for the ML model when multiple probes are sending data to a single
detector.
Figure 8.
Detection latency changes in time. The model was tested over 300 samples. Each point
represents the latency for a single sample.
We also tested the impact of having multiple probes feeding data concurrently in a
detector. We loaded the detection algorithm in memory and streamed the same dataset
we used in previous tests. As shown in Figure 7, the impact of having multiple parallel
executions is minimal in the latest Raspberry Pi version, while it can be significant in
previous versions.
The Go garbage collector is causing a spike that nearly doubles the detection latency
when it executes concurrently to the detection algorithm (primarily visible in Raspberry Pi
Information 2022,13, 195 12 of 15
3B/3B+, Figure 8). It can be further optimized by running the garbage collector manually,
rewriting the buffer code (where most of the allocation takes place), or switching to a
language with no automatic memory management (e.g., Rust, C).
The detector code loads the network in memory, and it launches an “empty” run to
pre-fill the system cache so that the first latency test is not affected by the cache miss, and it
is comparable to all subsequent tests (Figure 8).
Finally, we tested a network of detectors to measure the time between the first detection
and the time when the message was received in the network. We built the test network
using 20 instances of the node code running in a single machine, each instance connected to
10 random neighbors (partial mesh). Figure 9represents the network. The test machine is a
Dell XPS 15, 6-Core i7 @ 2.20GHz. Delays of 5 to 205 milliseconds were randomly injected
into the packet transmissions to emulate the network latency. We performed six tests using
the same topology but different points of origin for EEWs.
Figure 9.
Detector network used in simulations. Lines between detectors represents connections.
Detectors are placed in a random pattern. Tile images by OpenStreetMap [18].
As shown in Figure 10, in all but two test, the EEW reached every node of the network
in less than 450 milliseconds (including simulated network delay).
Figure 10.
Number of detectors warned since the first detection on the source node. Note that the number
of detectors is sampled each 10 ms. The y axis represent the cumulative number of detectors alerted.
Information 2022,13, 195 13 of 15
Limits
In this work, we did not address the security of the network. This area has multiple
aspects, mainly related to the trust in early warnings from neighbors’ sensors. Today, any
byzantine probe in the network can cause a false alarm by sending an alert with a signal that
resembles an earthquake wave (downloadable from public datasets). A byzantine detector
can even send an earthquake early warning. We originally designed the protocol message
so that a signal could be sent together with the EEW as a primary security measure: We
planned to check that the signal attached to the EEW was triggering an EEW by replicating
the detection on each detector. However, we did not clearly define or implement this part
at this time, so we omitted this from the proposal, and it constitutes future work.
Another limit is that we did not address the problem of setting up a secure transmission
between peers. In the prototype, we implemented a plain-text protocol in which attackers
can eavesdrop on the message exchange (loss of confidentiality) and even inject or modify
messages. However, this problem can be solved trivially by using widely studied and
deployed protocols such as TLS [19].
It is worth underlining that the accuracy of the detection algorithm plays a central role
in the trust of this system. Users will trust an EEW system with this architecture only if
they receive very low false positives and false negatives EEWs. We are working on this by
allowing different detection algorithms to plug in to compare their accuracy.
We did not consider epicenter location estimation while designing this proposal.
In a dense network, the location of the sensor that detects the earthquake before other
sensors can be considered an approximation of the epicenter. However, the approximation
error depends on how close the sensor is to the real epicenter, the sensor sensitivity, its
physical installation, and several different geophysical characteristics, such as the terrain
composition (which influences quake waves). Further analysis should be conducted on
minimizing the estimation error.
7. Discussion
We described a crowdsensing EEW architecture that moves the computation to the
edge, with detector nodes that probe the environment and process information from nearby
probes to detect earthquakes locally. Our approach tolerates multiple node faults and
partial network disruption and keeps all data locally, enhancing privacy. We described our
proposal’s rationale, explained its architecture, and presented an implementation using
Raspberry, NodeMCU, and the Crowdquake machine learning model.
On-going research on this topic focuses on the security of this architecture and its
implementations. It is essential to find a viable and secure solution to the problem of trust
in peer-to-peer EEW message exchange to use this architecture in crowdsensing networks.
At least the system should resist some byzantine nodes.
We are developing an app that will be integrated into this architecture both as a sensor
and as a “companion app” for IoT sensors. The app is being built using a user-centered
design as we aim to produce an interface that is easy to use. The app will be able to provide
the user with all data from its sensors and monitor them. Thanks to the app, we will be able
to test the system from the point of view of a typical user, starting from initial configuration,
to maintenance, to data access and retrieval.
Another focus of our current research is the implementation of the architecture that
we presented over low-power, long-range radio protocols (LPWAN), such as LoRa. These
wireless protocols are very effective in long-range transmissions and power efficiency com-
pared to Wi-Fi networks. However, they usually lack coordination, so collision-avoidance
algorithms such as water-filling cannot be used (unlike in LoRaWAN, where water-filling
can be implemented in BTS [
20
] or in the control plane [
21
]), and we will need to overcome
this limitation. The detection network can be deployed seamlessly from big cities to remote
sites using LPWAN for IoT [
14
], LTE for smartphones, and FWA/FTTx for others. In
the big cities, the Internet is ubiquitous, while in remote sites, LPWAN can be a low-cost,
low-latency alternative to satellite links.
Information 2022,13, 195 14 of 15
Author Contributions:
Project administration, resources, supervision, writing—review and editing:
E.P.; conceptualization, data curation, formal analysis, investigation, methodology, resources, soft-
ware, validation, visualization, writing—original draft, writing—review and editing: E.B. All authors
have read and agreed to the published version of the manuscript.
Funding:
This research was funded by the Italian National Institute for Geophysics and Volcanology
(INGV).
Conflicts of Interest: The authors declare no conflict of interest.
Abbreviations
The following abbreviations are used in this manuscript:
BTS Base Transceiver Station
CRNN Convolutional-Recurrent Neural Network
EEW Earthquake Early Warning
FWA Fixed-Wireless Access
GPIO General Purposes Input/Output
GPU Graphics Processing Unit
HA High availability
IoT Internet-of-Things
JMA Japan Meteorological Agency
LPWAN Low Power Wide Area Network
MEMS Micro-Electro-Mechanical Systems
MQTT Message Queuing Telemetry Transport
SDK Software-Development Kit
SPoF Single point of failure
TLS Transport Layer Security
UCD User-Centered Design
References
1.
Hoshiba, M.; Kamigaichi, O.; Saito, M.; Tsukada, S.; Hamada, N. Earthquake early warning starts nationwide in Japan. EOS
Trans. Am. Geophys. Union 2008,89, 73–74. [CrossRef]
2.
Allen, R.M.; Kong, Q.; Martin-Short, R. The MyShake platform: A global vision for earthquake early warning. Pure Appl. Geophys.
2020,177, 1699–1712. [CrossRef]
3.
Zhang, L.; Pathak, P.H.; Wu, M.; Zhao, Y.; Mohapatra, P. Accelword: Energy efficient hotword detection through accelerometer.
In Proceedings of the 13th Annual International Conference on Mobile Systems, Applications, and Services, Florence, Italy,
18–22 May 2015; pp. 301–315.
4. Tsitsiklis, J. Decentralized Detection-Advances in Syatis—Tical Signal Processing; JAI: Greenwich, CT, USA, 1990.
5.
Faulkner, M.; Liu, A.H.; Krause, A. A fresh perspective: Learning to sparsify for detection in massive noisy sensor networks.
In Proceedings of the 12th International Conference on Information Processing in Sensor Networks, Philadelphia, PA, USA,
8–11 April 2013; pp. 7–18.
6.
Cochran, E.S.; Lawrence, J.F.; Christensen, C.; Jakka, R.S. The quake-catcher network: Citizen science expanding seismic horizons.
Seismol. Res. Lett. 2009,80, 26–30. [CrossRef]
7.
Kong, Q.; Allen, R.M.; Schreier, L.; Kwon, Y.W. MyShake: A smartphone seismic network for earthquake early warning and
beyond. Sci. Adv. 2016,2, e1501055. [CrossRef] [PubMed]
8.
Finazzi, F. The earthquake network project: Toward a crowdsourced smartphone-based earthquake early warning system. Bull.
Seismol. Soc. Am. 2016,106, 1088–1099. [CrossRef]
9.
Panizzi, E. The seismocloud app: Your smartphone as a seismometer. In Proceedings of the International Working Conference on
Advanced Visual Interfaces, Bari, Italy, 7–10 June 2016; pp. 336–337.
10.
Huang, X.; Lee, J.; Kwon, Y.W.; Lee, C.H. CrowdQuake: A networked system of low-cost sensors for earthquake detection via
deep learning. In Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining,
Virtual Event, 6–10 July 2020; pp. 3261–3271.
11.
Wu, A.; Lee, J.; Khan, I.; Kwon, Y.W. CrowdQuake+: Data-driven Earthquake Early Warning via IoT and Deep Learning.
In Proceedings of the 2021 IEEE International Conference on Big Data (Big Data), Orlando, FL, USA, 15–18 December 2021;
pp. 2068–2075.
12.
Fischer, J.; Kühnlenz, F.; Ahrens, K.; Eveslage, I. Model-based Development of Self-organizing Earthquake Early Warning Systems.
Simul. Notes Eur. 2009,19, 9–20. [CrossRef]
Information 2022,13, 195 15 of 15
13.
Lee, J.; Khan, I.; Choi, S.; Kwon, Y.W. A smart iot device for detecting and responding to earthquakes. Electronics
2019
,8, 1546.
[CrossRef]
14.
Boccadoro, P.; Montaruli, B.; Grieco, L.A. Quakesense, a LoRa-compliant earthquake monitoring open system. In Proceedings of
the 2019 IEEE/ACM 23rd International Symposium on Distributed Simulation and Real Time Applications (DS-RT), Cosenza,
Italy, 7–9 October 2019; pp. 1–8.
15.
Anderson, D.P. Boinc: A system for public-resource computing and storage. In Proceedings of the Fifth IEEE/ACM International
Workshop on Grid Computing, Pittsburgh, PA, USA, 8 November 2004; pp. 4–10.
16.
Crisnapati, P.N.; Wulaning, P.D.; Hendrawan, I.N.R.; Bandanagara, A.A.K.B. Earthquake Damage Intensity Scaling System based
on Raspberry Pi and Arduino Uno. In Proceedings of the 2018 6th International Conference on Cyber and IT Service Management
(CITSM), Parapat, Indonesia, 7–9 August 2018; pp. 1–4. [CrossRef]
17.
Kumar, A.; Sharma, A. Internet of Life (IOL). In Proceedings of the International Conference of Advance Research and Innovation
(ICARI-2015), Istanbul, Turkey, 27–31 July 2015.
18.
OpenStreetMap Contributors. Planet Dump. 2017. Available online: https://planet.osm.org and https://www.openstreetmap.
org (accessed on 2 February 2022).
19. Dierks, T.; Allen, C. The TLS Protocol Version 1.0; RFC 2246; IETF: Fremont, CA, USA, 1999.
20.
Cuomo, F.; Campo, M.; Caponi, A.; Bianchi, G.; Rossini, G.; Pisani, P. EXPLoRa: Extending the performance of LoRa by suitable
spreading factor allocations. In Proceedings of the 2017 IEEE 13th International Conference on Wireless and Mobile Computing,
Networking and Communications (WiMob), Rome, Italy, 9–11 October 2017; pp. 1–8.
21.
Cuomo, F.; Campo, M.; Bassetti, E.; Cartella, L.; Sole, F.; Bianchi, G. Adaptive mitigation of the Air-Time pressure in LoRa
multi-gateway architectures. In Proceedings of the European Wireless 2018; 24th European Wireless Conference, Catania, Italy,
2–4 May 2018; pp. 1–6.
... An example of this type of solution is an early warning system for railway bridges [105]. Edge computing also allows the real-time monitoring of natural disasters such as fires [106] or earthquakes [107]. These solutions tolerate multiple node faults and partial network disruptions and store all data locally, which also enhances privacy [107]. ...
... Edge computing also allows the real-time monitoring of natural disasters such as fires [106] or earthquakes [107]. These solutions tolerate multiple node faults and partial network disruptions and store all data locally, which also enhances privacy [107]. Table 8. ...
... Bassetti et. al. [107] Edge computing early warning system for earthquakes. Local probes detect quakes. ...
Article
Full-text available
Geothermal energy installations are becoming increasingly common in new city developments and renovations. With a broad range of technological applications and improvements in this field, the demand for suitable monitoring technologies and control processes for geothermal energy installations is also growing. This article identifies opportunities for the future development and deployment of IoT sensors applied to geothermal energy installations. The first part of the survey describes the technologies and applications of various sensor types. Sensors that monitor temperature, flow rate and other mechanical parameters are presented with a technological background and their potential applications. The second part of the article surveys Internet-of-Things (IoT), communication technology and cloud solutions applicable to geothermal energy monitoring, with a focus on IoT node designs, data transmission technologies and cloud services. Energy harvesting technologies and edge computing methods are also reviewed. The survey concludes with a discussion of research challenges and an outline of new areas of application for monitoring geothermal installations and innovating technologies to produce IoT sensor solutions.
... Extensive research in the field of Edge AI revealed that most of existing solutions keep the ML training phase in the cloud layer. To the best of our knowledge, only a few works focused on providing solutions to carry out both ML training and inferences in the edge layer [7,11,29,42]. ...
... Our work differs from the ones proposed by Priyabhashana et al. [29] and Brik et al. [11] since they restricted their experimental analyses to simulated scenarios. Our solution also differs from [7] since it does not require GPU-equipped hardware to process the ML models in the edge. The work from Natesha et al. [42] targeted the problem of anomaly detection in IIoT applications. ...
Article
Full-text available
Internet of Things (IoT) devices produce massive amounts of data in a very short time. Transferring these data to the cloud to be analyzed may be prohibitive for applications that require near real-time processing. One solution to meet such timing requirements is to bring most data processing closer to IoT devices (i.e., to the edge). In this context, the present work proposes a distributed architecture that meets the timing requirements imposed by Industrial IoT (IIoT) applications that need to apply Machine Learning (ML) models with high accuracy and low latency. This is done by dividing the tasks of storing and processing data into different layers—mist, fog, and cloud—using the cloud layer only for the tasks related to long-term storage of summarized data and hosting of necessary reports and dashboards. The proposed architecture employs ML inferences in the edge layer in a distributed fashion, where each edge node is either responsible for applying a different ML technique or the same technique but with a different training data set. Then, a consensus algorithm takes the ML inference results from the edge nodes to decide the result of the inference, thus improving the system’s overall accuracy. Results obtained with two different data sets show that the proposed approach can improve the accuracy of the ML models without significantly compromising the response time.
... Small, low-cost sensors are utilized to collect seismic data for IoT-enabled earthquake monitoring and prediction (Abbasi et al., 2021). For early detection, sensor data is evaluated in a time-sensitive manner (Bassetti and Panizzi, 2022;Tao et al., 2022). Nonetheless, processing the enormous data contents requires a vast amount of computer resources, which are usually destroyed, unavailable, or only temporarily available in the disaster-affected area . ...
... With the use of intelligent sensors and cloud services, advancements have been achieved in the infrastructure for sensing. Bassetti and Panizzi (2022) created distributed warning framework for the metropolitan city by combining mesh networks and seismometers. Utilizing a cooperative approach for signal processing, the presented system can distinguish between earthquakes and other forms of ground shaking in a metropolis. ...
... For example, the smart MEM accelerometers produced by QuakeSaver GmbH use a convolutional neural network to classify waveforms on the edge so that only higher-order data products are transmitted to end users 32 . A similar approach is described in the crowd-sensed earthquake detection study of Bassetti et al (2022). ...
Article
Full-text available
Earth observations (EO) have successfully been used to train artificial intelligence (AI)-based models in the field of disaster risk reduction (DRR) contributing to tools such as disaster early warning systems. Given the number of in situ and remote (e.g., radiosonde/satellite) monitoring devices, there is a common perception that there are no limits to the availability of EO for immediate use in such AI-based models. However, a mere fraction of EO is actually being used in this way. This topical review draws on use cases, workshop presentations, literature, and consultation with experts from key institutes to explore reasons for this discrepancy. Specifically, it evaluates the types of EO needed to train AI-based models for DRR applications and identifies the main characteristics, possible challenges, and innovative solutions for EO. Finally, it suggests ways to make EO more user ready and to facilitate its uptake in AI for DRR and beyond.
... The model can detect the probability of occurring preceding significant shocks and accurately predict P-waves between 1.5 and 2.5 s before their arrival. In [182], the authors used detector nodes to detect earthquakes locally by probing the environment and assessing data from probes in the surrounding area. The method stores all data locally, making it resistant to node failures and partial network outages, thus increasing privacy. ...
Article
Full-text available
Earthquake early warning systems (EEWS) are crucial for saving lives in earthquake-prone areas. In this study, we explore the potential of IoT and cloud infrastructure in realizing a sustainable EEWS that is capable of providing early warning to people and coordinating disaster response efforts. To achieve this goal, we provide an overview of the fundamental concepts of seismic waves and associated signal processing. We then present a detailed discussion of the IoT-enabled EEWS, including the use of IoT networks to track the actions taken by various EEWS organizations and the cloud infrastructure to gather data, analyze it, and send alarms when necessary. Furthermore, we present a taxonomy of emerging EEWS approaches using IoT and cloud facilities, which includes the integration of advanced technologies such as machine learning (ML) algorithms, distributed computing, and edge computing. We also elaborate on a generic EEWS architecture that is sustainable and efficient and highlight the importance of considering sustainability in the design of such systems. Additionally, we discuss the role of drones in disaster management and their potential to enhance the effectiveness of EEWS. Furthermore, we provide a summary of the primary verification and validation methods required for the systems under consideration. In addition to the contributions mentioned above, this study also highlights the implications of using IoT and cloud infrastructure in early earthquake detection and disaster management. Our research design involved a comprehensive survey of the existing literature on early earthquake warning systems and the use of IoT and cloud infrastructure. We also conducted a thorough analysis of the taxonomy of emerging EEWS approaches using IoT and cloud facilities and the verification and validation methods required for such systems. Our findings suggest that the use of IoT and cloud infrastructure in early earthquake detection can significantly improve the speed and effectiveness of disaster response efforts, thereby saving lives and reducing the economic impact of earthquakes. Finally, we identify research gaps in this domain and suggest future directions toward achieving a sustainable EEWS. Overall, this study provides valuable insights into the use of IoT and cloud infrastructure in earthquake disaster early detection and emphasizes the importance of sustainability in designing such systems.
... That model could achieve an accuracy of 98.8% of P-waves within 1.5-2.5 s from its arrival. To detect earthquakes locally, the authors in [90] suggested bringing computing to the edge and using detector nodes that probe the environment and to analyze data from neighboring probes. The method maintained all data locally while tolerating numerous node failures and partial network disruption, boosting privacy. ...
Article
Full-text available
An earthquake early warning system (EEWS) should be included in smart cities to preserve human lives by providing a reliable and efficient disaster management system. This system can alter how different entities communicate with one another using an Internet of Things (IoT) network where observed data are handled based on machine learning (ML) technology. On one hand, IoT is employed in observing the different measures of EEWS entities. On the other hand, ML can be exploited to analyze these measures to reach the best action to be taken for disaster management and risk mitigation in smart cities. This paper provides a survey on the different aspects required for that EEWS. First, the IoT system is generally discussed to provide the role it can play for EEWS. Second, ML models are classified into linear and non-linear ones. Third, the evaluation metrics of ML models are addressed by focusing on seismology. Fourth, this paper exhibits a taxonomy that includes the emerging ML and IoT efforts for EEWS. Fifth, it proposes a generic EEWS architecture based on IoT and ML. Finally, the paper addresses the application of ML for earthquake parameters’ observations leading to an efficient EEWS.
... Besides wildfire monitoring, participatory crowdsensing has been employed for near real-time detection of other disaster events such as earthquakes [255], landslides [256], and floods [257]. A common approach in these contributions is to consider only sensor readings with an associate position information (either from GPS or cellular networks). ...
Article
Full-text available
Fighting Earth’s degradation and safeguarding the environment are subjects of topical interest and sources of hot debate in today’s society. According to the United Nations, there is a compelling need to take immediate actions worldwide and to implement large-scale monitoring policies aimed at counteracting the unprecedented levels of air, land, and water pollution. This requires going beyond the legacy technologies currently employed by government authorities and adopting more advanced systems that guarantee a continuous and pervasive monitoring of the environment in all its different aspects. In this paper, we take the research on integrated and large-scale environmental monitoring a step further by providing a comprehensive review that covers transversally all the main applications of wireless sensor networks (WSNs), unmanned aerial vehicles (UAVs), and crowdsensing monitoring technologies. By outlining the available solutions and current limitations, we identify in the cooperation among terrestrial (WSN/crowdsensing) and aerial (UAVs) sensing, coupled with the adoption of advanced signal processing techniques, the major pillars at the basis of future integrated (air, land, and water) and large-scale environmental monitoring systems. This review not only consolidates the progresses achieved in the field of environmental monitoring, but also sheds new lights on potential future research directions and synergies among different research areas.
Article
In recent times, Mobile Crowdsensing (MCS) has garnered considerable attention and emerged as a promising sensing paradigm. The MCS approach leverages the capabilities of intelligent devices and human intelligence to collect and sense data. Moreover, the mobility of individuals and platform independence of MCS enables extensive coverage and contextual awareness, thereby providing valuable insights for various applications in the present era. However, these advancements also raise concerns about user privacy, network dynamics, data reliability, and data integrity. Over the years, researchers have proposed various solutions to address these issues while simultaneously enhancing MCS. In this paper, we extend the existing body of MCS research by providing a comprehensive survey on recent advancements. We present the MCS architecture from two perspectives and systematically categorize and classify MCS components. Additionally, we offer a taxonomy of incentive mechanisms, conduct a thorough analysis of privacy-preserving task allocation and truth discovery, and discuss potential research issues and existing solutions. Moreover, the paper presents the broader categorization of MCS applications. Furthermore, we examine existing platforms, simulators, and operating systems for MCS applications. The objective of this paper is not only to analyse and consolidate existing research but also to identify new opportunities for future research and establish connections with other research disciplines that can inspire further research endeavours in the MCS system and promote its advancement.
Conference Paper
When an earthquake occurs, it is crucial to quickly estimate its epicenter coordinates and the most affected areas to inform rescue decision-making. Current seismological services perform this estimation relying on centralized processing. On the other hand, we propose a fully decentralized architecture that uses edge computation on a network of sensing and communication low-cost IoT nodes. Nodes exploit M2M messages with neighbors to exchange early warning alerts and to grasp relevant information to estimate the epicenter in real time with a lightweight three-step algorithm. Following an iterative process, the pipeline produces a good estimation with an average error as low as 3km. We describe the system architecture and the proposed strategy and analyze the performances of each estimation step.
Article
Full-text available
The advancement of hardware and software technologies makes it possible to use smartphones or Internet of things for monitoring environments in realtime. In recent years, much effort has been made to develop a smartphone based earthquake early warning system, where low-cost acceleration sensors inside a smartphones are used for capturing earthquake signals. However, because a smartphone comes with a powerful CPU, spacious memory, and several sensors, it is waste of such resources to use it only for detecting earthquakes. Furthermore, because a smartphone is mostly in use during the daytime, the acquired data cannot be used for detecting earthquakes due to human activities. Therefore, in this article, we introduce a stand-alone device equipped with a low-cost acceleration sensor and least computing resources to detect earthquakes. To that end, we first select an appropriate acceleration sensor by assessing the performance and accuracy of four different sensors. Then, we design and develop an earthquake alert device. To detect earthquakes, we employ a simple machine learning technique which trains an earthquake detection model with daily motions, noise data recorded in buildings, and earthquakes recorded in the past. Furthermore, we evaluate the four acceleration sensors by recording two realistic earthquakes on a shake-table. In the experiments, the results show that the developed earthquake alert device can successfully detect earthquakes and send a warning message to nearby devices, thereby enabling proactive responses to earthquakes.
Article
Full-text available
The MyShake Platform is an operational framework to provide earthquake early warning (EEW) to people in earthquake prone regions. It is unique among approaches to EEW as it is built on existing smartphone technology to both detect earthquakes and issue warnings. It therefore has the potential to provide EEW wherever there are smartphones, and there are now smartphones wherever there are people. The MyShake framework can also integrate other sources of alerts and deliver them to users, as well and delivering its alerts through other channels as needed. The MyShake Platform builds on experience from the first 3 years of MyShake operation. Over 300,000 people around the globe have downloaded the MyShake app and participated in this citizen science project to detect earthquakes and provide seismic waveforms for research. These operations have shown that earthquakes can be detected, located, and the magnitude estimated * 5 to 7 s after the origin time, and alerts can be delivered to smartphones in * 1 to 5 s. A human-centered design process produced key insights to the needs of users that have been incorporated into MyShake2.0 which is being release for Android and iOS devices in June 2019. MyShake2.0 will also deliver EEW alerts, initially in California and hopes to expand service to other regions.
Conference Paper
Full-text available
Indonesia is one of the many countries with one of the most frequent earthquakes. Generally, in Indonesia earthquake damage level measurement is conduct by direct observation. However, the vibration intensity level of an earthquake could result in different levels of damage. Hence, a damage intensity scaling system plays important roles as measuring damage impact caused by an earthquake. Therefore, in this paper we proposes a design and development of a low-cost damage intensity scaling system based on microcontroller and microcomputer. The proposed idea is to record the damage level intensity data, distribute a valid data, and send an early warning if the earthquake damages is severe. This system hardware design utilizing MPU6050 Accelerometer sensor and a potentiometer as a vibration detector. This system use Telegram API and MQTT protocol to send sensors data to end user. The results of the experiment shows that our system has an average 3.17% of difference with the more sophisticated system owned by Meteorology, Climatology, and Geophysics Agency (BMKG) of Republic Indonesia.
Conference Paper
LoRa is a promising technology in the current Internet of Things market, which operates in un-licensed bands achieving long-range communications and with ultra power devices. In this work we capitalize on the idea introduced in [1], i.e. balance the Air-Time of the different modulation spreading factors (SF), and adapt it to operate in a typical metropolitan scenario comprising multiple gateways (GWs) interconnected to a same network server. Our proposed approach, named ADaptive Mitigation of the AIr-time pressure in lORa (AD MAIORA), relies on a suitable measure of the per-spreading-factor load at each GW - quantified by means of a so-called pressure table -, and on a relevant heuristic algorithm which attempts to balance such a per-SF-pressure. Especially in cases of very loaded scenarios, where a high number of nodes insist on the same GWs, the use of AD MAIORA shows significant performance gains, up to a factor of 5 improvements with respect to the legacy LoRaWAN’s Adaptive Data Rate
Conference Paper
We designed and developed an app, for iOS and Android, which uses internal device accelerometer to detect earthquakes that may occur while the smartphone is stable on a at surface and to deliver a crowdsourced early warning to users in the region where the earthquake might be dangerous. We describe our interface for the Android operating system and we compare our system to the other main research work.
Article
The Earthquake Network research project aims at implementing a global scale earthquake early warning system using smartphones as accelerometers. Software at the central server declares an earthquake when the number of smartphones reporting shaking during the past 30 s exceeds a threshold based on the expected number of reports in the absence of shaking due to earthquake waves. In this article, data collected by the smartphone network of the project are analyzed to understand whether they are informative enough to derive preliminary estimates of an earthquake epicenter. Data consist of the spatial position of the smartphones and the server receiving times. From the preliminary analysis of the smartphone data, it is clear that the signal times do not show systematic moveout as expected for seismic phases. For this reason, a new methodology that exploits the high number of smartphones in the network is developed. In particular, the epicenter is estimated by considering only the spatial locations of the smartphones that reported the earthquake and the spatial locations of the smartphones that did not. A nonparametric approach and a model‐based approach are introduced and their epicenter estimation capabilities are studied by means of data from simulated earthquakes and data from 49 earthquakes detected by the system in Chile.