Tagged Questions
1
vote
1answer
27 views
How to calculate smallcircle on sphere
I use this python code to calculate a greatcircle:
https://code.google.com/p/pyroms/source/browse/trunk/pyroms/greatcircle.py?r=39
After initializing the greatcircle I can calculate points on the ...
8
votes
1answer
158 views
Great-circle lines in Equirectangular projection
Just to check that I'm on the right track:
Are all great-circles on the sphere and in equirectangular projection (i.e. latitude, longitude pairs) either:
meridians (i.e. going pole to pole)
of the ...
3
votes
2answers
413 views
How do I find the points of intersection between a small circle and a great circle?
I only actually need to intersect a great circle arc i.e. the shortest path between two points, with a given small circle.
I found this tutorial for intersecting two great circle arcs, but ...