Get shared location's angle to true north

Hello, I was able to acquire the X Y Z location of the link instance with the Orchid package, but I need to access angle to true north.
Is there any way to get this info?

There is an Orchid node Location.GetProjectPosition
Please note that documents can have multiple project locations - you could get the current active ProjectLocation with a bit of python

link_docs = IN[0] if isinstance(IN[0], list) else [IN[0]]
OUT = [doc.ActiveProjectLocation for doc in link_docs]