Tagged Questions

7
votes
8answers
14k views

Java, convert lat/lon to UTM

Does anyone know of a way, in Java, to convert an earth surface position from lat, lon to UTM (say in WGS84)? I'm currently looking at Geotools but unfortunately the solution is not obvious.
86
votes
10answers
18k views

OpenLayers vs Google Maps?

I have used Google Maps a couple of times, but what wondering about OpenLayers. Before starting any kind of coding, here are a couple of questions that come to my mind, Why would I use OpenLayers ...
6
votes
1answer
3k views

Forcing an OpenLayers Markers layer to draw on top, and having selectable layers beneath

I have an OpenLayers map with a raster base layer, a vector layer and a markers layer in that order. They display fine, in the correct order with the markers on top of the vectors, great. But when I ...
2
votes
2answers
3k views

cURL with user authentication in C#

I want to do the following cURL request in c#: curl -u admin:geoserver -v -XPOST -H 'Content-type: text/xml' \ -d '<workspace><name>acme</name></workspace>' \ ...
1
vote
1answer
223 views

Unable to syncdb in GeoDjango App

I am having a real trouble in setting up spatial database and syncing it with GeoDjango. I was able to setup the spatial database as per the geodjango documentation and create a django app but when i ...
2
votes
1answer
2k views

OpenLayers Format JSON is Returning Empty responseText String

After a week of posting at the OpenLayers forum and not receiving responses to my questions, I have decided to look here. I have Googled and Googled and Googled and even found a wonderful tutorial ...
2
votes
2answers
7k views

SQL query for point-in-polygon using PostgreSQL

I have the following simple table: CREATE TABLE tbl_test ( id serial NOT NULL, poly polygon NOT NULL ) WITH (OIDS=FALSE); I then try to insert a row with a polygon: insert into tbl_test ...
2
votes
1answer
2k views

Rendering spatial data of GeoQuerySet in a custom view on GeoDjango

I have just started my first project on GeoDjango. As a matter of fact, with GeoDjango powered Admin application we all have a great possibility to view/edit spatial data, associated with the current ...
15
votes
9answers
11k views

good postgresql client for windows?

coming back to postgresql after several years of oracle ... what are the state-of-the art postgresql administrative/ddl generating/data inserting frontends on windows? it would be nice if it had ...
1
vote
1answer
148 views

How to debug: Internal Error current transaction is aborted, commands ignored until end of transaction block

Hi Stackoverflow people, I do my first steps with GeoDjango and I am looking for better options to check faulty sql statements. So far, I simply wanted to safe a lng+lat point in my postgresql ...
8
votes
5answers
3k views

Min/max zoom level in OpenLayers

I'm using OpenLayers to display a map in a web page. I am using tiles from CloudMade, but the same issues occur with the Mapnik tiles from OpenStreetMap. I'm trying to restrict the map so that the ...
6
votes
4answers
8k views

JPA/Hibernate Native Queries do not recognize Parameters

I am using Hibernate/JPA to execute native PostGIS queries. The problem with these queries is that they need parameters that are not of the classical X = 'value' form. For example, the following ...
4
votes
1answer
2k views

Openlayers: Vector Features instead of Markers

I want to place a symbol o a Map. E.g. So far I have used OpenLayers with OpenLayers.Layer.Markers. The code looks like this: map = new OpenLayers.Map('map'); layer = new ...
2
votes
2answers
259 views

OpenLayers: Why are my Vectors Features Markers misplaced?

I first coded using Markers (with success) then realizing it was no more recommended (especially for clustering). Having read the examples given in Openlayers doc and this question, I've created my ...
2
votes
2answers
243 views

Show locations on a map in asp.net

in my asp.net application i need to display on a map (google map but i also have a shapefile of the roads ) the locations of about a thousand car accidents. This is my very first approach with this ...
1
vote
0answers
42 views

My PostGIS database looks fine but GeoDjango thinks otherwise… why?

I'm trying to set up a GeoDjango app to test an earlier problem I was having. I've set up a postgresql database, created a new Django project and app, but when I try ./manage.py syncdb I get this: ...
0
votes
1answer
101 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
3answers
3k views

NSTask or equivalent for iPhone

I've an open source project (gdal) that I want to compile and run as part of an iPhone app. I had been expecting to use NSTask but I see now that it was removed in OS 3.0. I've also seen elsewhere ...
5
votes
2answers
401 views

How Can I Transform the Coordinates of a Shapefile

I am trying to get neighborhood data into my application, and I'm having problems with the data I am using, which I got from here. This file contains a shapefile that has the neighborhoods of San ...
2
votes
1answer
984 views

JavaScript function does not push object to a global array variable

EDITED: The problem is with the function 'find_callback', I want to insert each of the responses to a global array named responseArray. the response is an array of objects. I'm trying to add markers ...
2
votes
3answers
990 views

PostGIS and JPA 2.0

I like to map datatypes from PostGIS with JPA 2.0. I googled for solutions or examples, but all I can find is, that JPA does not support mapping of custom data types. Is it still in JPA 2.0? Has ...
1
vote
1answer
134 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
3answers
107 views

Running open layer with JSF and .xhtml file

I made a jsf project and have the following example from http://docs.openlayers.org/library/introduction.html but as a xhtml file this wouldn't run and as a html file it would run. How to run it with ...
0
votes
1answer
139 views

Style Point vector as Marker in Openlayers?

It seems like getting onDrag for Markers on OpenLayers isn't possible (this and this, as examples) So I would like to use a vector layer, and then add points to it instead of markers. My problem is ...
0
votes
1answer
66 views

To update several non dupliated rows at one time using “Group by”

I followed the help from Generate a random number of non duplicated random number in [0, 1001] through a loop . But I can't apply that to my case. When I do: update weighed_directed_edge set ...
20
votes
3answers
3k views

How to intelligently degrade or smooth GIS data (simplifying polygons)?

I have detailed US county maps, from the TIGER LINE data sets. How might I sample, smooth, or degrade the data so that I get straighter, more boxy, less "noisy" shapes to represent the geographical ...
8
votes
1answer
3k views

Rasterizing a GDAL layer

Edit Here is the proper way to do it, and the documentation: import random from osgeo import gdal, ogr RASTERIZE_COLOR_FIELD = "__color__" def rasterize(pixel_size=25) # Open the data ...
14
votes
3answers
5k 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 ...
10
votes
5answers
6k views

How do you know what SRID to use for a shp file?

I am trying to put a SHP file into my PostGIS database, the the data is just a little off. I think this is because I am using the wrong SRID. The contents of the PRJ file are as follows: ...
7
votes
9answers
4k views

Java equivalent of OpenLayers

I am looking for a Java library to display map data from various sources, including shapefile, WMS, WFS, Google Maps, possibly ArcIMS, etc. It seems like OpenLayers is the closest thing to what I ...
3
votes
2answers
2k views

Openlayers, nice marker clustering

Do you know how to have a nice clustering in openlayers such as this google example ?
0
votes
1answer
305 views

How to create openlayer map in iphone?

I want to know that can we create Open Layer map application without using JavaScript API means phone gap. I want to create this Open Layer application with use of X Code native codes and Map. Can it ...
0
votes
1answer
620 views

How to import Lat/Long data into PostgreSQL

PostgreSQL / Django / newbie here. I've got a bunch of JSON data with venues and lat/long information, and I'm looking to import it into my database. So far I've fenagled a script to format my JSON ...
7
votes
2answers
3k views

OpenLayers - how do I draw a Polygon from existing lonLat points?

I have in my database longitude-latitude verticies from user-defined polygons. My questions is: how do I recreate and display them on a map now? This is quite easy to do with the Google Maps API, but ...
4
votes
1answer
160 views

Given collection of points and polygons, determine which point lies in which polygon (or not)

My question is almost similar to this. But in my case, the polygons are not necessarily touching/overlapping each other. They are present all over the space. I have a big set of such polygons. ...
4
votes
2answers
719 views

What SRID should I use for my application and how?

I'm using PostgreSQL with PostGIS. All my data has already decimal lat/long attached to it (i.e. -87.34554 33.12321) but to use PostGIS I need to convert it to a certain type of SRID. The majority of ...
2
votes
2answers
559 views

Distance between 2 POINTs in Postgis in srid 4326 in metres

This is probably a simple question, but I'm not very good at PostGIS and don't fully grok all of this. Basically I have a table (nodes) with a POINT column (point). I have created an index on this ...
1
vote
2answers
608 views

How to use both Ext 3 and Ext 4 togeheter with GeoExt?

We are trying to load both Ext 3 and Ext 4 with the use of ext-all-sandbox.js to be able to use GeoExt in Ext 4. Looking in our DOM it seems we have succeeded with loading Ext 3, Ext 4, GeoExt and ...
5
votes
5answers
2k 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 ...
4
votes
1answer
2k views

How to use OpenStreetMap/OpenLayers?

I am searching for an example how to use OpenStreetMap with PhoneGap and Android. I found only old examples at the web, f.e. http://mab.edina.ac.uk/geomobile-test/osm.html, but it didn't work with the ...
4
votes
1answer
719 views

GeoDjango: How to create a circle based on point and radius

I have the following (simplified) Model: class Zone(gismodels.Model): name = gismodels.CharField() poly = gismodels.PolygonField() I want to create and save a polygon that represents a ...
4
votes
1answer
609 views

How do I activate a feature + popup when clicking outside of a map in Openlayers?

I'm re-parsing the KML that's already been loaded onto the map similar to the example here: http://openlayers.org/dev/examples/sundials.html and turning it into a clickable list that will center the ...
3
votes
1answer
433 views

OpenLayers click event on iPhone with PhoneGap

I have a problem with the click event on an OpenLayers Map on iPhone 4 using PhoneGap. It appears that the Position received by my setMarker(evt) function is dependent from the scroll position. After ...
3
votes
2answers
140 views

How to Improve UPDATE query result time in Postgresql?

I have the following query running for 3hours+: UPDATE eop_201007 set coord_x = gi.x_etrs89, coord_y = gi.x_etrs89,gr_type = 4 from eop_201007 as eop, geoindex201001 as gi where eop.cp7=gi.cp7 AND ...
2
votes
2answers
283 views

ST_DWithin takes parameter as degree , not meters , why?

The ST_DWithin document says , the third parameter(distance) is in meters. But when I execute some query , it seems it takes the 3rd parameter as 'degree' ? Here is my simplified table structure : ...
2
votes
2answers
883 views

Openlayers zoom in on cluster

Is it possible to zoom in on cluster on click? I also don't know how to disable cluster popup. I read this question , but still have no idea how to do it. Here is the code: <html> <script ...
2
votes
1answer
137 views

In PostGIS a polygon bigger than half the world is treated as it's opposite

I'm using GeoDjango with PostGIS and trying to use a polygon to get records from a database which fall inside it. If I define a polygon which is bigger than half the area of the earth it assumes the ...
2
votes
1answer
606 views

GDAL / OGR on the iPhone

I'm working on a project that requires me to either A) Render Shape, Tab and WFS files as MapView overlays, or B) convert them to KML, since I already have a KML renderer working. The best way to do ...
2
votes
1answer
495 views

OpenLayers Curve Geometry not working as expected

I'm trying to create a curved line between two features using OpenLayers 2.10. I'm afraid I may have found a bug, or I simply don't understand what the curve geometry does. The OpenLayers docs say: ...
2
votes
2answers
6k views

How to convert Vector Layer coordinates into Map Latitude and Longitude in Openlayers

I'm pretty confused. I have a point: x= -12669114.702301 y= 5561132.6760608 That I got from drawing a square on a vector layer with the DrawFeature controller. The numbers seem...erm...awfull ...

1 2 3