If you've been following the news, you've probably seen that the Kilauea volcano in Hawaii has erupted, and there have been reports of many earthquakes. I thought I'd use the built-in EarthquakeData in the Wolfram Language to see if I could come up with any interesting visualizations to explore the seismic activity. I'm going to be using some very basic examples from the documentation.
Let's first grab some data from 5/1/18 to 5/6/18 and plot locations.
data = EarthquakeData[
Entity["AdministrativeDivision", {"Hawaii", "UnitedStates"}],
4, {{2018, 5, 1}, {2018, 5, 6}}, "Position"]["Values"];
GeoGraphics[{GeoStyling["ReliefMap", MaxPlotPoints -> 300], Red,
data /. GeoPosition[{x_, y_}] :> Point[{y, x}]}]

Wolfram Language returned a message indicating there were duplicates, so some values were combined.
Let's use an example from the documentation and examine earthquake depth.
data2 = {#["Position"], #["Depth"]} & /@
Values[EarthquakeData[
Polygon[Entity[
"AdministrativeDivision", {"Hawaii", "UnitedStates"}]],
4, {{2018, 5, 1}, {2018, 5, 6}}]];
Graphics3D[{Opacity[0.6],
Map[Append[Reverse[#], 0] &,
EntityValue[
Entity["AdministrativeDivision", {"Hawaii", "UnitedStates"}],
"Polygon"] /. GeoPosition -> Identity, {-2}], Red, Opacity[1],
Line[{Append[Reverse[First[#1]], 0],
Append[Reverse[First[#1]], -QuantityMagnitude[#2]/10]} & @@@
data2]}, Axes -> True]

Pretty impressive for just using some basic examples from the documentation. I'm not an expert in programming, data visualization or geocomputation, so I'm curious what some of you might be able to come up with!
Attachments: