public DataPoint()

in algorithms/gauss-kruger/java/src/main/java/com/epam/aicode/CsvReader.java [65:76]


        public DataPoint(String file, double lat, double lon, double altBaro, double roll, double pitch, double yaw, String date, String time, double altGPS) {
            this.file = file;
            this.lat = lat;
            this.lon = lon;
            this.altBaro = altBaro;
            this.roll = roll;
            this.pitch = pitch;
            this.yaw = yaw;
            this.date = date;
            this.time = time;
            this.altGPS = altGPS;
        }