Monday, August 24, 2020
On Machine Learning in ArcGIS and Data Preparation using Spark
Monday, August 3, 2020
ArcGIS Pro, Jupyter Notebook and Databricks¶
Sunday, August 2, 2020
Virtual Gate Crossing
Note that the join is to a "small" spatial dataset that we can:
- Broadcast to all the spark workers.
- Brutly traverse it on each worker, as it is cheaper and faster to do so that spatially index it.
Saturday, August 1, 2020
MicroPath Reconstruction of AIS Broadcast Points
Micropathing is the construction of a target's path from a limited set of a consecutive sequence of target points. Typically, the sequence is time-based, and the collection is limited to 2 or 3 target points. The following is an illustration of 2 micropaths derived from 3 target points:
Micropathing is different than path reconstruction, in such that the latter produced one polyline for the path of a target. Path reconstruction losses insightful in-path behavior, as a large number of attributes cannot be associated with the path parts. Some can argue that the points along the path can be enriched with these attributes. However, with the current implementations of Point objects, we are limited to only the extra M and Z to the necessary X and Y. You can also join the PathID and M to a lookup table and gain back that insight, but that joining is typically expensive and is difficult to derive from it the "expression" of the path using traditional mapping. A micropath overcomes today's limitations with today's traditional means to express the path insight better.
So, a micropath is a line composed of typically 2 points only and is associated with a set of attributes that describe that line. These attributes are typical enrichment metrics derived from its two ends. An attribute can be, for example, the traveled distance, time, or speed.
In this notebook, we will construct "clean" micropaths using SparkSQL. What do I mean by clean? As we all know, emitted target points are notoriously affected by noise, so using SparkSQL, we will eliminate that noise during the micropath construction.
Here is a result:
More to come...