0
votes
1answer
54 views

MySQL / PostGIS Database File Type

I am trying to recover a database created in PostGIS and hosted here (under resources): https://github.com/cecois/dossin_art_api I am able to download the file and open it as a text file but I do ...
0
votes
2answers
55 views

OpenGeoDB: migrate mySQL data to postgreSQL

I would like to use OpenGeoDB for my Ruby on Rails project. Kostiantyn Kahanskyi has written the active_geo_db gem which is a "Rails (ActiveRecord) lib for accessing OpenGeoDb". The problem is that it ...
0
votes
1answer
287 views

MySQL-Solr for geospatial search

The site currently does mainly range searches (latitude & longitude) with some filtering like WHERE color = "red" type of clauses. However using MySQL with geospatial index is still quite slow and ...
2
votes
2answers
800 views

Differences between PostgreSQL and MySQL for PHP developers

For a project where most queries on the database will include requirements like "within an polygon" I have come to think about choosing PostgreSQL with PostGIS instead of MySQL, which I have ...
0
votes
1answer
378 views

MYSQL/PHP/Postgis: Check if a coordinate is within the radius of another coordinate( little twist )

Yes, I would like to know on how to check if a certain coordinates is within another radius of coordinates. This might be a lil diff though, because lat,long,radius is stored in a database and what we ...
1
vote
1answer
487 views

What database and java library to use for Spatial Analysis?

I have been working on a web project that stores locations for users. The project uses currently MySql 5.5 and JPA 2 for mapping the relation database, together with EJB 3.1 as the middle tier. I ...
9
votes
2answers
967 views

MySQL Postgresql / PostGIS

I have lat/lon coordinates in a 400 million rows partitioned mysql table. The table grows @ 2000 records a minute and old data is flushed every few weeks. I am exploring ways to do spatial analysis of ...
0
votes
2answers
229 views

PostGIS for PHP-Mysql (cakephp)

Is there any library similar to PostGIS for PHP-Mysql? I'm dealing with hundreds of GeoLocations in a project than involves geo-boundary + statistics + cakephp-mysql, I want to improve the performance ...
2
votes
1answer
208 views

What sort of things can be done with PostGIS that can't be done using MySQL?

I'm about to start a GIS project, and I want to know if I really need PostGIS or if MySQL's Spatial Extensions are sufficient?
2
votes
2answers
515 views

Storing GPX-Files in Database mysql vs. postgis (postgresql)

i'm working on a web-platform which analyzes GPX-Tracks and draws some profiles, speed stuff, etc. Currently i just calculate the statistics once (like distance, avg speed, duration, height ...
2
votes
4answers
2k views

Geospatial support in JPA

How would I map point and polygon to java types. If this is not possible, what is a workaround? I would like to use geospatial support in mysql or postgres through JPA.
22
votes
4answers
12k views

GIS: PostGIS/PostgreSQL vs. MySql vs. SQL Server?

EDIT: I have been using Postgres with PostGIS for a few months now, and I am satisfied. I need to analyze a few million geocoded records, each of which will have latitude and longitude. These records ...
1
vote
2answers
2k views

MySQL VS PostGres/POSTGIS spatial database support

We're building a small-sized GIS Web application (as a school project) right now. In terms of spatial database support and capabilities, which is better? :) thanks everyone!
4
votes
2answers
826 views

ST_Buffer equivalent for Circle based searches in MySQL?

I need to search for a row with a point that is within a specified circle using MySQL GIS. Pseudocode example query is: select * from gistable g where isInCircle(g.point, circleCenterPT, radius) ...
6
votes
5answers
3k views

Why is PostgreSQL so slow on Windows?

We had an applicationg running using MySql. We found MySql was not suitable for our app after we found that it didnt support some of the GIS capability that PostGIS has (note: mysql only supports ...
1
vote
1answer
2k views

MySQL - Geo-Spatial Object

I've been working in Postgis for point in poly's and i have this function: select * from table_name where st_contains(column, st_setsrid(st_makepoint(-92.095109, 46.804100),4326)); the column is a ...