0

我正在做一个项目,我正在使用 postgres/postgis 和 asp.net 以及与谷歌地图 api v3 连接的 c#。

我的问题是我希望能够显示空间数据,例如:地图上数据库的兴趣点。

是否存在任何库可以将 postgis 转换为 .kml 之类的格式?

4

2 回答 2

2

PostGIS 的函数有一个名为as_kmldocST_AsKML的包装器,您可以尝试一下。它不是很复杂,但可以满足您的需求。

SELECT as_kmldoc(osgb_location, NAME, code) FROM wunderground_stations;
于 2013-03-09T15:47:11.670 回答
0

您可以使用 ST_AsKML,但您仍然需要使用该数据创建 KML 字符串。这是完整的函数(在 php 中),它从 mysql 数据库创建具有世界边界的 kml。

public function generateWorld() {

    $tolerance = 20000;

    $select = $this->_db->select()
        ->from ( array( 'w' => 'world_borders'),
                array ('cat', 'cntry_name', 'geom' => "ST_AsKML(transform(ST_SimplifyPreserveTopology(transform(w.the_geom, 2249), " . $tolerance . "),4326))"));
    $result = $this->_db->fetchAll($select);

    $countriesByCat = array();
    foreach ($result as $r) {
        if ($countriesByCat[$r['cat']] === null) $countriesByCat[$r['cat']] = array();
        array_push($countriesByCat[$r['cat']], $r);
    }

    $kml = '<?xml version="1.0" encoding="UTF-8"?>
        <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
        <Document>
            <name>borders</name>';

    for($i = 0; $i < count($countriesByCat); $i++) {
        $kml .= '<Placemark><name>'.$countriesByCat[$i][0]['cntry_name'].'</name>';
            if (count($countriesByCat[$i]) > 1) {
            $kml .= '<MultiGeometry>';
            foreach ($countriesByCat[$i] as $geom) {
                $kml .= $geom['geom'];
            }
            $kml .= '</MultiGeometry>';
        }
        else {
            $kml .= $countriesByCat[$i][0]['geom'];
        }

        $kml .= '</Placemark>';
    }

    $kml .= '</Document></kml>';

    echo $kml;
}
于 2013-03-09T19:27:33.553 回答