I have longitude and latitude coordinates saved in a database and would like to map it to a MySQL POINT column in another MySQL table.
I'd like to use spring data Point in my code with the constructor Point(double x, double y). Unfortunately, I cannot find out which parameter (x or y) corresponds to which geo-location coordinate? How do I create a Point with latitude and longitude correctly?