Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 958 Bytes

File metadata and controls

50 lines (43 loc) · 958 Bytes

IsGeoreferenced

Description

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

FUNCTION IsGeoreferenced(hLayer : HANDLE): BOOLEAN;
def vs.IsGeoreferenced(hLayer):
    return BOOLEAN

Parameters

Name Type Description
hLayer HANDLE Pass NIL for Vectorscript and None for Python if you want to manage the document.

Examples

VectorScript

PROCEDURE Test;
var
isGeoref: BOOLEAN;
BEGIN
RemoveGeoref(NIL);
isGeoref := IsGeoreferenced(NIL);
if (isGeoref) then 
	AlrtDialog('The file is georeferenced.')
else
	AlrtDialog('The file is not georeferenced.');
end;
run(Test);

Python

vs.RemoveGeoref(None)
isGeoref	= vs.IsGeoreferenced(None)
if isGeoref:
	vs.AlrtDialog('The file is georeferenced.')
else:
	vs.AlrtDialog('The file is not georeferenced.')

Version

Availability: from Vectorworks 2012

Category