diff --git a/chasemapper/__init__.py b/chasemapper/__init__.py index 95a99cd..cd8b09a 100644 --- a/chasemapper/__init__.py +++ b/chasemapper/__init__.py @@ -8,4 +8,4 @@ # Now using Semantic Versioning (https://semver.org/) MAJOR.MINOR.PATCH -__version__ = "1.5.0" +__version__ = "1.5.1" diff --git a/static/js/sondehub.js b/static/js/sondehub.js index afab4a9..ee1dbdc 100644 --- a/static/js/sondehub.js +++ b/static/js/sondehub.js @@ -56,6 +56,13 @@ function handleSondeHubWebSocketPacket(data){ } else { // Otherwise, we need to decide if we're going to add it or not. + + // Is it us? + if(vcallsign.startsWith(chase_config.habitat_call)){ + // Don't add! + return; + } + // Determine the vehicle distance from our current position. var v_pos = {lat: v_lat, lon:v_lon, alt:v_alt}; if (chase_car_position.marker === "NONE"){