- 开始使用
- MEASUREMENT
- COORDINATE MUTATION
- TRANSFORMATION
- FEATURE CONVERSION
- MISC
- HELPER
- RANDOM
- DATA
- INTERPOLATION
- JOINS
- GRIDS
- CLASSIFICATION
- AGGREGATION
- META
- ASSERTIONS
- BOOLEANS
- UNIT CONVERSION
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
六边形网格
Takes a bounding box and the diameter of the cell and returns a FeatureCollection of flat-topped hexagons or triangles ( Polygon features) aligned in an "odd-q" vertical grid as described in Hexagonal Grids.
获取一个边界框和单元格的直径,并返回一个FeatureCollection
平顶六边形或三角形(多边形特征)对齐在一个“odd-q”垂直网格中描述的六边形网格。
参数
参数 | 类型 | 描述 |
---|---|---|
bbox | BBox | extent 以 minX, minY, maxX, maxY 的顺序表示 |
cellSide | number | length of the side of the the hexagons or triangles, in units. It will also coincide with the radius of the circumcircle of the hexagons. |
options | Object | 可选参数:见下文 |
options选项
属性 | 类型 | 默认值 | 描述 |
---|---|---|---|
units | string | kilometers | used in calculating cell size, can be degrees, radians, miles, or kilometers |
properties | Object | {} | passed to each hexagon or triangle of the grid |
mask | (Feature <(Polygon|MultiPolygon)>) | if passed a Polygon or MultiPolygon, the grid Points will be created only inside it | |
triangles | boolean | false | whether to return as triangles instead of hexagons |
返回
FeatureCollection <Polygon> - a hexagonal grid
示例
var bbox = [-96,31,-84,40];
var cellSide = 50;
var options = {units: 'miles'};
var hexgrid = turf.hexGrid(bbox, cellSide, options);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论