I am plotting over 500 points on an open street map. I load all these points from my database into a dataframe, and then use px.scatter_mapbox to plot the points. I set lat as the Latitude column in my dataframe and lon as the longitude column in my dataframe. When I do this and load the website, the map is plotting some of the points incorrectly. About 75% of the points are plotted correctly and 25% incorrectly. I am not sure why this happening because when I check the dataframe all the lat/longs are correct. I also plot points a similar way later in my program, but with a less set of points to plot and the points seem to be correct there. Seeking help on solving this. Thanks.