Check seemingly arbitrary value caps in mapToInfluxDBPointData()

    val convertedValue = dataPoint.unit match {
      case "kn" if dataPoint.value < 20 => dataPoint.value * 1.94384
      case "deg" if dataPoint.value < 7 => dataPoint.value * 180.0 / Math.PI
      case _ => dataPoint.value
    }