MATLAB: How to convert distance (meters) into latitude and longitude(degrees) values without using “distdim” command in Matlab

coordinate system

I have to convert distance of an object (which is in meters) into a geographical coordinate system(latitude and longitude) which is in degrees or vice versa.

Best Answer

A latitude/ longitude in degrees will be converted to km by multiplying it with ~111.111 kms. The multiplication factor slightly varies depending on the location. You may check the link below: https://en.wikipedia.org/wiki/Decimal_degrees
Related Question