- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在实现轨迹点的插值。所以,基本上,我需要沿着从起点到终点的方位角创建几个点。问题是,我无法将创建的点添加到集合中:
SimpleFeatureType featureType = featureSource.getSchema();
GeometryFactory geometryFactory = JTSFactoryFinder.getGeometryFactory(null);
SimpleFeatureBuilder featureBuilder = new SimpleFeatureBuilder(featureType);
SimpleFeatureCollection collection = featureSource.getFeatures();
/* Irrelevant code here
-----------------------
*/
Point2D newPt = setPointByAzimuth(startingPointCoords, azimuth, distance_to_next_point);
Point pointToCollection = geometryFactory.createPoint(new Coordinate(newPt.getX(), newPt.getY()));
featureBuilder.add(pointToCollection); //not quite sure what this does
SimpleFeature feature = featureBuilder.buildFeature(null);
collection.add(feature);
最佳答案
Not every implementation of SimpleFeatureCollection
is mutable .
尝试另一种方式:
new DefaultFeatureCollection
并添加您的积分; MapContent
与 addLayer
. 关于collections - GeoTools:创建一个点并将其添加到 featureCollection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9626719/
我正在实现轨迹点的插值。所以,基本上,我需要沿着从起点到终点的方位角创建几个点。问题是,我无法将创建的点添加到集合中: SimpleFeatureType featureType = featureS
我在 Python 列表中有一个功能列表(所有点)。这些功能是动态的,源于每 30 分钟更新一次的数据库数据。因此,我从来没有固定数量的特征。 我需要生成一个包含列表中所有功能的功能集合。但是(据我所
我有一个特征列表,我想创建一个 FeatureCollection 将它们分组到一个字符串中,这些特征来自不同的类型(多边形、线和点)。 它们是这样写的: { "type": "Feature",
我正在尝试使用 L.geoJSON 设置 geoJSON FeatureCollection 的样式,但我未能成功偏离默认样式。 我已经尝试了 L.geoJSON 的文档(见下文),并将样
您好,我正在尝试使用 GeoJson.Net 将来自 OSM 网络服务的响应解析为特征集合 我是 GeoJSON 的新手,无法确定如何操作: 可以找到 Json 响应 here .我写的代码是:
在我尝试在传单 map 中发布之前,我已经使用 Qgis 将 shapefile 数据导出到 geoJson,但它不起作用。 我使用的代码如下,其中 geojson 文件是“gj2.geojson”。
我有一个 RESTapi,它使用以下代码从 mongoDB 中提取数据并将其作为 JSON 数组传递到我的 Mapbox gl 应用程序: $.ajax( {
我有一个featureCollection。每个元素都有 properties,其中又包含条目 arr。 arr 要么包含 [],要么包含 ["a",.... n]。我想从 featureCollec
将 geojson FeatureCollection 转换为 es geo_shape 的正确方法是什么? 我有一个如下所示的 FeatureCollection: { "type": "Fea
在 Google Earth Engine 中,我已将 Featurecollection 作为包含几个多边形的 JSON 加载。我想向这个 FeatureCollection 添加列,它为我提供了每
我有很多多边形需要手动绘制然后获取地理坐标。我需要以 GeoJSON 格式获取绘制的多边形的坐标。 采用这种格式: "{"type":"MultiPolygon","coordinates":[[[[
我有多个 geojson 类型:存储在 Mysql 中的 FeatureCollection。我想将两个或多个 geojson 合并到一个 FeatureCollection geojson 中并显示
我正在尝试使用 polylinedecorator 传单插件,但似乎无法让它与我的 GeoJSON featureCollection 一起使用并显示在我的 map 上。 这是我的 JSFIDDLE
这是一个简单的问题,我还没有找到明确的答案。在 ST_GeomFromGeoJSON 的规范页面上,它指出: ST_GeomFromGeoJSON works only for JSON Geomet
我正在尝试处理从 here 下载的坦桑尼亚形状文件. # im -> {Image} ee.Image({...}) # self.geom_coll -> {FeatureColle
我是一名优秀的程序员,十分优秀!