- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://turfjs.org/
- 软件文档: http://turfjs.org/examples.html
软件介绍
======Turf 是一个 JavaScript 的模块化的 GIS 引擎,它执行地理空间与GeoJSON数据处理任务,可以在服务器或在浏览器上运行。
Node.js 示例代码:
// find all the snakes within 1 mile of a wombat var turf = require('turf'); var fs = require('fs'); var wombats = fs.readFileSync('./wombats.geojson'); var snakes = fs.readFileSync('./snakes.geojson'); var oneMileRing = turf.buffer(wombats, 1, 'miles'); var snakesNearWombats = turf.within(snakes, oneMileRing); console.log(snakesNearWombats);
安装方法:
npm install turf
Using Google App Engine
Charles Severance / O'Reilly Media / 2009-5-23 / USD 29.99
With this book, you can build exciting, scalable web applications quickly and confidently, using Google App Engine - even if you have little or no experience in programming or web development. App Eng......一起来看看 《Using Google App Engine》 这本书的介绍吧!