GNSS data to OSM format processor and track finder
Functions
NaNremover Namespace Reference

Used to remove NaNs from input data. More...

Functions

def nan_remove (urblat, urblon)
 Function removes latitude or longitude from input list while it also deletes the item on respective position of the other list on the position NaN is situated. More...
 

Detailed Description

Used to remove NaNs from input data.

Function Documentation

◆ nan_remove()

def NaNremover.nan_remove (   urblat,
  urblon 
)

Function removes latitude or longitude from input list while it also deletes the item on respective position of the other list on the position NaN is situated.

Examples

Input
urblat = [nan, 2, 3, 4]
urblon = [5, 6, nan, 8]
Output
[2, 4]
[6, 8]