本文简要介绍 python 语言中 arcgis.features.FeatureCollection.from_featureset
的用法。
用法:
static from_featureset(fset, symbol=None, name=None)
返回:
FeatureCollection
对象。
从
FeatureSet
对象创建FeatureCollection
对象。Parameter
Description
fset
必需的
FeatureSet
对象。symbol
可选字典。将您的符号指定为字典。点的符号可以从Esri Symbol Page中选择
如果未指定,将创建一个默认符号。
name
可选字符串。特征集合的名称。当要素集合保存在 WebMap 上时使用此函数。如果未提供任何名称,则会生成随机名称。 (1.6.1 新增)
例子:
# Usage Example >>> feat_set = feature_layer.query(where="OBJECTID=1") >>> feat_collect = FeatureCollection.from_featureset(feat_set) >>> type(feat_collect) "acrgis.features.FeatureCollection"
相关用法
- Python ArcGIS FeatureLayerCollection.extract_changes用法及代码示例
- Python ArcGIS FeatureLayer.manager用法及代码示例
- Python ArcGIS FeatureLayer.delete_features用法及代码示例
- Python ArcGIS FeatureLayer.fromitem用法及代码示例
- Python ArcGIS Feature.geometry用法及代码示例
- Python ArcGIS FeatureLayer.query_related_records用法及代码示例
- Python ArcGIS FeatureLayer用法及代码示例
- Python ArcGIS FeatureLayer.query_date_bins用法及代码示例
- Python ArcGIS FeatureLayer.get_unique_values用法及代码示例
- Python ArcGIS FeatureLayer.generate_renderer用法及代码示例
- Python ArcGIS FeatureLayer.append用法及代码示例
- Python ArcGIS FeatureLayer.calculate用法及代码示例
- Python ArcGIS Feature.set_value用法及代码示例
- Python ArcGIS FeatureLayer.edit_features用法及代码示例
- Python ArcGIS Feature用法及代码示例
- Python ArcGIS Feature.attributes用法及代码示例
- Python ArcGIS FeatureSet.save用法及代码示例
- Python ArcGIS FeatureLayer.query用法及代码示例
- Python ArcGIS Feed.metrics用法及代码示例
- Python ArcGIS FeedsManager.get用法及代码示例
- Python ArcGIS FeedsManager.create用法及代码示例
- Python ArcGIS FeedsManager.items用法及代码示例
- Python ArcGIS Feed.start用法及代码示例
- Python ArcGIS Feed.stop用法及代码示例
- Python ArcGIS Feed.status用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.features.FeatureCollection.from_featureset。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。