Tagged Questions
The geos tag has no wiki summary.
3
votes
1answer
186 views
Installing a fully functional PostGIS 2.0 on Ubuntu Linux GEOS/GDAL issues
I have been working on getting postgis 2.0 up and running on an ubuntu-maverick-amd64 linux server for about a week now. I am going for raster and topology support.
I used the following to ...
3
votes
1answer
552 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 ...
2
votes
1answer
48 views
How to measure width in KMs with geos
I've got a bounding box, and I want to adjust it so it's not less than, say, 2km across. I get the bounding box from google's geolocate service, and then I search for stuff that's inside that in my ...
2
votes
1answer
110 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
465 views
How to convert a GEOS MultiLineString to Polygon using Python?
I am developing a GeoDjango application where users can upload map files and do some basic mapping operations like querying features inside polygons.
I recognized that users happen to upload ...
1
vote
1answer
17 views
'module' object has no attribute 'OSMGeoAdmin'
The enviroment is as follows:
**Windows 7**
PATH=C:\Python27\;C:\Python27\Scripts;C:\Python27\Lib\site-packages\MySQLdb;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\OSGeo4W\bin
**python 2.7**
...
1
vote
0answers
65 views
Convert coordinates (latitude, longitude) to GEOS hex format
I have a Django website which uses GEOS for storing some points on map. In a table in DB I have 3 fields: longitude, latitude and something which I believe is hex format of GEOS position.
I need to ...
1
vote
3answers
417 views
Problems installing rgeos and rgdal on Mac OS X Lion
I'm trying to install the rgeos package (and the rgdal) package. I have a macbook pro running os x 10.7.1 and I have the latest version of R, 2.13.1. I am following the instructions from this site: ...
1
vote
2answers
110 views
GeoDjango: Speedup GEOS's Geometry operations
I'm developing a spatial ranking application using GeoDjango + PostGIS. Basically what it does is that it retrieves all geometries within the query bounding box, computes the similarity score using a ...
1
vote
1answer
107 views
PostGIS - certain MultiPolygons cause “BOOM! Could not generate outside point!”
I'm trying to represent a rectangular area which crosses 180 degrees longitude. For more background see In PostGIS a polygon bigger than half the world is treated as it's opposite.
Here's my test ...
1
vote
2answers
480 views
How To Install GEOS for GeoDjango on Windows
I'm starting a GeoDjango project using Python 2.5, Django 1.2, MySQL and Apache. The project will be uploaded to a Linux server but the development will be on a Windows.
The problem is I just can't ...
1
vote
1answer
661 views
Using UTM with geodjango
I'm looking into using the UTM coordinate system with geodjango.
And I can't figure out how to get the data in properly.
I've been browsing the documentation and it seems that the ...
0
votes
0answers
66 views
Using GEOS via Python's ctypes
I must use Python 3.2 and this means I must access the functionality in the GEOS dll via ctypes (with which I am not familiar). I can't use the Shapely library because it has not been ported to ...
0
votes
0answers
117 views
Spatialite-Android Project NDK Build
I am trying to follow the instructions on the spatialite-android project here: link
and have some errors are occuring I was hoping someone here could give me a hand. I am using CYGWIN to do the ...
0
votes
1answer
61 views
python not finding library under django that's found otherwise
I've just successfully installed GeoDjango and all the required libraries. I've set the environment variables and registry keys (yea working under Windows here) and everything works find from the ...
0
votes
0answers
58 views
GEOS 3.3.0 compilation fail on iOS
I'm trying to compile Geos 3.3.0 in iOS, but having problem on assert() function.
Compiler error is: 'assert' was not declared in this scope.
This issue happen only on two classes wrote in cpp.
Any ...
0
votes
3answers
410 views
How to repaire a polygon with self-intersection?
Is there a way to reconstruct a polygon, which has self-intersections, in the geos?
0
votes
1answer
980 views
postgresql/postgis backup strategy to restore after geos/postgis recompile?
Current situation:
Ubuntu 8.04 server edition (live server)
Postgresql 8.3.7 (from standard repositories)
Postgis 1.3.3 (from standard repositories)
GEOS 2.3.4 (from standard repositories)
...