将 JSON 转换为 GeoJSON
PHP中是否有任何函数或库可以将Json对象转换为Geojson对象?
Is there any function or library available in PHP to convert Json object into Geojson object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
GeoJSON 只是包含特定结构的 JSON。因此,如果您的对象具有这种结构,那么它们“是 GeoJSON”。
请参阅 http://wiki.geojson.org/Users 了解可以构建 GeoJSON 对象的库。
GeoJSON is just JSON containing a certain structure. So if your objects have this structure, they "are GeoJSON".
See http://wiki.geojson.org/Users for libraries which can build GeoJSON objects.
JSON 只是 javascript 对象表示法——它可以描述任何东西。 GeoJSON 是它的一个子集,用于描述空间数据
JSON is just javascript object notation - it can describe anything. GeoJSON is a subset of this for describing spatial data
可以将 SQL 查询转换为 GeoJSON 的 PHP 例程。表属性同时转换为JSON。
这些是 PHP 例程:
PHP PostGIS 到 GeoJSON。
PHP SQLite3 到 GeoJSON。
PHP Spatialite 到 GeoJSON。
你可以了解我的要点。
https://gist.github.com/ns-1m
PHP routines that can convert your SQL Query to GeoJSON. Table attributes are converted into JSON at the same time.
These are the PHP routines:
PHP PostGIS to GeoJSON.
PHP SQLite3 to GeoJSON.
PHP Spatialite to GeoJSON.
You can get them my gist.
https://gist.github.com/ns-1m