I am looking for an implementation of MySql and Geographic layers (features\rasters),
how does it work for you? which ORM \ dataaccess you are using? how do you write the geo-queries? as sql or in code
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
At least for the simple stuff, generally speaking, you have to convert a geometric object from text into a geometry:
You can do a spatial indexes like
ALTER TABLE my_table ADD SPATIAL INDEX(my_field);You cannot really do much beyond the basics with GIS data in MySQL.. if you really want to do GIS stuff with a FOSS dataserver, you have to go PostGIS with PostgreSQL. See this article.