Skip to content
Snippets Groups Projects
Commit aa19e881 authored by Bertrand PINEL's avatar Bertrand PINEL
Browse files

Add Web service to retrieve cities inside a given perimeter

parent d5e29c94
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,11 @@ public class Geocity implements Serializable {
@Column(name = "location")
private Point location;
@Expose
private double lat;
@Expose
private double lon;
@Column(name = "featureclass")
private String featureclass;
......@@ -269,6 +274,22 @@ public class Geocity implements Serializable {
this.location = location;
}
public double getLat() {
return lat;
}
public void setLat(double lat) {
this.lat = lat;
}
public double getLon() {
return lon;
}
public void setLon(double lon) {
this.lon = lon;
}
@Override
public boolean equals(Object o) {
if (this == o) {
......
package fr.ippon.geohipster.repository;
import fr.ippon.geohipster.domain.Geocity;
import org.geolatte.geom.Geometry;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;
import org.springframework.data.jpa.repository.*;
import java.util.List;
/**
* Spring Data JPA repository for the Geocity entity.
......@@ -12,5 +16,6 @@ import org.springframework.data.jpa.repository.*;
@SuppressWarnings("unused")
@Repository
public interface GeocityRepository extends JpaRepository<Geocity,Long> {
@Query("SELECT c FROM Geocity c WHERE dwithin(c.location, :point, :dist)=true")
public List<Geocity> findCityWithinCircle(@Param("point")Geometry point, @Param("dist")float dist);
}
......@@ -4,6 +4,8 @@ import fr.ippon.geohipster.domain.Geocity;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import java.util.List;
/**
* Service Interface for managing Geocity.
*/
......@@ -39,4 +41,14 @@ public interface GeocityService {
* @param id the id of the entity
*/
void delete(Long id);
/**
*
* @param lat : latitude for center point
* @param lon : longitude for center point
* @param radius : radius in meters for the search
* @return
*/
List<Geocity> findCitiesWithinCircle(float lat, float lon, int radius);
}
......@@ -3,6 +3,10 @@ package fr.ippon.geohipster.service.impl;
import fr.ippon.geohipster.service.GeocityService;
import fr.ippon.geohipster.domain.Geocity;
import fr.ippon.geohipster.repository.GeocityRepository;
import org.geolatte.geom.G2D;
import org.geolatte.geom.Point;
import org.geolatte.geom.Position;
import org.geolatte.geom.crs.CrsRegistry;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.domain.Page;
......@@ -10,6 +14,8 @@ import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
/**
* Service Implementation for managing Geocity.
......@@ -74,4 +80,13 @@ public class GeocityServiceImpl implements GeocityService{
log.debug("Request to delete Geocity : {}", id);
geocityRepository.delete(id);
}
@Override
public List<Geocity> findCitiesWithinCircle(float lat, float lon, int radius) {
Position g2d = new G2D(lon, lat);
Point point = new Point(g2d, CrsRegistry.getCoordinateReferenceSystemForEPSG(4326, null));
float geoRadius = radius/110.0f;
List<Geocity> cities = geocityRepository.findCityWithinCircle(point, geoRadius);
return cities; }
}
package fr.ippon.geohipster.web.rest;
import com.codahale.metrics.annotation.Timed;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import fr.ippon.geohipster.domain.Geocity;
import fr.ippon.geohipster.service.GeocityService;
import fr.ippon.geohipster.web.rest.util.HeaderUtil;
......@@ -15,6 +17,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.repository.query.Param;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
......@@ -30,6 +33,8 @@ import java.net.URISyntaxException;
import java.util.List;
import java.util.Optional;
import static org.springframework.web.bind.annotation.RequestMethod.GET;
/**
* REST controller for managing Geocity.
*/
......@@ -134,6 +139,22 @@ public class GeocityResource {
return ResponseEntity.ok().headers(HeaderUtil.createEntityDeletionAlert(ENTITY_NAME, id.toString())).build();
}
/**
*
* @param lat : Latitude for the center of the circle
* @param lon : longitude for the center of the circle
* @param radius : radius of the circle in kilometers
* @return
*/
@RequestMapping(value = "/geocities", method = GET, params = { "lat", "lon", "radius"})
@Timed
public String getGeocitiesWithinCircle(@Param("lat") float lat, @Param("lon")float lon, @Param("radius") int radius) {
Gson gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create(); // new Gson();
List<Geocity> cities = geocityService.findCitiesWithinCircle(lat, lon, radius);
return gson.toJson(cities);
}
@GetMapping("/loadGeoNamesCities")
public void loadGeoNamesCities(){
log.info("Loading GeoName file "+FRGeonamesCityFile);
......@@ -154,6 +175,9 @@ public class GeocityResource {
Position g2d = new G2D(new Double(columns[5]), new Double(columns[4]));
Point point = new Point(g2d, CrsRegistry.getCoordinateReferenceSystemForEPSG(4326, null));
geocity.setLocation(point);
// Also copy lat / lon to duplicate columns in the Database
geocity.setLat(new Double(columns[4]));
geocity.setLon(new Double(columns[5]));
geocity.setFeatureclass(columns[6]);
geocity.setFeaturetype(columns[7]);
......
......@@ -30,7 +30,12 @@
<column name="alternatenames" type="varchar(1000)">
<constraints nullable="true" />
</column>
<column name="location" type="geometry(Point, 4326)"/>
<!-- We keep lat / lng column for better visibility of data -->
<column name="lat" type="float4"/>
<column name="lon" type="float4"/>
<column name="featureclass" type="varchar(255)">
<constraints nullable="true" />
</column>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment