| EditGeorefWithUI | GIS Vectorworks 2012 |
VectorScript Declaration:
FUNCTION EditGeorefWithUI
( hLayer:HANDLE ) :BOOLEAN ; Python:
return BOOLEAN
def vs.EditGeorefWithUI(hLayer): 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:
return (BOOLEAN, outCoord)
def vs.GeogCoordToVW(inLat, inLon): Description:
Get point in Vectorworks coordinates.
| GetAngleToNorth | GIS Vectorworks 2012 |
VectorScript Declaration:
FUNCTION GetAngleToNorth
:REAL ; Python:
return REAL
def vs.GetAngleToNorth(): Description:
Get angle to north.
| GetGISOrigin | GIS Vectorworks 2012 |
VectorScript Declaration:
FUNCTION GetGISOrigin
( VAR outLat :REAL; VAR outLon :REAL; VAR outAngleToNorth :REAL ) :BOOLEAN ; Python:
return (BOOLEAN, outLat, outLon, outAngleToNorth)
def vs.GetGISOrigin(): Description:
Get geographical origin.
| GetProjectionLocName | GIS Vectorworks 2014 |
VectorScript Declaration:
FUNCTION GetProjectionLocName
( hLayer :HANDLE; VAR outProj :DYNARRAY[] of CHAR ) :BOOLEAN ; Python:
return (BOOLEAN, outProj)
def vs.GetProjectionLocName(hLayer): 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:
return (BOOLEAN, outProj4)
def vs.GetProjectionProj4(hLayer, esriStyle): Description:
Get the projection information in Proj4 format.
| GetProjectionWKT | GIS Vectorworks 2014 |
VectorScript Declaration:
FUNCTION GetProjectionWKT
( hLayer :HANDLE; esriStyle :BOOLEAN; VAR outWKT :DYNARRAY[] of CHAR ) :BOOLEAN ; Python:
return (BOOLEAN, outWKT)
def vs.GetProjectionWKT(hLayer, esriStyle): Description:
Get the projection information in Well Known Text (WKT) format..
| IsGeoreferenced | GIS Vectorworks 2012 |
VectorScript Declaration:
FUNCTION IsGeoreferenced
( hLayer:HANDLE ) :BOOLEAN ; Python:
return BOOLEAN
def vs.IsGeoreferenced(hLayer): Description:
Check if the layer is georeferenced. Pass NIL to check the document.
| LegacyShapefileExp | GIS Vectorworks 2012 |
VectorScript Declaration:
PROCEDURE LegacyShapefileExp
; Python:
return None
def vs.LegacyShapefileExp(): Description:
Use the old UI to export shape files.
| LegacyShapefileImp | GIS Vectorworks 2012 |
VectorScript Declaration:
PROCEDURE LegacyShapefileImp
; Python:
return None
def vs.LegacyShapefileImp(): Description:
Use the old UI to export import files.
| SetGISLayer | GIS Vectorworks 2012 |
VectorScript Declaration:
FUNCTION SetGISLayer
( hLayer:HANDLE ) :BOOLEAN ; Python:
return BOOLEAN
def vs.SetGISLayer(hLayer): Description:
Set layer context.
| VWCoordToGeog | GIS Vectorworks 2012 |
VectorScript Declaration:
FUNCTION VWCoordToGeog
( inCoordX :REAL; inCoordY :REAL; VAR outLat :REAL; VAR outLon :REAL ) :BOOLEAN ; Python:
return (BOOLEAN, outLat, outLon)
def vs.VWCoordToGeog(inCoordX, inCoordY): Description:
Get geographical coordinates of a point(latitude and longitude).