Bill Gray
Bill Gray
Noted. I may be able to figure out a reasonable way to do it, but... The entire issue of orbital element formats is a _real_ hairball. Sometime yestercentury, Gareth Williams...
I _think_ the only difference is that in ncurses, `newwin()` can create an oversized window that goes off the right or bottom edge of the screen. You can't set `begx`...
Hi @ravbin - I don't see this, but I will bet you it's because we have different versions of gcc/g++. Some versions spot potential overflows that others don't; some issue...
Hi Pedro, You're right. I see that I've added a dependency here on the [`lunar`](https://github.com/Bill-Gray/lunar) library of basic astronomical functions. You have to download that, `make` and `make install` it...
You can actually just do `make` and `make install` in the `lunar` project. It'll complain about the absence of `integrat`, but that's essentially a cosmetic error (one I should fix,...
@smoe - that seems quite odd... both `watdefs.h` and `alt_az.cpp` are part of `lunar`. You should have gotten them both at the same time, in the same directory. Is it...
@toddcarnes : thanks for that. I just pushed commit f6fe059 to fix the first problem you mention. As noted in the commit comment, we eventually use `#include "get_bin.h"` a few...
Apologies for the late reply on this! Yes, `astcheck` just does a two-body (heliocentric) solution. For speed reasons, I don't expect that to change. If you want to check, say,...
Hi @Anandir , Thanks for catching this bug. Quick, temporary workaround until I post a real fix: change line 134 to read ` record_length = (int)strlen( buff);` (or you can...
Hi @mkruzynski , Try a `make astcheck` and _then_ a `make install`. I should document that better; it's a little hidden at present (you aren't the only one to have...