Closed BaptisteCecconi closed 3 years ago
Does GF_COORDINATE_SEARCH
correspond to PositionEventFinder
?
If so, it would be nice to have a lookup table to map the API methods with the web interface feature names.
Hi @BaptisteCecconi,
yes, GF_COORDINATE_SEARCH
corresponds to Position Event Finder in the WGC web interface. All other features match if you take into consideration that the prefix GF_
indicates "Event Finder" capability. Note that Target in Field of View Event Finder corresponds to GF_TARGET_IN_INSTRUMENT_FOV_SEARCH
.
Thanks @jdiazdelrio
I'll see what I can do with this. I may propose a pull request implementing GF_COORDINATE_SEARCH
if you agree.
Hi @BaptisteCecconi,
You are right I did not implement de GF_*
entry points yet, but I will be happy to add your PR.
Just for reference, here is the full list of the missing entries, as described in the docs:
This should be include in the module docs as well.
It's open to debate, but I would recommend to use the Web naming convention (I find them more clear):
from webgeocalc import PositionFinder
instead of
from webgeocalc import GFCoordinateSearch
We can always overload GFCoordinateSearch
as child of PositionFinder
(or the other way around) but it might be confusion for the end-user.
I'm open to suggestions!
Actually… I realized that I'm using OsculatingElements
naming convention instead of OrbitalElements
.
So you are right, it may be relevant to implement it as GFCoordinateSearch
and eventually overload it as PositionFinder
(to keep backward compatibility).
Hi @seignovert, do you have any plan to include the
PositionEventFinder
calculation type?