0
votes
1answer
25 views

dump a LineString geom to a Point geom in Django (Like ST_DumpPoints())

Summary Question: How can I dump a LineString geom to a Point geom in Django? Or is raw SQL the only way? Want more details ... here ya go: Say I have the following models, the exact format isn't ...
0
votes
1answer
44 views

How can I get a String from this Geometry Object with hibernate and PostGIS

I would like to return the output (Output is "0101000020E610000000000000000024400000000000002440" in geometry type) of this SQL Postgis query select ST_GeometryFromText('POINT(10 10)',4326) in Java ...
4
votes
2answers
43 views

How to calculate the topological distance using ArcMap or other softwares?

I'd like to calculate the topological distance instead of Euclidean distance between two polygons. The distance between two neighboring polygons is 1, between two polygons connecting through a common ...
0
votes
1answer
52 views

Force geoserver to SRID 0

I'm developing a gis solution which uses only geometry data. I designed my spatial DB with PostGIS and now I'm performing some trials connecting the DB with GeoServer map server (using the ...
0
votes
0answers
57 views

GeoDjango - Splice geometry by bounding box

I am looking for a solution to retrieve the geometry(ies) from a polygon/multipolygon within a bounding box in a GeoDjango application. The application I am developing has a requirement to server out ...
0
votes
3answers
422 views

check if point lies on line segment [closed]

I am confusing, I want check if a point lies on the a line segment. I google it, but I receive basically two different answers. http://en.wikipedia.org/wiki/Line_segment and ...
2
votes
1answer
444 views

hibernate-spatial: sql query to retrieve a geometry

I'm using postgresql, hibernate-spatial and postgis and expected to be able to use a SqlQuery to retrieve a Geometry object. However whenever I try to query a Point, Polygon or Geometry eg List list ...
0
votes
1answer
201 views

Update Field Geometry Polygon PostGIS PostgreSQL

I am having some trouble trying to update a field. I created a column as text and stored many rows with (lon,lat). Now I have created one more field as Geometry(Polygon) and I am trying to update it ...
0
votes
1answer
148 views

Difference between geometry and geography in ST_Azimuth function of postgis

I would like to ask what is the difference between geometry and geography using the postgis function ST_Azimuth. When i execute the following query: SELECT degrees( ...
0
votes
1answer
346 views

How to create a circle in meters in postgis?

I would like to ask how to create a circle with radius=4km. I have tried the ST_Buffer function but it creates a larger circle (i see the created circle by inserting its polygon into an new kml file). ...
0
votes
2answers
242 views

How to convert a geometry data string to degrees?

The query SELECT geom FROM myLayer; I get a 2 kilometres long string in a table, which I wish I could convert it to radians values to handle them later on. this is an example of what I get: ...
1
vote
2answers
413 views

How to find the nearest point in POSTGIS?

table A: lat | long | the_geom | code | sign 13.8433095 | 100.6360357 | 0101000020E61.... | ABC | start_point 13.7544738 | 100.5459646 | 0101000020E6..... | ABC | end_point ...
2
votes
1answer
129 views

How to use Geodjango snap_to_grid on geography Field (not geometry)

I create a table using geodjango with a column location = models.PointField(geography=True). class Point(models.Model): location = models.PointField(geography=True) Later I want to use ...
1
vote
0answers
655 views

Display POSTGIS data in a JMapFrame with GeoTools

EDIT: For information : create style with StyleLab example and it will display what you want. I'm trying to display POSTGIS data with GeoTools I did the examples in : ...
0
votes
1answer
210 views

Postgis - Migrate table with geometry column to SQL Server

I have a table in a PostGIS database with a geometry column, assume the table called roadpublic just has 2 columns as follows: COLUMN roadid uuid; COLUMN geom geometry; Now, I'd like to import this ...
1
vote
2answers
200 views

PostGIS geometry database query

I have several tables that contain multipolygons. I need to find points within these polygons that I can use in my java test class. What I have been doing is sending a query to return all the multi ...
10
votes
1answer
4k views

Postgis installation: type “geometry” does not exist

I am trying to create table with Postgis. I do it by this page. But when I import postgis.sql file, I get a lot of errors: ERROR: type "geometry" does not exist Do anybody know how can I fix it?
0
votes
1answer
437 views

Convert “geometry” into “geography”

I'm on a test project to learn about geolocation tools. But being a neophyte, a few concepts in PostGIS escape me. Here's my problem: The SRID used was 4326. I have three fields: The field "geocenter" ...
0
votes
1answer
146 views

An error occurred when transforming the geometry to the SRID of the geometry form field

I am working on geodjango , postgis and found a problem while saving a location from OSMGeoAdmin with open street map .The map showing accordingly but when i want to save a location it shows with red ...
1
vote
1answer
529 views

Problems with dealing with Geometry end WKBwriter on JTS

I've just started with geometries and I'm getting some really odd errors. I'm trying to create a WKB inside my java code with an specific SRID. I've done: GeometryFactory gm = new ...
0
votes
3answers
878 views

Unions of polygons (ST_UNION for Geography type)

I am looking for a function that will return the intersection of 2 or more polygons (geography type). I am aware of ST_UNION, ST_COLLECT but it works only for geometry type. Any tip will be really ...
1
vote
2answers
585 views

Divide a path into N sections using Java or PostgreSQL/PostGIS

Imagine a GPS tracking system that is following the position of several objects. The points are stored in a database (PostgreSQL + PostGIS). Each path is composed by a different number of points. ...
28
votes
5answers
6k 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 ...