0
votes
1answer
179 views

Generate population heatmap: Mapreduce?

I have a MySQL table containing (100 million) Lat/Lng coordinates of locations in America Number of people living within a square mile radius of that location Question: After generating and ...
1
vote
0answers
77 views

Using PostGis' ST_AsPNG() Output to Create Image with PHP

I'd like to create an image based on raster output I'm building from a PostgreSQL spatial database. I have a query: SELECT ( ST_AsPNG( ST_AsRaster( geom, 1.5::double ...
0
votes
2answers
413 views

PostGIS functions integrated in php example?

I'm writing a client for a postgreSQL database with PostGIS functions. this client of course communicates through php. However I'm looking for a proper documentations for available postGIS functions ...
0
votes
2answers
180 views

passing string in “textfield” to another part in code

I have one question about passing strings from one Ext.formPanel textfield to another part of the code. The thing is that I have two "textfield" in the formPanel and I want the words I enter there as ...
1
vote
1answer
116 views

'parameters' option in the postgis_geojson.php script

I'm using this script (update https://gist.github.com/3763701) and it works nicely (congrats to the author), but the 'parameters' option doesn't work with my tables, for instance this call: ...
0
votes
1answer
123 views

PHP convert result of datatype geography to coordinates

I am using PHP to query my PostgreSQL-db with PostGIS to get data. One of the columns is of the type geography, which means the returned data from that column looks like a string of random letters and ...
0
votes
1answer
103 views

pg_send_query_params Returns TRUE But Fails

I have a PHP script which inserts a row into a Postgres DB. It works fine on my test server (Postgres 9.1) but fails on my new shared host (Postgres 8.4). $query = "INSERT INTO " . $table . " VALUES ...
0
votes
1answer
100 views

PostGIS - restrict result to the viewport of the map

I have imported few shp files into PostGIS/PostgreSQL DB. Now I want to display the same on the OSM map using OpenLayers. As there are millions of records for the selected county, I want to only fetch ...
2
votes
2answers
851 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
388 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 ...
2
votes
1answer
124 views

What is a postgresql's query to solve these quite complicated steps?

stackoverflow. This may be challenged question because it is included the PostGIS function to calculate the missing data (the_geom) for each asset according to the old data we have. Whether you know ...
0
votes
1answer
550 views

WebMaping using Flex 3 (GeoServer, PostgreSQL, PostGIS, php)

Any idea of WebMaping (Displaying a GeoSpatial Map) using flex 3. I have few vector layers and also a raster layer, and i had already build a Geodatabase using PostGIS. I am using GeoServer as map ...
1
vote
1answer
846 views

PostGIS function to connect geometry LINE together?

(note: the_geom is a geometry value (TYPE: LINESTRING), in this case i random them for readability) gid | kstart | kend | ctrl_sec_no | the_geom | the_sum_geom 626 | 238 | 239 | 120802 ...
0
votes
1answer
179 views

How calculate things from many tables by using a few queries?

note: this question is related to PostGIS and Postgresql and is implemented with PHP Now I have Table A : gid | kstart | kend | ctrl_sec_no | the_geom | 626 | 238 | 239 | 120802 | ...
0
votes
2answers
237 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 ...
3
votes
1answer
208 views

Save web data into PostGIS

Is it possible to store harvested data from a website(Nestoria) upon implementing their APIs using PHP? I am able to extract the data using PHP and it displays the result on a web browser, but I need ...
2
votes
2answers
592 views

PDO Statement Error: 42601 syntax error near “$6”

I'm having trouble getting this simple query to execute. I'm using nameless parametized queries and Postgres + PostGIS. The PDO Statements error info is as follows: Array ( [0] => 42601 ...
6
votes
3answers
1k views

Recommended hosting for PostGIS app [closed]

I've developed an PHP + PostGIS app and I need to host it somewhere. Can anyone recomend me a web hosting that sopport Postgres + PostGIS databases? I found some places to host the app, but I would ...
7
votes
2answers
1k views

Cluster points in PostGIS

I'm building an application that pulls lat/long values from a database and plots them on a Google Map. There could be thousands of data points so I "cluster" points close to each other so the user is ...
1
vote
1answer
431 views

Postgis - st_distance

I'm having problems with st_distance function in postgis. It returns wrongs results - for small distances the error isn't big - 10, maybe 20 meters but for bigger distances the difference between my ...
0
votes
3answers
1k views

Get points inside a bounding box

I'm trying to choose places from my postgis db that are inside a certain bounding box. I'm trying to accomplish this with this query: //latlong - latitude, longitude of a place SELECT * FROM places ...
1
vote
1answer
1k views

PHP To Retrieve PostGIS Geography Types

I have a PostGIS database with a geography column. I'd like to be able to use PHP to SELECT the geography so then I could run another query using ST_Distance to get the distance between the points. ...