in algorithms/gauss-kruger/java/src/main/java/com/epam/aicode/CsvReader.java [14:22]
public static void main(String[] args) {
List<DataPoint> data = readCsv();
System.out.println("Rows read: " + data.size());
// Example of using the lat and lon attributes
for (DataPoint point : data) {
System.out.println("Latitude: " + point.getLat() + ", Longitude: " + point.getLon());
}
}