當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python ArcGIS GeoAccessor.from_layer用法及代碼示例


本文簡要介紹 python 語言中 arcgis.features.GeoAccessor.from_layer 的用法。

用法:

static from_layer(layer)

返回:

Pandas 的DataFrame

from_layer 方法將 FeatureLayer 導入到 Spatially Enabled DataFrame

注意:

此操作將 FeatureLayerTable 轉換為 Pandas 的 DataFrame

Parameter

Description

layer

必需的 FeatureLayer 或 TableLayer。轉換為啟用空間的 DataFrame 的服務。

用法:

>>> from arcgis.features import FeatureLayer
>>> mylayer = FeatureLayer(("https://sampleserver6.arcgisonline.com/arcgis/rest"
                    "/services/CommercialDamageAssessment/FeatureServer/0"))
>>> df = from_layer(mylayer)
>>> print(df.head())

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.features.GeoAccessor.from_layer。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。