BindLayerToArcGISFS GIS 
Vectorworks 2023

VectorScript Declaration:

PROCEDURE   BindLayerToArcGISFS
(   inURL :STRING;
    inFeatureId :STRING;
    inRequestAll :BOOLEAN
) ;

Python:

def  vs.BindLayerToArcGISFS(inURL, inFeatureId, inRequestAll):
   return None

Description:

Associate the active design layer with the ArcGIS feature service and bring in georeferenced shapes and data. The parameter inRequestAll specifies the extent of the requested features. If inRequestAll = FALSE it will request features overlapping the view region otherwise it will request all features on the feature layer.

説明

アクティブなデザインレイヤをArcGISフィーチャサービスと関連付け、ジオリファレンス付きの図形とデータを取り込みます。RequestAllのパラメータは、要求するフィーチャの範囲を指定します。RequestAllがFALSEの場合、表示領域にオーバーラップするフィーチャを要求し、それ以外の場合はフィーチャ レイヤー上のすべてのフィーチャを要求します。



  BindLayerToWFSFS GIS 
Vectorworks 2023

VectorScript Declaration:

PROCEDURE   BindLayerToWFSFS
(   inURL :STRING;
    inFeatureName :STRING;
    inRequestAll :BOOLEAN
) ;

Python:

def  vs.BindLayerToWFSFS(inURL, inFeatureName, inRequestAll):
   return None

Description:

Associate the active design layer with the WFS feature service and bring in georeferenced shapes and data. The parameter inRequestAll specifies the extent of the requested features. If inRequestAll = FALSE it will request features overlapping the view region otherwise it will request all features on the feature layer.

説明

アクティブなデザインレイヤをWFSフィーチャサービスに関連付け、ジオリファレンス付きの図形とデータを取り込みます。RequestAllのパラメータは、要求するフィーチャの範囲を指定します。RequestAllがFALSEの場合は、表示領域にオーバーラップするフィーチャを要求し、それ以外の場合は、フィーチャ レイヤー上のすべてのフィーチャを要求します。



  EditGeorefWithUI GIS 
Vectorworks 2012

VectorScript Declaration:

FUNCTION   EditGeorefWithUI
( hLayer:HANDLE ) :BOOLEAN ;

Python:

def  vs.EditGeorefWithUI(hLayer):
   return BOOLEAN

Description:

Edit the georeferenced settings of the specified layer. Pass NIL to edit the document.

説明

指定されたレイヤのジオリファレンス設定を編集します。



  GeogCoordToVW GIS 
Vectorworks 2012

VectorScript Declaration:

FUNCTION   GeogCoordToVW
(   inLat :REAL;
    inLon :REAL;
  VAR  outCoordX :REAL;
  VAR  outCoordY :REAL
) :BOOLEAN ;

Python:

def  vs.GeogCoordToVW(inLat, inLon):
   return (BOOLEAN, outCoord)

Description:

Get point in Vectorworks coordinates.

説明

Vectorworks上の座標系の点を取得します。



  GeogCoordToVWN GIS 
Vectorworks 2020

VectorScript Declaration:

FUNCTION   GeogCoordToVWN
(   inLat :REAL;
    inLon :REAL;
  VAR  outCoordX :REAL;
  VAR  outCoordY :REAL
) :BOOLEAN ;

Python:

def  vs.GeogCoordToVWN(inLat, inLon):
   return (BOOLEAN, outCoord)

Description:

Get point in Vectorworks coordinates getting it from the docuemnt if the current layer is not georeferenced.

説明

現在のレイヤがジオリファレンス設定されていなければ、ファイルから取得したVectorworks座標の座標点を返します。



  GetAngleToNorth GIS 
Vectorworks 2012

VectorScript Declaration:

FUNCTION   GetAngleToNorth
:REAL ;

Python:

def  vs.GetAngleToNorth():
   return REAL

Description:

Get angle to north.

説明

北方向の角度を取得します。



  GetGISOrigin GIS 
Vectorworks 2012

VectorScript Declaration:

FUNCTION   GetGISOrigin
( VAR  outLat :REAL;
  VAR  outLon :REAL;
  VAR  outAngleToNorth :REAL
) :BOOLEAN ;

Python:

def  vs.GetGISOrigin():
   return (BOOLEAN, outLat, outLon, outAngleToNorth)

Description:

Get geographical origin.

説明

地理的原点を取得します。



  GetGISOriginN GIS 
Vectorworks 2020

VectorScript Declaration:

FUNCTION   GetGISOriginN
( VAR  outLat :REAL;
  VAR  outLon :REAL;
  VAR  outAngleToNorth :REAL
) :BOOLEAN ;

Python:

def  vs.GetGISOriginN():
   return (BOOLEAN, outLat, outLon, outAngleToNorth)

Description:

Get geographical origin getting it from the docuemnt if the current layer is not georeferenced.

説明

現在のレイヤがジオリファレンス設定されていなければ、ファイルから取得した地理的原点を返します。



  GetProjectElevation GIS 
Vectorworks 2024

VectorScript Declaration:

FUNCTION   GetProjectElevation
:REAL ;

Python:

def  vs.GetProjectElevation():
   return REAL

Description:

Get project elevation.

説明

プロジェクトの高さを取得します。



  GetProjectionLocName GIS 
Vectorworks 2014

VectorScript Declaration:

FUNCTION   GetProjectionLocName
(   hLayer :HANDLE;
  VAR  outProj :DYNARRAY[] of CHAR
) :BOOLEAN ;

Python:

def  vs.GetProjectionLocName(hLayer):
   return (BOOLEAN, outProj)

Description:

Get the projection format localized name

説明

投影方法のローカライズ名を取得します。



  GetProjectionProj4 GIS 
Vectorworks 2014

VectorScript Declaration:

FUNCTION   GetProjectionProj4
(   hLayer :HANDLE;
    esriStyle :BOOLEAN;
  VAR  outProj4 :DYNARRAY[] of CHAR
) :BOOLEAN ;

Python:

def  vs.GetProjectionProj4(hLayer, esriStyle):
   return (BOOLEAN, outProj4)

Description:

Get the projection information in Proj4 format.

説明

Proj4形式で投影の情報を得ます。



  GetProjectionWKT GIS 
Vectorworks 2014

VectorScript Declaration:

FUNCTION   GetProjectionWKT
(   hLayer :HANDLE;
    esriStyle :BOOLEAN;
  VAR  outWKT :DYNARRAY[] of CHAR
) :BOOLEAN ;

Python:

def  vs.GetProjectionWKT(hLayer, esriStyle):
   return (BOOLEAN, outWKT)

Description:

Get the projection information in Well Known Text (WKT) format..

説明

Well Known Text (WKT) 形式で投影の情報を取得します。



  GISDimStringToMM GIS 
Vectorworks 2024

VectorScript Declaration:

FUNCTION   GISDimStringToMM
(   inputStr :STRING;
    footMarkException :STRING
) :REAL ;

Python:

def  vs.GISDimStringToMM(inputStr, footMarkException):
   return REAL

Description:

Converts string value that represents dimension real to real number in millimeters.

説明

寸法を表す文字列値をミリメートル単位の実数に変換します。



  IsGeoreferenced GIS 
Vectorworks 2012

VectorScript Declaration:

FUNCTION   IsGeoreferenced
( hLayer:HANDLE ) :BOOLEAN ;

Python:

def  vs.IsGeoreferenced(hLayer):
   return BOOLEAN

Description:

Check if the layer is georeferenced. Pass NIL to check the document.

説明

レイヤがジオリファレンス設定されているかどうかをチェクします。



  LegacyShapefileExp GIS 
Vectorworks 2012

VectorScript Declaration:

PROCEDURE   LegacyShapefileExp
;

Python:

def  vs.LegacyShapefileExp():
   return None

Description:

Use the old UI to export shape files.

説明

Shapeファイルを取り出す為に、古いユーザインターフェースを使用します。



  LegacyShapefileImp GIS 
Vectorworks 2012

VectorScript Declaration:

PROCEDURE   LegacyShapefileImp
;

Python:

def  vs.LegacyShapefileImp():
   return None

Description:

Use the old UI to export import files.

説明

Shapeファイルを取り込む為に、古いユーザインターフェースを使用します。



  RemoveGeoref GIS 
Vectorworks 2023

VectorScript Declaration:

PROCEDURE   RemoveGeoref
( hLayer:HANDLE ) ;

Python:

def  vs.RemoveGeoref(hLayer):
   return None

Description:

Remove the georeferencing settings for a given layer handle, or for the document if NIL is provided.

説明

与えられたレイヤハンドルのジオリファレンス設定を削除します。



  SetDocGeoRefByUsrOrg GIS 
Vectorworks 2021

VectorScript Declaration:

PROCEDURE   SetDocGeoRefByUsrOrg
( EPSG:INTEGER ) ;

Python:

def  vs.SetDocGeoRefByUsrOrg(EPSG):
   return None

Description:

Use the current user origin and the specified coordinate system (EPSG) to calculate the adjust internal origin's latitude/longitude.

説明

現在のユーザ原点と指定した座標系(EPSG)を使用して、調節する基準原点の緯度/経度を計算します。



  SetGISLayer GIS 
Vectorworks 2012

VectorScript Declaration:

FUNCTION   SetGISLayer
( hLayer:HANDLE ) :BOOLEAN ;

Python:

def  vs.SetGISLayer(hLayer):
   return BOOLEAN

Description:

Set layer context.

説明

レイヤコンテキストを設定します。



  SetProjectElevation GIS 
Vectorworks 2024

VectorScript Declaration:

PROCEDURE   SetProjectElevation
( projElev:REAL ) ;

Python:

def  vs.SetProjectElevation(projElev):
   return None

Description:

Set project elevation.

説明

プロジェクトの高さを設定します。



  UpdateFeatureLayer GIS 
Vectorworks 2023

VectorScript Declaration:

PROCEDURE   UpdateFeatureLayer
;

Python:

def  vs.UpdateFeatureLayer():
   return None

Description:

Upload data from a Vectorworks layer to a feature service. Ensure that you have the proper permissions to modify the online data and that you are logged into the service.

説明

Vectorworksレイヤからフィーチャ サービスにデータをアップロードします。オンラインデータを修正する適切な権限があること、サービスにログインしていることを確認してください。



  UpdateLayerFromFS GIS 
Vectorworks 2023

VectorScript Declaration:

PROCEDURE   UpdateLayerFromFS
( inRequestAll:BOOLEAN ) ;

Python:

def  vs.UpdateLayerFromFS(inRequestAll):
   return None

Description:

Update a feature service bound to a layer to get the latest location information or other data. The parameter inRequestAll specifies the extent of the requested features. If inRequestAll = FALSE it will request features overlapping the view region otherwise it will request all features on the feature layer.

説明

レイヤに紐付けされたフィーチャ サービスを更新して、最新の位置情報などを取得します。inRequestAllのパラメータは、要求するフィーチャの範囲を指定します。inRequestAllがFALSE の場合、表示領域にオーバーラップするフィーチャを要求し、それ以外の場合、フィーチャ レイヤー上の全てのフィーチャを要求します。



  VWCoordToGeog GIS 
Vectorworks 2012

VectorScript Declaration:

FUNCTION   VWCoordToGeog
(   inCoordX :REAL;
    inCoordY :REAL;
  VAR  outLat :REAL;
  VAR  outLon :REAL
) :BOOLEAN ;

Python:

def  vs.VWCoordToGeog(inCoordX, inCoordY):
   return (BOOLEAN, outLat, outLon)

Description:

Get geographical coordinates of a point(latitude and longitude).

説明

緯度経度を取得します。



  VWCoordToGeogN GIS 
Vectorworks 2020

VectorScript Declaration:

FUNCTION   VWCoordToGeogN
(   inCoordX :REAL;
    inCoordY :REAL;
  VAR  outLat :REAL;
  VAR  outLon :REAL
) :BOOLEAN ;

Python:

def  vs.VWCoordToGeogN(inCoordX, inCoordY):
   return (BOOLEAN, outLat, outLon)

Description:

Get geographical coordinates of a point(latitude and longitude) getting it from the docuemnt if the current layer is not georeferenced.

説明

現在のレイヤがジオリファレンス設定されていなければ、ファイルから取得した座標点(緯度/経度)の地理的座標を返します。