博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
基于 geojson数据类型面转线Transforms Polygons and MultiPolygons to LineStrings.
阅读量:4980 次
发布时间:2019-06-12

本文共 1418 字,大约阅读时间需要 4 分钟。

function flatten(array) {        return [].concat.apply([], array);    }    function polygonToLineString(coordinates, properties) {        return coordinates.map(function(coordinates) {            return turf.lineString(coordinates, properties);        });    }    function multiPolygonToLineString(coordinates, properties) {        return flatten(coordinates.map(function(coordinates) {            return polygonToLineString(coordinates, properties);        }));    }    function toLineString(feature) {        var geometry = feature.geometry,            properties = feature.properties;        switch (geometry.type) {            case 'Polygon':                return polygonToLineString(geometry.coordinates, properties);            case 'MultiPolygon':                return multiPolygonToLineString(geometry.coordinates, properties);            default:                return feature;        }    }    /**     * Transforms Polygons and MultiPolygons to LineStrings.     *     * @module turf/polygonToLine     * @category transformation     * @param {Object} geojson any GeoJSON object     * @returns {Object} FeatureCollection where     * Polygons and MultiPolygons transformed to LineStrings.     */    function polygon2line(geojson) {        var features = geojson.features.map(toLineString);        return turf.featureCollection(flatten(features));    }

  

转载于:https://www.cnblogs.com/hillgisman/p/6178541.html

你可能感兴趣的文章
前端利器躬行记(6)——Fiddler
查看>>
Intellij Idea新建web项目(转)
查看>>
用JAVA编写浏览器内核之实现javascript的document对象与内置方法
查看>>
centos iptables
查看>>
寻找二叉查找树中比指定值小的所有节点中最大的那个节点
查看>>
如何设置输入框达到只读效果
查看>>
RT3070 USB WIFI 在连接socket编程过程中问题总结
查看>>
MIS外汇平台荣获“2013年全球最佳STP外汇交易商”
查看>>
LeetCode 题解之Add Digits
查看>>
hdu1502 , Regular Words, dp,高精度加法
查看>>
SpringBoot在idea中的热部署配置
查看>>
MyEclipse连接SQL Server 2008数据库的操作方法
查看>>
JS验证图片格式和大小并预览
查看>>
laravel5.2 移植到新服务器上除了“/”路由 ,其它路由对应的页面显示报404错误(Object not found!)———新装的LAMP没有加载Rewrite模块...
查看>>
编写高质量代码--改善python程序的建议(六)
查看>>
windows xp 中的administrator帐户不在用户登录内怎么解决?
查看>>
接口和抽象类有什么区别
查看>>
Codeforces Round #206 (Div. 2)
查看>>
**p
查看>>
优先队列详解
查看>>