Example #1
0
    def get_location_by_id(self, memid: str) -> "LocationNode":
        """Given memory ID, retrieve LocationNode

        Args:
            memid (string): Memory ID
        """
        return LocationNode(self, memid)
Example #2
0
    def add_location(self, xyz: XYZ) -> str:
        """Create a new LocationNode

        Args:
            xyz (tuple): XYZ coordinates
        """
        return LocationNode.create(self, xyz)
Example #3
0
 def get_location_by_id(self, memid: str) -> "LocationNode":
     return LocationNode(self, memid)
Example #4
0
 def add_location(self, xyz: XYZ) -> str:
     return LocationNode.create(self, xyz)