Hi Mia,
In MATLAB, for a “geoaxes” object, you cannot directly set an equal data aspect ratio like axis equal due to the nature of map projections. However, you can
- Try to approximate aspect ratio by setting equal latitude and longitude ranges with “MapLatLimit” and “MapLonLimit”.
- Use “daspectm('m',1)” to adjust the meridian-to-parallel distance ratio, though it may not be perfect.
- For precise 1:1 distance ratio, consider an azimuthal projection for small areas.
You can also refer to the links below.