「Gis:feature-get-entities」の版間の差分
(ページの作成:「{{BCAD_LISP_GIS}} ; 構文 : (gis:feature-get-entities ''featureId'' ) ; 機能 : featureId で指定した 'GIS フィーチャー' オブジェクトのエンティティを返す。 ; 引数 :* featureId:エンティティを問い合わせる「GISフィーチャ」の「ハンドル」識別子の整数。 ; 戻り値 : 成功なら ename、そのほかは nil ; サンプル <pre class="brush: autolisp;"> (vl-load-gis) T (setq layers (gis:get-layers…」) |
(相違点なし)
|
2025年4月18日 (金) 07:44時点における最新版
BricsCADのLISP - Civil-GIS関数 - AutoLISP Home - AutoLISP 目次 - CAD&CGブログ - オンラインショップ- GizmoTools ヘルプセンター
- 構文
- (gis:feature-get-entities featureId )
- 機能
- featureId で指定した 'GIS フィーチャー' オブジェクトのエンティティを返す。
- 引数
-
- featureId:エンティティを問い合わせる「GISフィーチャ」の「ハンドル」識別子の整数。
- 戻り値
- 成功なら ename、そのほかは nil
- サンプル
(vl-load-gis)
T
(setq layers (gis:get-layers))
("shp_3857_point_2d_utf8")
(setq name (car layers))
"shp_3857_point_2d_utf8"
(setq layerId (gis:get-layer name))
1736983018068
(setq features (gis:layer-get-features layerId))
(1685094904232 1685094904233)
(setq featureId (car features))
1685094904232
(gis:feature-get-entities featureId)
(<Entity name: 5616ae40>)
関連事項