Tagged Questions
5
votes
1answer
267 views
Calculating distance in WGS84 (MySQL and Geoserver)
Here is the environment in which I work:
An application using geo-referenced data
Database MySQL 5.5, storing georeferenced points
A Geoserver server, connected to the MySQL database
Here is the ...
2
votes
1answer
1k views
Find points within a distance using MySQL
I have a mySQL table with user name, latitude and longitude of the user. I would like to get a list of user who are inside the circle or square of a given latitude and longitude with given distance. ...
0
votes
0answers
261 views
Implementing custom (Vincenty/Haversine formula) functions for MySQL vs Using PostGIS?
I currently am using MySQL for all of my relational data. I have hit a crossroads with geo calculations. Since, MySQL does not have good support for spatial functions, I am contemplating on using ...
2
votes
1answer
405 views
MySQL GeoSpatial function for ST_Distance_Spheroid? Metric used in return Type of GLength?
Is there a ST_Distance_Sphere, ST_Distance_Spheroid equivalent function in MySQL's GeoSpatial Support?
If not, any way to emulate this?
What is the metric used in return type of ...
2
votes
2answers
620 views
MySQL Query to fetch all cities and POI's near the route
I'm implementing alghorithm to search POI near the route (array of Lat, Long points).
My problem is that I don't know how to calculate distance beetween line segment and POI.
Look at picture that I ...
2
votes
1answer
2k views
How to calculate distance between two locations using stored procedure in MySQL?
I have a database with locations with its lat and long coordinates. The area of locations is quite small with lots of them quite near each other.
Im using this stored procedure in my project. ...
