Hi,
I have a data in coordinates of latitudes and longitudes. I would like to plot them in a scatter plot directly without converting them to xyz coordinates. Is there a way to do so?
I used scattergeo, but it had the world map built in which I don’t want.
What do you mean with “without converting them to xyz coordinates”?
Generally speaking, you can just pass your latitudes as the x-axis and the longitudes as the y-axis to a regular scatter plot (Scatter plots in Python). If you also have the altitude, use the 3d scatter plot and pass the altitudes as the z-axis (3d scatter plots in Python).