As a side project to my work on my own astrological application, I am mostly done cooking up a command-line tool that checks the US (or any range of longitudes and latitudes) for all angular planets within some threshold. It's still a little clumsy, since you need to pass in 1. the datetime and location for the radix, and 2. the datetime and location for the SSR (which it converts to UTC), but then it precesses the natal planets and checks all the lat/long intersections. So far, the output looks correct. Just need to figure out installers, tidy up the command line arguments, and it'll be usable. I'll probably skip the part where you input the SSR datetime and have it just find the next SSR (after a given date).
I'm planning to release this as a standalone command line program downloadable via Github, with this functionality eventually built into a larger application. I'll bundle some installers for Windows, MacOS, and Linux which will include the necessary Swiss Ephemeris files as well, and then you should be able to just run the executable, type in some info, and let 'er rip. (It's a Rust project for those who care.)
Eventually, I plan to make something graphical, similarly to how Solar Maps within Solar Fire works, but that's a long ways away.
Here's some sample output based on my recently-passed SSR:
Code: Select all
(31.99735, -102.07791): Midland, Texas, Midland County, US
Venus Longitude 0°53'
(42.05317, -124.26759): Harbor, Oregon, Curry County, US
Uranus Longitude 0°29'
Moon PrimeVerticalLongitude 1°14'
(47.96629, -116.86853): Spirit Lake, Idaho, Kootenai County, US
Mercury Longitude 1°56'
Moon RightAscension 0°-48'
I'm doing location name lookups offline via some Rust library, so the lat/long will vary a bit from what other software chooses, but this looks basically correct. The intention is to give you a place to start so you can spot-check desired nearby locations. Otherwise, it's really difficult (at least for someone like me) to figure out where, say, natal Venus would be foreground in some SSR. At least here, I'd know where to start. I'm planning to have options for only checking certain planets, so you can skip the calculations for where malefics or TNOs are foreground.