Skip to content

Commit

Permalink
Create sbdr_tester_shapefile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
unaschneck committed Feb 21, 2024
1 parent b55d9f5 commit 1bc2368
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pydar/sbdr_tester_shapefile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import astropy
import math
import spherical_geometry


lat1 = 10;
lon1 = 13;
az1 = 12;
lat2 = 0;
lon2 = 20;
az2 = -23;

A = spherical_geometry.great_circle_arc(lat1,lon1,az1,lat2,lon2,az2).intersection
print(A)

0 comments on commit 1bc2368

Please sign in to comment.