Coordinate System API: GetBaseLibrary

"; $factory = new MgCoordinateSystemFactory(); $library = $factory->GetBaseLibrary(); $status = "Pass"; } catch ( MgException $e ) { $errorMsg = $e->GetExceptionMessage(); $status = "Fail"; } catch ( Exception $e ) { $errorMsg = $e->getMessage(); $status = "Fail"; } echo "Library:
"; echo "$library

"; echo "Status:
"; echo "$status

"; if($errorMsg != "") { echo "Error:
"; echo $errorMsg; } ?>