Tagged Questions
3
votes
1answer
237 views
MySQL Spatial Data Type Indexing Performance Comparison
Would a MBR function query against an indexed column with geometry type containing points and polygons (GeomCollection type) be slower than a MBR function against an indexed column with a polygon ...
2
votes
1answer
586 views
What is a SPATIAL INDEX and when should I use it?
Like most of the average PHP web developers I use MySql as a RDBMS. MySql (as other RDBMS also) offers SPATIAL INDEX features, but I'm don't get it very well. I goole for it but I don't found clear ...
1
vote
1answer
509 views
Spatial Index in MySQL - ERROR - Cannot get geometry object from data you send to the GEOMETRY field
I am new to the whole 'spatial index' thing, but it seems to be the best solution for filtering based on latitude/longitude. So I added a column to my table:
So I created a geometry field:
ALTER ...
1
vote
1answer
102 views
Are SPATIAL Geometry indices performannce dependant on the size and density of geometry shapes?
Spatial Indexes
Given a spatial index, is the index utility, that is to say the overall performance of the index, only as good as the overall geometrys.
For example, if I were to take a million ...
0
votes
1answer
109 views
TRIGGER based on spatial data
I have a table called pano_raw that has 3 columns lat, lng, and latlng.
lat and lng are just decimals (10,3) and latlng is a spatial index of type POINT.
This is an example statement that would ...
0
votes
1answer
87 views
Complex MySQL join from old table to new
I have an old database named locations with a table inside named locations.
This table has 7 variables: id (int, index), approved(int), city(text), country(text), heading(double), lat(double), ...
0
votes
1answer
340 views
Way to improve performance in MySQL on POINT(lat, long)
I have an application that needs to query a table with latitude and longitude coordinates, which are stored using MYSQL's POINT datatype.
I have a stored function that finds nearby lats and longs ...