How to use the movingpandas.geometry_utils.azimuth function in movingpandas

To help you get started, we’ve selected a few movingpandas examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github anitagraser / movingpandas / tests / test_geometry_utils.py View on Github external
def test_azimuth_west(self):
        assert azimuth(Point(0, 0), Point(-10, 0)) == 270
github anitagraser / movingpandas / tests / test_geometry_utils.py View on Github external
def test_azimuth_east(self):
        assert azimuth(Point(0, 0), Point(1, 0)) == 90
        assert azimuth(Point(0, 0), Point(100, 0)) == 90
github anitagraser / movingpandas / tests / test_geometry_utils.py View on Github external
def test_azimuth_south(self):
        assert azimuth(Point(0, 0), Point(0, -1)) == 180
github anitagraser / movingpandas / tests / test_geometry_utils.py View on Github external
def test_azimuth_north(self):
        assert azimuth(Point(0, 0), Point(0, 1)) == 0
github anitagraser / movingpandas / tests / test_geometry_utils.py View on Github external
def test_azimuth_southwest(self):
        assert azimuth(Point(0, 0), Point(-1, -1)) == 225
github anitagraser / movingpandas / tests / test_geometry_utils.py View on Github external
def test_azimuth_northwest(self):
        assert azimuth(Point(100, 100), Point(99, 101)) == 315
github anitagraser / movingpandas / tests / test_geometry_utils.py View on Github external
def test_azimuth_northeast(self):
        assert azimuth(Point(0, 0), Point(1, 1)) == 45
github anitagraser / movingpandas / movingpandas / trajectory_aggregator.py View on Github external
def compute_angle_between_vectors(self):
        p_i = self.traj.df.iloc[self.i][self.traj.get_geom_column_name()]
        p_j = self.traj.df.iloc[self.j][self.traj.get_geom_column_name()]
        p_k = self.traj.df.iloc[self.k][self.traj.get_geom_column_name()]
        azimuth_ij = azimuth(p_i, p_j)
        azimuth_jk = azimuth(p_j, p_k)
        return angular_difference(azimuth_ij, azimuth_jk)
github anitagraser / movingpandas / movingpandas / trajectory_aggregator.py View on Github external
def compute_angle_between_vectors(self):
        p_i = self.traj.df.iloc[self.i][self.traj.get_geom_column_name()]
        p_j = self.traj.df.iloc[self.j][self.traj.get_geom_column_name()]
        p_k = self.traj.df.iloc[self.k][self.traj.get_geom_column_name()]
        azimuth_ij = azimuth(p_i, p_j)
        azimuth_jk = azimuth(p_j, p_k)
        return angular_difference(azimuth_ij, azimuth_jk)