使用Java和PostGis的全国A级风景区数据入库实战
import org.postgis.Geometry;
import org.postgis.Point;
import org.apache.commons.lang3.StringUtils;
// 假设以下方法用于将GeoJSON格式的点坐标转换为PostGIS的Geometry对象
public Geometry convertGeoJsonPointToPostGisGeometry(String geoJsonPoint) {
if (StringUtils.isBlank(geoJsonPoint)) {
return null;
}
String[] coordinates = geoJsonPoint.substring(6, geoJsonPoint.length() - 1).split(",");
double x = Double.parseDouble(coordinates[0]);
double y = Double.parseDouble(coordinates[1]);
Point point = new Point(x, y);
return point;
}
// 示例使用
public void insertAClassParkData(String name, String geoJsonPoint) {
Geometry geometry = convertGeoJsonPointToPostGisGeometry(geoJsonPoint);
if (geometry != null) {
// 以下代码假设是用于执行数据库插入操作的,具体实现依赖于实际的数据库连接和SQL模板
// 例如使用JDBC或者ORM框架如Hibernate/Spring Data JPA
// String sql = "INSERT INTO a_class_parks (name, location) VALUES (?, ST_GeomFromText(?, 4326));";
// PreparedStatement statement = connection.prepareStatement(sql);
// statement.setString(1, name);
// statement.setString(2, geometry.toString());
// statement.executeUpdate();
// 注意:上述代码未处理异常和数据库资源关闭,实际应用中应该添加相关处理逻辑
}
}
这个代码实例展示了如何将GeoJSON格式的点坐标转换为PostGIS的Geometry对象,并将转换后的坐标和其他相关数据一起插入到数据库中。注意,实际数据库操作需要配合相应的JDBC操作或ORM框架实现。
评论已关闭