0
votes
1answer
17 views

Postgresql Connection with Database in Java fail

I try to connect from my Android app to my postgresql server running on Windows 7. Both is running on my computer with a special IP. I try String url = ...
0
votes
0answers
15 views

how to use st_xmax by hibernate/jpa

The following does not work. import javax.persistence.criteria.CriteriaBuilder; import javax.persistence.criteria.Predicate; import javax.persistence.EntityManager; import ...
0
votes
0answers
67 views

Using PostGIS with ormLite

I connected ormlite with jdbc to a postgresql database. My datastructure is predefined and contains a Postgis datatype called geometry. This datatype can contain different geometry structures (point, ...
0
votes
1answer
351 views

Storing PostgreSQL/PostGIS “geometry(MultiPolygon)” data type in java

I need to store PostgreSQL's geometry(MultiPolygon) type variable into a java variable this is because im trying to add the geometry column to a non-spatial table for querying a map using mapserver i ...
2
votes
1answer
73 views

Caching spatial queries

Given a service that returns some data for a location (lat/lng) querying an spatial database, I'm interested in a good way to use a memory caching strategy given that use cases: Lat/Long values will ...
1
vote
1answer
175 views

How to call PostgreSQL function in java?

I have PostgreSQL+PostGIS. I java i want to call this query: SELECT num,id,mydata, asText(the_geom) FROM filedata But get NullPointerExeption. I think its couse i try to call function asText in ...
2
votes
2answers
126 views

How to find nearest City of out of a selected set

I need to get the nearest city out of a selected set of cities. Our company has a list of subsidiaries (some 100 in my country). We get around 3000 requests a day. This requests should be assigned to ...
0
votes
0answers
303 views

How to generate POJO from PostgreSQl/PostGIS?

I have a 25 .xsd schemas and want to generate DB tables and POJO classes from this schemas. Hibernate can do it? Im already try generate DB tables with XMLSpy and POJO with JiBX, but when i generate ...
1
vote
1answer
94 views

Multipoint from database using Geotools

I just want to know how to create an instance of a Multipoint from a PostGIS database. I do the query, then get a ResultSet named area. The column with MultiPolygon attributes is named geom, so I do ...
0
votes
0answers
155 views

How to run raster2pgsql through Java process builder?

Hello, everyone! I need to write process builder to call raster2pgsql.exe to create a sql file. My command line is : raster2pgsql -I -C C:/2.jpg public.lala > c:/lala.sql This command line had been ...
0
votes
1answer
839 views

insert Point(Geometry) value in database with postgresql/JDBC

Please give me code example to insert records containing sql statement: insert into TABLE (id, value1, value2, point, value3) values (1,'A', 'M', POINT (13.45646, 56.61782),5); in ...
1
vote
0answers
298 views

Send a PostGIS object through RestFul service (JSON)

all. This is my first question, so forgive if I do anything wrong. Here we go. I have a problem while trying to send a PostGIS Object (actually a PGgeometry) through a RestFul service. The class ...
0
votes
0answers
292 views

java error parsing osm file with osmosis

I'm trying to use open street map's 'osmosis' tool to parse an osm file and write to a postgis database. (if it's helpful, i'm running this on ubuntu 11.10, and I have the oracle jdk 1.6 on my ...
0
votes
1answer
370 views

How do I query subset of columns from PostGIS using MyBatis?

I'm trying to query data from a PostGIS database using MyBatis, ignoring the geospatial data. I have the following table in the database: CREATE TABLE salesgeometry ( id bigint NOT NULL, label ...
3
votes
1answer
2k views

Reading points from a Geography Polygon in a PostGIS database

My goal: To read the points from a Geography Polygon stored in my PostGIS database. The PostGIS manual has a great example of how to extract a Polygon from a database. PGgeometry geom = ...
1
vote
2answers
564 views

PreparedStatement is not reading all my parameters for PostGIS Geography

I have the following JDBC code. Note that I am attempting to use PostGIS geography: PreparedStatement stmt = db.prepareStatement("INSERT INTO " + "source_imagery (image_path, ...
1
vote
1answer
505 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 ...
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.
12
votes
5answers
18k 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 ...
2
votes
2answers
332 views

Use GIS to get geographic info for a single point

I am not quite sure where to start with this. I only just started looking into this in the past week, but hopefully someone can help point me in the right direction. The goal of my project is to be ...
1
vote
2answers
577 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. ...
3
votes
3answers
2k 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 ...
2
votes
2answers
1k views

Using hibernate tools to reverse engineer pojos from Postgres

I am trying to reverse engineer pojos (using hibernate tools plugin v3.2.4x in eclipse 3.4.2) from a database that I have created in Postgres but my tables are being ignored. It works if I specify ...
0
votes
2answers
958 views

Overview of how to develop LBS/GIS app in Java

I need to develop a location based extension to an existing app that will allow users to see all other users that are around them (within a fixed aerial distance). The existing app was developed using ...