Coordinate System API: GetBaseLibrary
";
$factory = new MgCoordinateSystemFactory();
$library = $factory->GetBaseLibrary();
$status = "Pass";
}
catch ( MgException $e )
{
$errorMsg = $e->GetMessage();
$status = "Fail";
}
catch ( Exception $e )
{
$errorMsg = $e->getMessage();
$status = "Fail";
}
echo "Library:
";
echo "$library
";
echo "Status:
";
echo "$status
";
if($errorMsg != "")
{
echo "Error:
";
echo $errorMsg;
}
?>