diff --git a/apidoc/html/index.html b/apidoc/html/index.html index 282066c9..47696107 100644 --- a/apidoc/html/index.html +++ b/apidoc/html/index.html @@ -437,6 +437,8 @@
NOVAS_FULL_ACCURACY
Note, that some functions will not support full accuracy calculations, unless you have provided a high-precision ephemeris provider for the major planets (and any Solar-system bodies of interest), which does not come with SuperNOVAS out of the box. In the absense of a suitable high-precision ephemeris provider, some functions might return an error if called with NOVAS_FULL_ACCURACY
.
The SuperNOVAS library is in principle capable of calculating positions to sub-microarcsecond, and velocities to mm/s, precision for all types of celestial sources. However, there are certain prerequisites and practical considerations before that level of accuracy is reached.
_Thread_local
or else the earlier GNU C >= 3.3 standard __thread
modifier. You can also set the preferred thread-local keyword for your compiler by passing it via -DTHREAD_LOCAL=...
in config.mk
to ensure that your build is thread-safe. And, if your compiler has no support whatsoever for thread_local variables, then SuperNOVAS will not be thread-safe, just as NOVAS C isn't.novas_case_sensitive(int)
to enable (or disable) case-sensitive processing of object names. (By default NOVAS object
names are converted to upper-case, making them effectively case-insensitive.)make_planet()
and make_ephem_object()
to make it simpler to configure Solar-system objects.frames.c
). A novas_frame
object uniquely defines both the place and time of observation, with a set of pre-calculated transformations and constants. Once the frame is defined it can be used very efficiently to calculate positions for multiple celestial objects with minimum additional computational cost. The frames API is also more elegant and more versatile than the low-level NOVAS C approach for performing the same kind of calculations. And, frames are inherently thread-safe since post-creation their internal state is never modified during the calculations. The following new functions were added: novas_make_frame()
, novas_change_observer()
, novas_geom_posvel()
, novas_geom_to_app()
, novas_sky_pos()
, novas_app_to_hor()
, novas_app_to_geom()
, novas_hor_to_app()
, novas_make_transform()
, novas_invert_transform()
, novas_transform_vector()
, and novas_transform_sky_pos()
.make_cat_object()
function to create a NOVAS celestial object
structure from existing cat_entry
data.enum
s as their option arguments instead of raw integers. These enums are defined in novas.h
. The same header also defines a number of useful constants. The enums allow for some compiler checking, and make for more readable code that is easier to debug. They also make it easy to see what choices are available for each function argument, without having to consult the documentation each and every time.If you want to use SuperNOVAS to calculate positions for a range of Solar-system objects, and/or to do it with sufficient precision, you will have to integrate it with a suitable provider of ephemeris data, such as JPL Horizons or the Minor Planet Center. Given the NOVAS C heritage, and some added SuperNOVAS flexibility in this area, you have several options on doing that. These are listed from the most flexible (and preferred) to the least flexible (old ways).
Possibly the most universal way to integrate ephemeris data with SuperNOVAS is to write your own novas_ephem_provider
, e.g.:
provided you compiled SuperNOVAS with BUILTIN_SOLSYS_EPHEM = 1
(in config.mk
), or else you link your code against solsys-ephem.c
explicitly. Easy-peasy.
If you only need support for major planets, you may be able to use one of the modules included in the SuperNOVAS distribution. The modules solsys1.c
and solsys2.c
provide built-in support to older JPL ephemerides (DE200 to DE421), either via the eph_manager
interface of solsys1.c
or via the FORTRAN pleph
interface with solsys2.c
.
To use the eph_manager
interface for planet 1997 JPL planet ephemeris (DE200 through DE421), you must either build superNOVAS with BUILTIN_SOLSYS1 = 1
in config.mk
, or else link your application with solsys1.c
and eph_manager.c
from SuperNOVAS explicitly. If you want eph_manager
to be your default ephemeris provider (the old way) you might also want to set DEFAULT_SOLSYS = 1
in config.mk
. Otherwise, your application should set eph_manager
as your planetary ephemeris provider at runtime via:
Note, that at any given time eph_manager
can have only one ephemeris data file opened. You cannot use it to retrieve data from multiple ephemeris input files at the same time. (But you can with the CSPICE toolkit, which you can integrate as discussed further above!)
That's all, except the warning that this method will not work with newer JPL ephemeris data, beyond DE421.
-To interface eith the JPL PLEPH library (FORTRAN) for planet ephemerides, you must either build SuperNOVAS with BUILTIN_SOLSYS2 = 1
in config.mk
, or else link your application with solsys2.c
and your appropriately modified jplint.f
(from the examples
sub-directory) explicitly, together with the JPL PLEPH library. If you want this to be your default ephemeris provider (the old way) you might also want to set DEFAULT_SOLSYS = 2
in config.mk
. Otherwise, your application should set your planetary ephemeris provider at runtime via:
Integrating JPL ephemeris data this way can be arduous. You will need to compile and link FORTRAN with C (not the end of the world), but you may also have to modify jplint.f
(providing the intermediate FORTRAN jplint_()
/ jplihp_()
interfaces to pleph_()
) to work with the version of pleph.f
that you will be using. Unless you already have code that relies on this method, you are probably better off choosing one of the other ways for integrating planetary ephemeris data with SuperNOVAS.
Finally, if none of the above is appealing, and you are fond of the old ways, you may compile SuperNOVAS with the DEFAULT_SOLSYS
option disabled (commented, removed, or else set to 0), and then link your own implementation of solarsystem()
and solarsystem_hp()
calls with your application.
For Solar-system objects other than the major planets, you may also provide your own readeph()
implementation. (In this case you will want to set DEFAULT_READEPH
in config.mk
to specify your source code for that function before building the SuperNOVAS library, or else disable that option entirely (e.g. by commenting or removing it), and link your application explicitly with your readeph()
implementation.
The downside of this approach is that your SuperNOVAS library will not be usable without invariably providing a solarsystem()
/ solarsystem_hp()
and/or readeph()
implementations for every application that you will want to use SuperNOVAS with. This is why the runtime configuration of the ephemeris provider functions is the best and most generic way to add your preferred implementations while also providing some minimum default implementations for other users of the library, who may not need your ephemeris service, or have no need for planet data beyond the approximate positions for the Earth and Sun.
A predictable release schedule and process can help manage expectations and reduce stress on adopters and developers alike.
Releases of the library shall follow a quarterly release schedule. You may expect upcoming releases to be published around February 1, May 1, August 1, and/or November 1 each year, on an as-needed basis. That means that if there are outstanding bugs, or new pull requests (PRs), you may expect a release that addresses these in the upcoming quarter. The dates are placeholders only, with no guarantee that a new release will actually be available every quarter. If nothing of note comes up, a potential release date may pass without a release being published.
diff --git a/apidoc/html/navtreedata.js b/apidoc/html/navtreedata.js index ecd2f669..e984b378 100644 --- a/apidoc/html/navtreedata.js +++ b/apidoc/html/navtreedata.js @@ -50,22 +50,24 @@ var NAVTREE = [ "Performance considerations", "index.html#autotoc_md51", null ], [ "Multi-threaded calculations", "index.html#autotoc_md52", null ] ] ], - [ "Notes on precision", "index.html#autotoc_md54", null ], - [ "SuperNOVAS specific features", "index.html#autotoc_md56", [ - [ "Newly added functionality", "index.html#autotoc_md57", [ - [ "Added in v1.1", "index.html#autotoc_md58", null ] + [ "Notes on precision", "index.html#autotoc_md54", [ + [ "Prerequisites to precise results", "index.html#autotoc_md55", null ] + ] ], + [ "SuperNOVAS specific features", "index.html#autotoc_md57", [ + [ "Newly added functionality", "index.html#autotoc_md58", [ + [ "Added in v1.1", "index.html#autotoc_md59", null ] ] ], - [ "Refinements to the NOVAS C API", "index.html#autotoc_md59", null ] + [ "Refinements to the NOVAS C API", "index.html#autotoc_md60", null ] ] ], - [ "External Solar-system ephemeris data or services", "index.html#autotoc_md61", [ - [ "1. Universal ephemeris data / service integration", "index.html#autotoc_md62", null ], - [ "2. Built-in support for (old) JPL major planet ephemerides", "index.html#autotoc_md63", [ - [ "2.1. Planets via eph_manager", "index.html#autotoc_md64", null ], - [ "2.b. Planets via JPL's pleph FORTRAN interface", "index.html#autotoc_md65", null ] + [ "External Solar-system ephemeris data or services", "index.html#autotoc_md62", [ + [ "1. Universal ephemeris data / service integration", "index.html#autotoc_md63", null ], + [ "2. Built-in support for (old) JPL major planet ephemerides", "index.html#autotoc_md64", [ + [ "2.1. Planets via eph_manager", "index.html#autotoc_md65", null ], + [ "2.b. Planets via JPL's pleph FORTRAN interface", "index.html#autotoc_md66", null ] ] ], - [ "3. Explicit linking of custom ephemeris functions", "index.html#autotoc_md66", null ] + [ "3. Explicit linking of custom ephemeris functions", "index.html#autotoc_md67", null ] ] ], - [ "Release schedule", "index.html#autotoc_md68", null ], + [ "Release schedule", "index.html#autotoc_md69", null ], [ "[Unreleased]", "md_CHANGELOG.html#autotoc_md1", [ [ "Fixed", "md_CHANGELOG.html#autotoc_md2", null ], [ "Changed", "md_CHANGELOG.html#autotoc_md3", null ] @@ -128,9 +130,9 @@ var NAVTREE = var NAVTREEINDEX = [ "annotated.html", -"novas_8c.html#aed179ad664f4ff023deb540140f3c2ef", -"novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a882f5d97444df44485d360ce298843b1", -"super_8c.html#aebad3c9b51f62cb7b31a686b5ec890a9" +"novas_8c.html#aead87744eeb3029ce7d5ffb1801ee652", +"novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a84da44f7510d8c99353b1b1c6bb4faf8", +"super_8c.html#ae68d01655c4b37b5a3e1422f0062f94c" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/apidoc/html/navtreeindex0.js b/apidoc/html/navtreeindex0.js index 0848b50c..de6f4316 100644 --- a/apidoc/html/navtreeindex0.js +++ b/apidoc/html/navtreeindex0.js @@ -117,17 +117,18 @@ var NAVTREEINDEX0 = "index.html#autotoc_md51":[5,4], "index.html#autotoc_md52":[5,5], "index.html#autotoc_md54":[6], -"index.html#autotoc_md56":[7], -"index.html#autotoc_md57":[7,0], -"index.html#autotoc_md58":[7,0,0], -"index.html#autotoc_md59":[7,1], -"index.html#autotoc_md61":[8], -"index.html#autotoc_md62":[8,0], -"index.html#autotoc_md63":[8,1], -"index.html#autotoc_md64":[8,1,0], -"index.html#autotoc_md65":[8,1,1], -"index.html#autotoc_md66":[8,2], -"index.html#autotoc_md68":[9], +"index.html#autotoc_md55":[6,0], +"index.html#autotoc_md57":[7], +"index.html#autotoc_md58":[7,0], +"index.html#autotoc_md59":[7,0,0], +"index.html#autotoc_md60":[7,1], +"index.html#autotoc_md62":[8], +"index.html#autotoc_md63":[8,0], +"index.html#autotoc_md64":[8,1], +"index.html#autotoc_md65":[8,1,0], +"index.html#autotoc_md66":[8,1,1], +"index.html#autotoc_md67":[8,2], +"index.html#autotoc_md69":[9], "md_CHANGELOG.html":[0], "md_CHANGELOG.html#autotoc_md1":[0,10], "md_CHANGELOG.html#autotoc_md10":[0,12,1], @@ -248,6 +249,5 @@ var NAVTREEINDEX0 = "novas_8c.html#ad799864f637c483fb49491bde5a93e25":[5,0,1,2,15], "novas_8c.html#add7a260017fad0d59c943a0a8d935fcf":[5,0,1,2,18], "novas_8c.html#ade8207981b6f840d1f0a79dd0c72beb2":[5,0,1,2,66], -"novas_8c.html#aea0e1028baf14d16d9de800e36a17086":[5,0,1,2,35], -"novas_8c.html#aead87744eeb3029ce7d5ffb1801ee652":[5,0,1,2,94] +"novas_8c.html#aea0e1028baf14d16d9de800e36a17086":[5,0,1,2,35] }; diff --git a/apidoc/html/navtreeindex1.js b/apidoc/html/navtreeindex1.js index 8462ed54..cb35adf1 100644 --- a/apidoc/html/navtreeindex1.js +++ b/apidoc/html/navtreeindex1.js @@ -1,5 +1,6 @@ var NAVTREEINDEX1 = { +"novas_8c.html#aead87744eeb3029ce7d5ffb1801ee652":[5,0,1,2,94], "novas_8c.html#aed179ad664f4ff023deb540140f3c2ef":[5,0,1,2,71], "novas_8c.html#aeea4b5085c7267714492fae6108fb975":[5,0,1,2,29], "novas_8c.html#aef1f8daaad470353648de90576aefc66":[5,0,1,2,24], @@ -248,6 +249,5 @@ var NAVTREEINDEX1 = "novas_8h.html#ace5e59ce1564bf6c61946c290bb05367":[5,0,0,0,84], "novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a197e40a273d8132592b60efe3f87a065":[5,0,0,0,84,0], "novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a1b1e38f90bc3bc3c9f1c04aa2c959444":[5,0,0,0,84,4], -"novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a6833dbc8bfb3b8ba2cdd7a2da0b82353":[5,0,0,0,84,1], -"novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a84da44f7510d8c99353b1b1c6bb4faf8":[5,0,0,0,84,3] +"novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a6833dbc8bfb3b8ba2cdd7a2da0b82353":[5,0,0,0,84,1] }; diff --git a/apidoc/html/navtreeindex2.js b/apidoc/html/navtreeindex2.js index 74c04c71..440d8686 100644 --- a/apidoc/html/navtreeindex2.js +++ b/apidoc/html/navtreeindex2.js @@ -1,5 +1,6 @@ var NAVTREEINDEX2 = { +"novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a84da44f7510d8c99353b1b1c6bb4faf8":[5,0,0,0,84,3], "novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a882f5d97444df44485d360ce298843b1":[5,0,0,0,84,2], "novas_8h.html#acf86ce700b3d3509ebba13e5f16a4327":[5,0,0,0,205], "novas_8h.html#ad0db0cf9077844f6f1df94a46972c8f2":[5,0,0,0,102], @@ -248,6 +249,5 @@ var NAVTREEINDEX2 = "super_8c.html#ab9b7a622486f2904615ceed1ba94cd8f":[5,0,1,10,16], "super_8c.html#acbcd90c9111cc5580a5c2bac404f7f00":[5,0,1,10,20], "super_8c.html#ad290005b13558de3927e455775b32e0f":[5,0,1,10,10], -"super_8c.html#adb48b2acaf76cc3a1e3a1412cc42c232":[5,0,1,10,25], -"super_8c.html#ae68d01655c4b37b5a3e1422f0062f94c":[5,0,1,10,9] +"super_8c.html#adb48b2acaf76cc3a1e3a1412cc42c232":[5,0,1,10,25] }; diff --git a/apidoc/html/navtreeindex3.js b/apidoc/html/navtreeindex3.js index beec8eb5..306034dc 100644 --- a/apidoc/html/navtreeindex3.js +++ b/apidoc/html/navtreeindex3.js @@ -1,5 +1,6 @@ var NAVTREEINDEX3 = { +"super_8c.html#ae68d01655c4b37b5a3e1422f0062f94c":[5,0,1,10,9], "super_8c.html#aebad3c9b51f62cb7b31a686b5ec890a9":[5,0,1,10,19], "super_8c.html#af4cce5aa6c74794a0b89176037305181":[5,0,1,10,5], "super_8c.html#af90d52a6527d9b62b8ac35d8c1ac7c6b":[5,0,1,10,1], diff --git a/apidoc/html/search/all_1.js b/apidoc/html/search/all_1.js index 1703c03e..fe8fa580 100644 --- a/apidoc/html/search/all_1.js +++ b/apidoc/html/search/all_1.js @@ -1,11 +1,11 @@ var searchData= [ - ['1_0',['1',['../index.html#autotoc_md58',1,'Added in v1.1'],['../index.html#autotoc_md35',1,'Compatibility with NOVAS C 3.1']]], + ['1_0',['1',['../index.html#autotoc_md59',1,'Added in v1.1'],['../index.html#autotoc_md35',1,'Compatibility with NOVAS C 3.1']]], ['1_200_200_202024_2003_2001_1',['[1.0.0] - 2024-03-01',['../md_CHANGELOG.html#autotoc_md12',1,'']]], ['1_200_201_202024_2005_2013_2',['[1.0.1] - 2024-05-13',['../md_CHANGELOG.html#autotoc_md8',1,'']]], ['1_201_200_202024_2008_2004_3',['[1.1.0] - 2024-08-04',['../md_CHANGELOG.html#autotoc_md4',1,'']]], ['1_20issues_4',['Fixed NOVAS C 3.1 issues',['../index.html#autotoc_md33',1,'']]], - ['1_20planets_20via_20tt_20eph_5fmanager_20tt_5',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md64',1,'']]], - ['1_20universal_20ephemeris_20data_20service_20integration_6',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md62',1,'']]], + ['1_20planets_20via_20tt_20eph_5fmanager_20tt_5',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md65',1,'']]], + ['1_20universal_20ephemeris_20data_20service_20integration_6',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md63',1,'']]], ['13_7',['[1.0.1] - 2024-05-13',['../md_CHANGELOG.html#autotoc_md8',1,'']]] ]; diff --git a/apidoc/html/search/all_10.js b/apidoc/html/search/all_10.js index 0de5b0c4..9baa645b 100644 --- a/apidoc/html/search/all_10.js +++ b/apidoc/html/search/all_10.js @@ -2,7 +2,7 @@ var searchData= [ ['m_0',['M',['../structnovas__matrix.html#ac842f2eec8c8b880e2aca8792d63359b',1,'novas_matrix']]], ['m_5fpi_1',['M_PI',['../novas_8h.html#ae71449b1cc6e6250b91f539153a7a0d3',1,'novas.h']]], - ['major_20planet_20ephemerides_2',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]], + ['major_20planet_20ephemerides_2',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]], ['make_5fairborne_5fobserver_3',['make_airborne_observer',['../super_8c.html#aa423a88cd3f434642fc89d47390184f4',1,'make_airborne_observer(const on_surface *location, const double *vel, observer *obs): super.c'],['../novas_8h.html#aa423a88cd3f434642fc89d47390184f4',1,'make_airborne_observer(const on_surface *location, const double *vel, observer *obs): super.c']]], ['make_5fcat_5fentry_4',['make_cat_entry',['../novas_8c.html#a9950f7973fc3b5d40b0d0a9f4eceddac',1,'make_cat_entry(const char *star_name, const char *catalog, long cat_num, double ra, double dec, double pm_ra, double pm_dec, double parallax, double rad_vel, cat_entry *star): novas.c'],['../novas_8h.html#a9950f7973fc3b5d40b0d0a9f4eceddac',1,'make_cat_entry(const char *star_name, const char *catalog, long cat_num, double ra, double dec, double pm_ra, double pm_dec, double parallax, double rad_vel, cat_entry *star): novas.c']]], ['make_5fcat_5fobject_5',['make_cat_object',['../super_8c.html#ab9b7a622486f2904615ceed1ba94cd8f',1,'make_cat_object(const cat_entry *star, object *source): super.c'],['../novas_8h.html#ab9b7a622486f2904615ceed1ba94cd8f',1,'make_cat_object(const cat_entry *star, object *source): super.c']]], diff --git a/apidoc/html/search/all_11.js b/apidoc/html/search/all_11.js index b1acfa44..c4ce2dfe 100644 --- a/apidoc/html/search/all_11.js +++ b/apidoc/html/search/all_11.js @@ -2,13 +2,13 @@ var searchData= [ ['name_0',['name',['../structobject.html#ae73ef5f04701dc9d4e7cb1b1c3fa9c12',1,'object']]], ['near_5fearth_1',['near_earth',['../structobserver.html#a447c33455c0da962abf8621638c994b5',1,'observer']]], - ['newly_20added_20functionality_2',['Newly added functionality',['../index.html#autotoc_md57',1,'']]], + ['newly_20added_20functionality_2',['Newly added functionality',['../index.html#autotoc_md58',1,'']]], ['norm_5fang_3',['norm_ang',['../novas_8h.html#a416fd587496210c45028352f409fd73f',1,'norm_ang(double angle): novas.c'],['../novas_8c.html#a416fd587496210c45028352f409fd73f',1,'norm_ang(double angle): novas.c']]], ['note_20on_20alternative_20methodologies_4',['Note on alternative methodologies',['../index.html#autotoc_md41',1,'']]], ['notes_20on_20precision_5',['Notes on precision',['../index.html#autotoc_md54',1,'']]], ['novas_20c_203_201_6',['Compatibility with NOVAS C 3.1',['../index.html#autotoc_md35',1,'']]], ['novas_20c_203_201_20issues_7',['Fixed NOVAS C 3.1 issues',['../index.html#autotoc_md33',1,'']]], - ['novas_20c_20api_8',['Refinements to the NOVAS C API',['../index.html#autotoc_md59',1,'']]], + ['novas_20c_20api_8',['Refinements to the NOVAS C API',['../index.html#autotoc_md60',1,'']]], ['novas_2ec_9',['novas.c',['../novas_8c.html',1,'']]], ['novas_2eh_10',['novas.h',['../novas_8h.html',1,'']]], ['novas_5faccuracy_11',['novas_accuracy',['../novas_8h.html#a3cba2735c32163fab062b1a904a83b56',1,'novas.h']]], diff --git a/apidoc/html/search/all_12.js b/apidoc/html/search/all_12.js index 3be9b28e..334b448f 100644 --- a/apidoc/html/search/all_12.js +++ b/apidoc/html/search/all_12.js @@ -12,10 +12,10 @@ var searchData= ['observing_20frame_9',['Set up the observing frame',['../index.html#autotoc_md46',1,'']]], ['observing_20location_10',['observing location',['../md_LEGACY.html#autotoc_md26',1,'B. Azimuth and elevation angles at the observing location'],['../index.html#autotoc_md48',1,'Calculate azimuth and elevation angles at the observing location']]], ['of_20contents_11',['Table of Contents',['../index.html#autotoc_md28',1,'']]], - ['of_20custom_20ephemeris_20functions_12',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md66',1,'']]], + ['of_20custom_20ephemeris_20functions_12',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md67',1,'']]], ['of_20interest_13',['of interest',['../index.html#autotoc_md43',1,'Specify the object of interest'],['../md_LEGACY.html#autotoc_md20',1,'Specify the object of interest']]], ['of_20observation_14',['of observation',['../md_LEGACY.html#autotoc_md22',1,'Specify the time of observation'],['../index.html#autotoc_md45',1,'Specify the time of observation']]], - ['old_20jpl_20major_20planet_20ephemerides_15',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]], + ['old_20jpl_20major_20planet_20ephemerides_15',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]], ['old_20way_16',['SuperNOVAS: Astrometric Positions the Old Way',['../md_LEGACY.html',1,'']]], ['omega_17',['Omega',['../structnovas__delaunay__args.html#a1b5bf6735b7465aec5c931281d240737',1,'novas_delaunay_args']]], ['on_20alternative_20methodologies_18',['Note on alternative methodologies',['../index.html#autotoc_md41',1,'']]], @@ -23,6 +23,6 @@ var searchData= ['on_20sky_20',['on sky',['../index.html#autotoc_md47',1,'Calculate an apparent place on sky'],['../md_LEGACY.html#autotoc_md24',1,'Calculate apparent positions on sky']]], ['on_5fsurf_21',['on_surf',['../structobserver.html#a0ed422bd2a08c6b3870b545e16484501',1,'observer']]], ['on_5fsurface_22',['on_surface',['../structon__surface.html',1,'']]], - ['or_20services_23',['External Solar-system ephemeris data or services',['../index.html#autotoc_md61',1,'']]], + ['or_20services_23',['External Solar-system ephemeris data or services',['../index.html#autotoc_md62',1,'']]], ['orientation_20parameters_24',['Specify Earth orientation parameters',['../md_LEGACY.html#autotoc_md23',1,'']]] ]; diff --git a/apidoc/html/search/all_13.js b/apidoc/html/search/all_13.js index c6667a14..78052b64 100644 --- a/apidoc/html/search/all_13.js +++ b/apidoc/html/search/all_13.js @@ -13,7 +13,7 @@ var searchData= ['place_5fmod_10',['place_mod',['../novas_8h.html#a3f055f3994889e3345d5267dac671a60',1,'place_mod(double jd_tt, const object *source, enum novas_accuracy accuracy, sky_pos *pos): super.c'],['../super_8c.html#a3f055f3994889e3345d5267dac671a60',1,'place_mod(double jd_tt, const object *source, enum novas_accuracy accuracy, sky_pos *pos): super.c']]], ['place_5fstar_11',['place_star',['../novas_8c.html#a078b5e764d5cf3fdca600fada992b409',1,'place_star(double jd_tt, const cat_entry *star, const observer *obs, double ut1_to_tt, enum novas_reference_system system, enum novas_accuracy accuracy, sky_pos *pos): novas.c'],['../novas_8h.html#a078b5e764d5cf3fdca600fada992b409',1,'place_star(double jd_tt, const cat_entry *star, const observer *obs, double ut1_to_tt, enum novas_reference_system system, enum novas_accuracy accuracy, sky_pos *pos): novas.c']]], ['place_5ftod_12',['place_tod',['../super_8c.html#a2c8817db8a00764da4c285b32590ccfb',1,'place_tod(double jd_tt, const object *source, enum novas_accuracy accuracy, sky_pos *pos): super.c'],['../novas_8h.html#a2c8817db8a00764da4c285b32590ccfb',1,'place_tod(double jd_tt, const object *source, enum novas_accuracy accuracy, sky_pos *pos): super.c']]], - ['planet_20ephemerides_13',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]], + ['planet_20ephemerides_13',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]], ['planet_5feph_5fmanager_14',['planet_eph_manager',['../solsys1_8c.html#a71d2bfef45818d56e359205c57db0694',1,'planet_eph_manager(double jd_tdb, enum novas_planet body, enum novas_origin origin, double *position, double *velocity): solsys1.c'],['../solarsystem_8h.html#a71d2bfef45818d56e359205c57db0694',1,'planet_eph_manager(double jd_tdb, enum novas_planet body, enum novas_origin origin, double *position, double *velocity): solsys1.c']]], ['planet_5feph_5fmanager_5fhp_15',['planet_eph_manager_hp',['../solarsystem_8h.html#acacfbde919107d0514da5c7d8508917b',1,'planet_eph_manager_hp(const double jd_tdb[2], enum novas_planet body, enum novas_origin origin, double *position, double *velocity): solsys1.c'],['../solsys1_8c.html#acacfbde919107d0514da5c7d8508917b',1,'planet_eph_manager_hp(const double jd_tdb[2], enum novas_planet body, enum novas_origin origin, double *position, double *velocity): solsys1.c']]], ['planet_5fephem_5fprovider_16',['planet_ephem_provider',['../solsys-ephem_8c.html#a61c60adf57c00d797fac94bb5841c271',1,'planet_ephem_provider(double jd_tdb, enum novas_planet body, enum novas_origin origin, double *position, double *velocity): solsys-ephem.c'],['../solarsystem_8h.html#a61c60adf57c00d797fac94bb5841c271',1,'planet_ephem_provider(double jd_tdb, enum novas_planet body, enum novas_origin origin, double *position, double *velocity): solsys-ephem.c']]], @@ -23,9 +23,9 @@ var searchData= ['planet_5fjplint_5fhp_20',['planet_jplint_hp',['../solsys2_8c.html#a399a5363ddf93d662886e6e4692d03ad',1,'planet_jplint_hp(const double jd_tdb[2], enum novas_planet body, enum novas_origin origin, double *position, double *velocity): solsys2.c'],['../solarsystem_8h.html#a399a5363ddf93d662886e6e4692d03ad',1,'planet_jplint_hp(const double jd_tdb[2], enum novas_planet body, enum novas_origin origin, double *position, double *velocity): solsys2.c']]], ['planet_5flon_21',['planet_lon',['../novas_8h.html#aacc6a0daf29b8bdc18f46647a94694d3',1,'planet_lon(double t, enum novas_planet planet): novas.c'],['../novas_8c.html#aacc6a0daf29b8bdc18f46647a94694d3',1,'planet_lon(double t, enum novas_planet planet): novas.c']]], ['planets_22',['planets',['../structnovas__frame.html#a78ace4b8a99aace5313f4011a842d199',1,'novas_frame']]], - ['planets_20via_20jpl_20s_20tt_20pleph_20tt_20fortran_20interface_23',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], - ['planets_20via_20tt_20eph_5fmanager_20tt_24',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md64',1,'']]], - ['pleph_20tt_20fortran_20interface_25',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], + ['planets_20via_20jpl_20s_20tt_20pleph_20tt_20fortran_20interface_23',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], + ['planets_20via_20tt_20eph_5fmanager_20tt_24',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md65',1,'']]], + ['pleph_20tt_20fortran_20interface_25',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], ['pole_5foffsets_5fdpsi_5fdeps_26',['POLE_OFFSETS_DPSI_DEPS',['../novas_8h.html#a70c3951615b1ecf42818c79893678543a2126557509f896a0aeb435795fe1da47',1,'novas.h']]], ['pole_5foffsets_5fx_5fy_27',['POLE_OFFSETS_X_Y',['../novas_8h.html#a70c3951615b1ecf42818c79893678543ad304f43b1bf8becb63fc4d972f8b1f77',1,'novas.h']]], ['pos_28',['pos',['../structnovas__planet__bundle.html#afa2104ef635031a82766fd018c9ee9dd',1,'novas_planet_bundle']]], @@ -34,10 +34,12 @@ var searchData= ['positions_20on_20sky_31',['Calculate apparent positions on sky',['../md_LEGACY.html#autotoc_md24',1,'']]], ['positions_20the_20old_20way_32',['SuperNOVAS: Astrometric Positions the Old Way',['../md_LEGACY.html',1,'']]], ['precession_33',['precession',['../novas_8h.html#a9178358732325399f3a5e3582080ced3',1,'precession(double jd_tdb_in, const double *in, double jd_tdb_out, double *out): novas.c'],['../novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a6833dbc8bfb3b8ba2cdd7a2da0b82353',1,'PRECESSION: novas.h'],['../structnovas__frame.html#a1768e94e9ee04287bc18b3eb6a79f36c',1,'novas_frame::precession'],['../novas_8c.html#a9178358732325399f3a5e3582080ced3',1,'precession(): novas.c']]], - ['precision_34',['Notes on precision',['../index.html#autotoc_md54',1,'']]], - ['pressure_35',['pressure',['../structon__surface.html#aee1c5d07ac79c5c036195858afe33405',1,'on_surface']]], - ['promodec_36',['promodec',['../structcat__entry.html#acf4bdbac6c1d059a4db3ed879f32f21c',1,'cat_entry']]], - ['promora_37',['promora',['../structcat__entry.html#ab9301cf1c67c13114b22950650b17789',1,'cat_entry']]], - ['proper_5fmotion_38',['proper_motion',['../novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a197e40a273d8132592b60efe3f87a065',1,'PROPER_MOTION: novas.h'],['../novas_8h.html#ade8207981b6f840d1f0a79dd0c72beb2',1,'proper_motion(double jd_tdb_in, const double *pos, const double *vel, double jd_tdb_out, double *out): novas.c'],['../novas_8c.html#ade8207981b6f840d1f0a79dd0c72beb2',1,'proper_motion(double jd_tdb_in, const double *pos, const double *vel, double jd_tdb_out, double *out): novas.c']]], - ['psi_5fcor_39',['PSI_COR',['../novas_8c.html#a103c28cd84e81dde365238ee3599f5b0',1,'novas.c']]] + ['precise_20results_34',['Prerequisites to precise results',['../index.html#autotoc_md55',1,'']]], + ['precision_35',['Notes on precision',['../index.html#autotoc_md54',1,'']]], + ['prerequisites_20to_20precise_20results_36',['Prerequisites to precise results',['../index.html#autotoc_md55',1,'']]], + ['pressure_37',['pressure',['../structon__surface.html#aee1c5d07ac79c5c036195858afe33405',1,'on_surface']]], + ['promodec_38',['promodec',['../structcat__entry.html#acf4bdbac6c1d059a4db3ed879f32f21c',1,'cat_entry']]], + ['promora_39',['promora',['../structcat__entry.html#ab9301cf1c67c13114b22950650b17789',1,'cat_entry']]], + ['proper_5fmotion_40',['proper_motion',['../novas_8h.html#ace5e59ce1564bf6c61946c290bb05367a197e40a273d8132592b60efe3f87a065',1,'PROPER_MOTION: novas.h'],['../novas_8h.html#ade8207981b6f840d1f0a79dd0c72beb2',1,'proper_motion(double jd_tdb_in, const double *pos, const double *vel, double jd_tdb_out, double *out): novas.c'],['../novas_8c.html#ade8207981b6f840d1f0a79dd0c72beb2',1,'proper_motion(double jd_tdb_in, const double *pos, const double *vel, double jd_tdb_out, double *out): novas.c']]], + ['psi_5fcor_41',['PSI_COR',['../novas_8c.html#a103c28cd84e81dde365238ee3599f5b0',1,'novas.c']]] ]; diff --git a/apidoc/html/search/all_14.js b/apidoc/html/search/all_14.js index 17762bdc..225a6309 100644 --- a/apidoc/html/search/all_14.js +++ b/apidoc/html/search/all_14.js @@ -15,13 +15,14 @@ var searchData= ['readeph_12',['readeph',['../solarsystem_8h.html#abb70fdad016c3a2ea45990eaa16b9245',1,'solarsystem.h']]], ['record_5flength_13',['RECORD_LENGTH',['../eph__manager_8c.html#a56a89d553bafe2d8c4a7e37f2997c300',1,'eph_manager.c']]], ['reduced_20accuracy_20shortcuts_14',['Reduced accuracy shortcuts',['../index.html#autotoc_md50',1,'']]], - ['refinements_20to_20the_20novas_20c_20api_15',['Refinements to the NOVAS C API',['../index.html#autotoc_md59',1,'']]], + ['refinements_20to_20the_20novas_20c_20api_15',['Refinements to the NOVAS C API',['../index.html#autotoc_md60',1,'']]], ['refract_16',['refract',['../novas_8h.html#a151b74255ea04462abc5503c6afddcae',1,'refract(const on_surface *location, enum novas_refraction_model option, double zd_obs): novas.c'],['../novas_8c.html#a151b74255ea04462abc5503c6afddcae',1,'refract(const on_surface *location, enum novas_refraction_model option, double zd_obs): novas.c']]], ['refract_2ec_17',['refract.c',['../refract_8c.html',1,'']]], ['refract_5fastro_18',['refract_astro',['../novas_8h.html#a46d245f56c6eea9b1a7dc32d3feeaeb8',1,'refract_astro(const on_surface *location, enum novas_refraction_model option, double zd_calc): novas.c'],['../novas_8c.html#aa41408d8cbbe3cfc12930414a9c79fc7',1,'refract_astro(const on_surface *location, enum novas_refraction_model option, double zd_astro): novas.c']]], ['refractionmodel_19',['RefractionModel',['../novas_8h.html#ad4899a6116cfbbe17400e7ef0c8426a9',1,'novas.h']]], ['related_20links_20',['Related links',['../index.html#autotoc_md31',1,'']]], - ['release_20schedule_21',['Release schedule',['../index.html#autotoc_md68',1,'']]], - ['rmass_22',['rmass',['../novascon_8c.html#a19a7c107c3918c90c90cdad5ab310b1a',1,'RMASS: novascon.c'],['../novascon_8h.html#a19a7c107c3918c90c90cdad5ab310b1a',1,'RMASS: novascon.c']]], - ['rv_23',['rv',['../structsky__pos.html#ad9e8b5daff39072d109a6f4f1fa61f55',1,'sky_pos']]] + ['release_20schedule_21',['Release schedule',['../index.html#autotoc_md69',1,'']]], + ['results_22',['Prerequisites to precise results',['../index.html#autotoc_md55',1,'']]], + ['rmass_23',['rmass',['../novascon_8c.html#a19a7c107c3918c90c90cdad5ab310b1a',1,'RMASS: novascon.c'],['../novascon_8h.html#a19a7c107c3918c90c90cdad5ab310b1a',1,'RMASS: novascon.c']]], + ['rv_24',['rv',['../structsky__pos.html#ad9e8b5daff39072d109a6f4f1fa61f55',1,'sky_pos']]] ]; diff --git a/apidoc/html/search/all_15.js b/apidoc/html/search/all_15.js index e8595b41..f403574f 100644 --- a/apidoc/html/search/all_15.js +++ b/apidoc/html/search/all_15.js @@ -1,11 +1,11 @@ var searchData= [ - ['s_20tt_20pleph_20tt_20fortran_20interface_0',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], + ['s_20tt_20pleph_20tt_20fortran_20interface_0',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], ['sc_5fpos_1',['sc_pos',['../structin__space.html#abc3736b39d63bfabf73a25e3b03b91d8',1,'in_space']]], ['sc_5fvel_2',['sc_vel',['../structin__space.html#a9615dabeef0c31f47546c8083b768257',1,'in_space']]], - ['schedule_3',['Release schedule',['../index.html#autotoc_md68',1,'']]], - ['service_20integration_4',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md62',1,'']]], - ['services_5',['External Solar-system ephemeris data or services',['../index.html#autotoc_md61',1,'']]], + ['schedule_3',['Release schedule',['../index.html#autotoc_md69',1,'']]], + ['service_20integration_4',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md63',1,'']]], + ['services_5',['External Solar-system ephemeris data or services',['../index.html#autotoc_md62',1,'']]], ['set_20up_20the_20observing_20frame_6',['Set up the observing frame',['../index.html#autotoc_md46',1,'']]], ['set_5fcio_5flocator_5ffile_7',['set_cio_locator_file',['../novas_8h.html#a13c40b89c2cecd6a23720d181a800591',1,'set_cio_locator_file(const char *filename): novas.c'],['../novas_8c.html#a13c40b89c2cecd6a23720d181a800591',1,'set_cio_locator_file(const char *filename): novas.c']]], ['set_5fephem_5fprovider_8',['set_ephem_provider',['../solarsystem_8h.html#a6097083c438a8d1872c2e00a66360030',1,'set_ephem_provider(novas_ephem_provider func): novas.c'],['../novas_8c.html#a6097083c438a8d1872c2e00a66360030',1,'set_ephem_provider(novas_ephem_provider func): novas.c']]], @@ -19,7 +19,7 @@ var searchData= ['size_5fof_5fobj_5fname_16',['SIZE_OF_OBJ_NAME',['../novas_8h.html#a977a43db51d544f728ea8a22b4a53783',1,'novas.h']]], ['sky_17',['sky',['../index.html#autotoc_md47',1,'Calculate an apparent place on sky'],['../md_LEGACY.html#autotoc_md24',1,'Calculate apparent positions on sky']]], ['sky_5fpos_18',['sky_pos',['../structsky__pos.html',1,'']]], - ['solar_20system_20ephemeris_20data_20or_20services_19',['External Solar-system ephemeris data or services',['../index.html#autotoc_md61',1,'']]], + ['solar_20system_20ephemeris_20data_20or_20services_19',['External Solar-system ephemeris data or services',['../index.html#autotoc_md62',1,'']]], ['solar_20system_20source_20',['solar system source',['../index.html#autotoc_md49',1,'Calculating positions for a Solar-system source'],['../md_LEGACY.html#autotoc_md27',1,'Calculating positions for a Solar-system source']]], ['solarsystem_21',['solarsystem',['../solsys-ephem_8c.html#a5e2d599b1dc7a0e87bfd29dbd6413398',1,'solarsystem(double jd_tdb, short body, short origin, double *position, double *velocity): solsys-ephem.c'],['../solsys1_8c.html#a5e2d599b1dc7a0e87bfd29dbd6413398',1,'solarsystem(double jd_tdb, short body, short origin, double *position, double *velocity): solsys1.c'],['../solsys2_8c.html#a5e2d599b1dc7a0e87bfd29dbd6413398',1,'solarsystem(double jd_tdb, short body, short origin, double *position, double *velocity): solsys2.c'],['../solsys3_8c.html#a5e2d599b1dc7a0e87bfd29dbd6413398',1,'solarsystem(double jd_tdb, short body, short origin, double *position, double *velocity): solsys3.c'],['../solarsystem_8h.html#a5e2d599b1dc7a0e87bfd29dbd6413398',1,'solarsystem(double jd_tdb, short body, short origin, double *position, double *velocity): solsys-ephem.c']]], ['solarsystem_2eh_22',['solarsystem.h',['../solarsystem_8h.html',1,'']]], @@ -29,7 +29,7 @@ var searchData= ['solsys2_2ec_26',['solsys2.c',['../solsys2_8c.html',1,'']]], ['solsys3_2ec_27',['solsys3.c',['../solsys3_8c.html',1,'']]], ['source_28',['source',['../md_LEGACY.html#autotoc_md19',1,'Calculating positions for a sidereal source'],['../index.html#autotoc_md42',1,'Calculating positions for a sidereal source'],['../index.html#autotoc_md49',1,'Calculating positions for a Solar-system source'],['../md_LEGACY.html#autotoc_md27',1,'Calculating positions for a Solar-system source']]], - ['specific_20features_29',['SuperNOVAS specific features',['../index.html#autotoc_md56',1,'']]], + ['specific_20features_29',['SuperNOVAS specific features',['../index.html#autotoc_md57',1,'']]], ['specify_20earth_20orientation_20parameters_30',['Specify Earth orientation parameters',['../md_LEGACY.html#autotoc_md23',1,'']]], ['specify_20the_20object_20of_20interest_31',['specify the object of interest',['../md_LEGACY.html#autotoc_md20',1,'Specify the object of interest'],['../index.html#autotoc_md43',1,'Specify the object of interest']]], ['specify_20the_20time_20of_20observation_32',['specify the time of observation',['../md_LEGACY.html#autotoc_md22',1,'Specify the time of observation'],['../index.html#autotoc_md45',1,'Specify the time of observation']]], @@ -47,14 +47,14 @@ var searchData= ['sun_5fvel_44',['sun_vel',['../structnovas__frame.html#ae949db92ce7c56e4b5ada1b8f80002d3',1,'novas_frame']]], ['super_2ec_45',['super.c',['../super_8c.html',1,'']]], ['supernovas_46',['supernovas',['../index.html#autotoc_md38',1,'Building your application with SuperNOVAS'],['../md_CONTRIBUTING.html',1,'Contributing to SuperNOVAS'],['../index.html',1,'SuperNOVAS']]], - ['supernovas_20specific_20features_47',['SuperNOVAS specific features',['../index.html#autotoc_md56',1,'']]], + ['supernovas_20specific_20features_47',['SuperNOVAS specific features',['../index.html#autotoc_md57',1,'']]], ['supernovas_3a_20astrometric_20positions_20the_20old_20way_48',['SuperNOVAS: Astrometric Positions the Old Way',['../md_LEGACY.html',1,'']]], ['supernovas_5fmajor_5fversion_49',['SUPERNOVAS_MAJOR_VERSION',['../novas_8h.html#a5ab52d5db18c081b6313ed8b1993ebb7',1,'novas.h']]], ['supernovas_5fminor_5fversion_50',['SUPERNOVAS_MINOR_VERSION',['../novas_8h.html#aaed93e356acfc0d15d0f64ae0793b4f0',1,'novas.h']]], ['supernovas_5fpatchlevel_51',['SUPERNOVAS_PATCHLEVEL',['../novas_8h.html#a9b926427954233b94ebd6925d86f9f81',1,'novas.h']]], ['supernovas_5frelease_5fstring_52',['SUPERNOVAS_RELEASE_STRING',['../novas_8h.html#aadef42ba39811e058ee9efe2c6f7d151',1,'novas.h']]], ['supernovas_5fversion_5fstring_53',['SUPERNOVAS_VERSION_STRING',['../novas_8h.html#a44de9d1672290d153a1dfb0685886208',1,'novas.h']]], - ['support_20for_20old_20jpl_20major_20planet_20ephemerides_54',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]], - ['system_20ephemeris_20data_20or_20services_55',['External Solar-system ephemeris data or services',['../index.html#autotoc_md61',1,'']]], + ['support_20for_20old_20jpl_20major_20planet_20ephemerides_54',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]], + ['system_20ephemeris_20data_20or_20services_55',['External Solar-system ephemeris data or services',['../index.html#autotoc_md62',1,'']]], ['system_20source_56',['system source',['../md_LEGACY.html#autotoc_md27',1,'Calculating positions for a Solar-system source'],['../index.html#autotoc_md49',1,'Calculating positions for a Solar-system source']]] ]; diff --git a/apidoc/html/search/all_16.js b/apidoc/html/search/all_16.js index c1fafb3e..e1316c89 100644 --- a/apidoc/html/search/all_16.js +++ b/apidoc/html/search/all_16.js @@ -1,38 +1,39 @@ var searchData= [ - ['t0_0',['t0',['../novascon_8h.html#a179a958e126d46c9b952672120986924',1,'T0: novascon.c'],['../novascon_8c.html#a179a958e126d46c9b952672120986924',1,'T0: novascon.c']]], + ['t0_0',['t0',['../novascon_8c.html#a179a958e126d46c9b952672120986924',1,'T0: novascon.c'],['../novascon_8h.html#a179a958e126d46c9b952672120986924',1,'T0: novascon.c']]], ['table_20of_20contents_1',['Table of Contents',['../index.html#autotoc_md28',1,'']]], - ['tdb2tt_2',['tdb2tt',['../novas_8h.html#a45b1a5d3cf875521f3176bc301633d79',1,'tdb2tt(double jd_tdb, double *jd_tt, double *secdiff): novas.c'],['../novas_8c.html#a45b1a5d3cf875521f3176bc301633d79',1,'tdb2tt(double jd_tdb, double *jd_tt, double *secdiff): novas.c']]], + ['tdb2tt_2',['tdb2tt',['../novas_8c.html#a45b1a5d3cf875521f3176bc301633d79',1,'tdb2tt(double jd_tdb, double *jd_tt, double *secdiff): novas.c'],['../novas_8h.html#a45b1a5d3cf875521f3176bc301633d79',1,'tdb2tt(double jd_tdb, double *jd_tt, double *secdiff): novas.c']]], ['temperature_3',['temperature',['../structon__surface.html#ab4b11c8d9c758430960896bc3fe82ead',1,'on_surface']]], ['ter2cel_4',['ter2cel',['../novas_8c.html#a6b662ff99b35db19c9b6b24a1ae9264f',1,'ter2cel(double jd_ut1_high, double jd_ut1_low, double ut1_to_tt, enum novas_earth_rotation_measure erot, enum novas_accuracy accuracy, enum novas_equatorial_class class, double xp, double yp, const double *in, double *out): novas.c'],['../novas_8h.html#a6b662ff99b35db19c9b6b24a1ae9264f',1,'ter2cel(double jd_ut1_high, double jd_ut1_low, double ut1_to_tt, enum novas_earth_rotation_measure erot, enum novas_accuracy accuracy, enum novas_equatorial_class class, double xp, double yp, const double *in, double *out): novas.c']]], ['terra_5',['terra',['../novas_8c.html#aa111f8d21d960677fb91139adc96ff17',1,'terra(const on_surface *location, double lst, double *pos, double *vel): novas.c'],['../novas_8h.html#aa111f8d21d960677fb91139adc96ff17',1,'terra(const on_surface *location, double lst, double *pos, double *vel): novas.c']]], - ['the_20novas_20c_20api_6',['Refinements to the NOVAS C API',['../index.html#autotoc_md59',1,'']]], + ['the_20novas_20c_20api_6',['Refinements to the NOVAS C API',['../index.html#autotoc_md60',1,'']]], ['the_20object_20of_20interest_7',['the object of interest',['../index.html#autotoc_md43',1,'Specify the object of interest'],['../md_LEGACY.html#autotoc_md20',1,'Specify the object of interest']]], - ['the_20observer_20location_8',['the observer location',['../md_LEGACY.html#autotoc_md21',1,'Spefify the observer location'],['../index.html#autotoc_md44',1,'Spefify the observer location']]], + ['the_20observer_20location_8',['the observer location',['../index.html#autotoc_md44',1,'Spefify the observer location'],['../md_LEGACY.html#autotoc_md21',1,'Spefify the observer location']]], ['the_20observing_20frame_9',['Set up the observing frame',['../index.html#autotoc_md46',1,'']]], ['the_20observing_20location_10',['the observing location',['../md_LEGACY.html#autotoc_md26',1,'B. Azimuth and elevation angles at the observing location'],['../index.html#autotoc_md48',1,'Calculate azimuth and elevation angles at the observing location']]], ['the_20old_20way_11',['SuperNOVAS: Astrometric Positions the Old Way',['../md_LEGACY.html',1,'']]], - ['the_20time_20of_20observation_12',['the time of observation',['../md_LEGACY.html#autotoc_md22',1,'Specify the time of observation'],['../index.html#autotoc_md45',1,'Specify the time of observation']]], + ['the_20time_20of_20observation_12',['the time of observation',['../index.html#autotoc_md45',1,'Specify the time of observation'],['../md_LEGACY.html#autotoc_md22',1,'Specify the time of observation']]], ['threaded_20calculations_13',['Multi-threaded calculations',['../index.html#autotoc_md52',1,'']]], ['time_14',['time',['../structnovas__frame.html#a430880330b471a12c587f77d1c73b49a',1,'novas_frame']]], - ['time_20of_20observation_15',['time of observation',['../md_LEGACY.html#autotoc_md22',1,'Specify the time of observation'],['../index.html#autotoc_md45',1,'Specify the time of observation']]], + ['time_20of_20observation_15',['time of observation',['../index.html#autotoc_md45',1,'Specify the time of observation'],['../md_LEGACY.html#autotoc_md22',1,'Specify the time of observation']]], ['timescale_2ec_16',['timescale.c',['../timescale_8c.html',1,'']]], - ['to_20supernovas_17',['Contributing to SuperNOVAS',['../md_CONTRIBUTING.html',1,'']]], - ['to_20the_20novas_20c_20api_18',['Refinements to the NOVAS C API',['../index.html#autotoc_md59',1,'']]], - ['to_5fsystem_19',['to_system',['../structnovas__transform.html#a8dac6a5c4bdc0e667bdc9eb7c7bb7094',1,'novas_transform']]], - ['tobl_20',['tobl',['../structnovas__frame.html#ad68cbc6741fea66373829a8f50307c8e',1,'novas_frame']]], - ['tod_5fto_5fcirs_21',['tod_to_cirs',['../novas_8h.html#adb48b2acaf76cc3a1e3a1412cc42c232',1,'tod_to_cirs(double jd_tt, enum novas_accuracy accuracy, const double *in, double *out): super.c'],['../super_8c.html#adb48b2acaf76cc3a1e3a1412cc42c232',1,'tod_to_cirs(double jd_tt, enum novas_accuracy accuracy, const double *in, double *out): super.c']]], - ['tod_5fto_5fitrs_22',['tod_to_itrs',['../novas_8h.html#a4551e2ac083e34c1b2b61b3805efb9a3',1,'tod_to_itrs(double jd_tt_high, double jd_tt_low, double ut1_to_tt, enum novas_accuracy accuracy, double xp, double yp, const double *in, double *out): super.c'],['../super_8c.html#a4551e2ac083e34c1b2b61b3805efb9a3',1,'tod_to_itrs(double jd_tt_high, double jd_tt_low, double ut1_to_tt, enum novas_accuracy accuracy, double xp, double yp, const double *in, double *out): super.c']]], - ['tod_5fto_5fj2000_23',['tod_to_j2000',['../novas_8h.html#a111fc0f74e2b2f066617d7e61af15e3d',1,'tod_to_j2000(double jd_tt, enum novas_accuracy accuracy, const double *in, double *out): novas.c'],['../novas_8c.html#a6205edb1361e56cc0c7aed0f088f7437',1,'tod_to_j2000(double jd_tdb, enum novas_accuracy accuracy, const double *in, double *out): novas.c']]], - ['topo_5fplanet_24',['topo_planet',['../novas_8h.html#a48cf19bbddaeeb698bb921575b15e23e',1,'topo_planet(double jd_tt, const object *ss_body, double ut1_to_tt, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c'],['../novas_8c.html#a48cf19bbddaeeb698bb921575b15e23e',1,'topo_planet(double jd_tt, const object *ss_body, double ut1_to_tt, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c']]], - ['topo_5fstar_25',['topo_star',['../novas_8h.html#a221884a610d2866c7e7303cd7b94182c',1,'topo_star(double jd_tt, double ut1_to_tt, const cat_entry *star, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec): novas.c'],['../novas_8c.html#a221884a610d2866c7e7303cd7b94182c',1,'topo_star(double jd_tt, double ut1_to_tt, const cat_entry *star, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec): novas.c']]], - ['transform_5fcat_26',['transform_cat',['../novas_8h.html#a59caeca70d1fdd02e41ed62f20675e6c',1,'transform_cat(enum novas_transform_type, double jd_tt_in, const cat_entry *in, double jd_tt_out, const char *out_id, cat_entry *out): novas.c'],['../novas_8c.html#abe0c6e6fc60a49efa88c365aef8cdc50',1,'transform_cat(enum novas_transform_type option, double jd_tt_in, const cat_entry *in, double jd_tt_out, const char *out_id, cat_entry *out): novas.c']]], - ['transform_5fhip_27',['transform_hip',['../novas_8h.html#af2c03d540de7a8bfafaed27eb9a753c1',1,'transform_hip(const cat_entry *hipparcos, cat_entry *hip_2000): novas.c'],['../novas_8c.html#af2c03d540de7a8bfafaed27eb9a753c1',1,'transform_hip(const cat_entry *hipparcos, cat_entry *hip_2000): novas.c']]], - ['true_20apparent_20r_20a_20and_20declination_28',['A. True apparent R.A. and declination',['../md_LEGACY.html#autotoc_md25',1,'']]], - ['tt_20eph_5fmanager_20tt_29',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md64',1,'']]], - ['tt_20pleph_20tt_20fortran_20interface_30',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], - ['tt2tdb_31',['tt2tdb',['../novas_8h.html#a129acca41760da486e1179c93cb9e86d',1,'tt2tdb(double jd_tt): novas.c'],['../novas_8c.html#a129acca41760da486e1179c93cb9e86d',1,'tt2tdb(double jd_tt): novas.c'],['../structnovas__timespec.html#acd6082033a111e30cda6bab81b7a32ec',1,'novas_timespec::tt2tdb']]], - ['twopi_32',['TWOPI',['../novas_8h.html#a4912c64aec0c943b7985db6cb61ff83a',1,'novas.h']]], - ['twot_33',['TWOT',['../eph__manager_8c.html#ad741a4fdb6d243507e3be0028cdeea9e',1,'eph_manager.c']]], - ['type_34',['type',['../structobject.html#a2cc80aad5c0303449e2412b122504a10',1,'object']]] + ['to_20precise_20results_17',['Prerequisites to precise results',['../index.html#autotoc_md55',1,'']]], + ['to_20supernovas_18',['Contributing to SuperNOVAS',['../md_CONTRIBUTING.html',1,'']]], + ['to_20the_20novas_20c_20api_19',['Refinements to the NOVAS C API',['../index.html#autotoc_md60',1,'']]], + ['to_5fsystem_20',['to_system',['../structnovas__transform.html#a8dac6a5c4bdc0e667bdc9eb7c7bb7094',1,'novas_transform']]], + ['tobl_21',['tobl',['../structnovas__frame.html#ad68cbc6741fea66373829a8f50307c8e',1,'novas_frame']]], + ['tod_5fto_5fcirs_22',['tod_to_cirs',['../novas_8h.html#adb48b2acaf76cc3a1e3a1412cc42c232',1,'tod_to_cirs(double jd_tt, enum novas_accuracy accuracy, const double *in, double *out): super.c'],['../super_8c.html#adb48b2acaf76cc3a1e3a1412cc42c232',1,'tod_to_cirs(double jd_tt, enum novas_accuracy accuracy, const double *in, double *out): super.c']]], + ['tod_5fto_5fitrs_23',['tod_to_itrs',['../novas_8h.html#a4551e2ac083e34c1b2b61b3805efb9a3',1,'tod_to_itrs(double jd_tt_high, double jd_tt_low, double ut1_to_tt, enum novas_accuracy accuracy, double xp, double yp, const double *in, double *out): super.c'],['../super_8c.html#a4551e2ac083e34c1b2b61b3805efb9a3',1,'tod_to_itrs(double jd_tt_high, double jd_tt_low, double ut1_to_tt, enum novas_accuracy accuracy, double xp, double yp, const double *in, double *out): super.c']]], + ['tod_5fto_5fj2000_24',['tod_to_j2000',['../novas_8h.html#a111fc0f74e2b2f066617d7e61af15e3d',1,'tod_to_j2000(double jd_tt, enum novas_accuracy accuracy, const double *in, double *out): novas.c'],['../novas_8c.html#a6205edb1361e56cc0c7aed0f088f7437',1,'tod_to_j2000(double jd_tdb, enum novas_accuracy accuracy, const double *in, double *out): novas.c']]], + ['topo_5fplanet_25',['topo_planet',['../novas_8h.html#a48cf19bbddaeeb698bb921575b15e23e',1,'topo_planet(double jd_tt, const object *ss_body, double ut1_to_tt, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c'],['../novas_8c.html#a48cf19bbddaeeb698bb921575b15e23e',1,'topo_planet(double jd_tt, const object *ss_body, double ut1_to_tt, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c']]], + ['topo_5fstar_26',['topo_star',['../novas_8h.html#a221884a610d2866c7e7303cd7b94182c',1,'topo_star(double jd_tt, double ut1_to_tt, const cat_entry *star, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec): novas.c'],['../novas_8c.html#a221884a610d2866c7e7303cd7b94182c',1,'topo_star(double jd_tt, double ut1_to_tt, const cat_entry *star, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec): novas.c']]], + ['transform_5fcat_27',['transform_cat',['../novas_8h.html#a59caeca70d1fdd02e41ed62f20675e6c',1,'transform_cat(enum novas_transform_type, double jd_tt_in, const cat_entry *in, double jd_tt_out, const char *out_id, cat_entry *out): novas.c'],['../novas_8c.html#abe0c6e6fc60a49efa88c365aef8cdc50',1,'transform_cat(enum novas_transform_type option, double jd_tt_in, const cat_entry *in, double jd_tt_out, const char *out_id, cat_entry *out): novas.c']]], + ['transform_5fhip_28',['transform_hip',['../novas_8c.html#af2c03d540de7a8bfafaed27eb9a753c1',1,'transform_hip(const cat_entry *hipparcos, cat_entry *hip_2000): novas.c'],['../novas_8h.html#af2c03d540de7a8bfafaed27eb9a753c1',1,'transform_hip(const cat_entry *hipparcos, cat_entry *hip_2000): novas.c']]], + ['true_20apparent_20r_20a_20and_20declination_29',['A. True apparent R.A. and declination',['../md_LEGACY.html#autotoc_md25',1,'']]], + ['tt_20eph_5fmanager_20tt_30',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md65',1,'']]], + ['tt_20pleph_20tt_20fortran_20interface_31',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], + ['tt2tdb_32',['tt2tdb',['../novas_8h.html#a129acca41760da486e1179c93cb9e86d',1,'tt2tdb(double jd_tt): novas.c'],['../novas_8c.html#a129acca41760da486e1179c93cb9e86d',1,'tt2tdb(double jd_tt): novas.c'],['../structnovas__timespec.html#acd6082033a111e30cda6bab81b7a32ec',1,'novas_timespec::tt2tdb']]], + ['twopi_33',['TWOPI',['../novas_8h.html#a4912c64aec0c943b7985db6cb61ff83a',1,'novas.h']]], + ['twot_34',['TWOT',['../eph__manager_8c.html#ad741a4fdb6d243507e3be0028cdeea9e',1,'eph_manager.c']]], + ['type_35',['type',['../structobject.html#a2cc80aad5c0303449e2412b122504a10',1,'object']]] ]; diff --git a/apidoc/html/search/all_17.js b/apidoc/html/search/all_17.js index c8bcd693..7be170ba 100644 --- a/apidoc/html/search/all_17.js +++ b/apidoc/html/search/all_17.js @@ -1,6 +1,6 @@ var searchData= [ - ['universal_20ephemeris_20data_20service_20integration_0',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md62',1,'']]], + ['universal_20ephemeris_20data_20service_20integration_0',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md63',1,'']]], ['unreleased_1',['[Unreleased]',['../md_CHANGELOG.html#autotoc_md1',1,'']]], ['up_20the_20observing_20frame_2',['Set up the observing frame',['../index.html#autotoc_md46',1,'']]], ['usage_3',['Example usage',['../index.html#autotoc_md40',1,'']]], diff --git a/apidoc/html/search/all_18.js b/apidoc/html/search/all_18.js index 5b98dcff..d22d98f4 100644 --- a/apidoc/html/search/all_18.js +++ b/apidoc/html/search/all_18.js @@ -1,12 +1,12 @@ var searchData= [ - ['v1_201_0',['Added in v1.1',['../index.html#autotoc_md58',1,'']]], + ['v1_201_0',['Added in v1.1',['../index.html#autotoc_md59',1,'']]], ['v_5fobs_1',['v_obs',['../structnovas__frame.html#a52e812c05f108858a4459d937a2115a4',1,'novas_frame']]], ['vc_2',['VC',['../eph__manager_8c.html#afe4ec6caa67baf8fb5b184cc183a07e8',1,'eph_manager.c']]], ['vector2radec_3',['vector2radec',['../novas_8c.html#a882279981a7d5a67ed596fa0937a12c1',1,'vector2radec(const double *pos, double *ra, double *dec): novas.c'],['../novas_8h.html#a882279981a7d5a67ed596fa0937a12c1',1,'vector2radec(const double *pos, double *ra, double *dec): novas.c']]], ['vel_4',['vel',['../structnovas__planet__bundle.html#af2bad6c1e0659e0e508492669eb67035',1,'novas_planet_bundle']]], - ['via_20jpl_20s_20tt_20pleph_20tt_20fortran_20interface_5',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], - ['via_20tt_20eph_5fmanager_20tt_6',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md64',1,'']]], + ['via_20jpl_20s_20tt_20pleph_20tt_20fortran_20interface_5',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], + ['via_20tt_20eph_5fmanager_20tt_6',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md65',1,'']]], ['virtual_5fplanet_7',['virtual_planet',['../novas_8c.html#af47d81c6aaa03c8af78eb251c8894bde',1,'virtual_planet(double jd_tt, const object *ss_body, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c'],['../novas_8h.html#af47d81c6aaa03c8af78eb251c8894bde',1,'virtual_planet(double jd_tt, const object *ss_body, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c']]], ['virtual_5fstar_8',['virtual_star',['../novas_8c.html#acd47f30801a6676afb5e0614eaefa569',1,'virtual_star(double jd_tt, const cat_entry *star, enum novas_accuracy accuracy, double *ra, double *dec): novas.c'],['../novas_8h.html#acd47f30801a6676afb5e0614eaefa569',1,'virtual_star(double jd_tt, const cat_entry *star, enum novas_accuracy accuracy, double *ra, double *dec): novas.c']]] ]; diff --git a/apidoc/html/search/all_2.js b/apidoc/html/search/all_2.js index a55c6e07..5d7bbdd7 100644 --- a/apidoc/html/search/all_2.js +++ b/apidoc/html/search/all_2.js @@ -1,8 +1,8 @@ var searchData= [ - ['2_201_20planets_20via_20tt_20eph_5fmanager_20tt_0',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md64',1,'']]], - ['2_20b_20planets_20via_20jpl_20s_20tt_20pleph_20tt_20fortran_20interface_1',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], - ['2_20built_20in_20support_20for_20old_20jpl_20major_20planet_20ephemerides_2',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]], + ['2_201_20planets_20via_20tt_20eph_5fmanager_20tt_0',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md65',1,'']]], + ['2_20b_20planets_20via_20jpl_20s_20tt_20pleph_20tt_20fortran_20interface_1',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], + ['2_20built_20in_20support_20for_20old_20jpl_20major_20planet_20ephemerides_2',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]], ['2024_2003_2001_3',['[1.0.0] - 2024-03-01',['../md_CHANGELOG.html#autotoc_md12',1,'']]], ['2024_2005_2013_4',['[1.0.1] - 2024-05-13',['../md_CHANGELOG.html#autotoc_md8',1,'']]], ['2024_2008_2004_5',['[1.1.0] - 2024-08-04',['../md_CHANGELOG.html#autotoc_md4',1,'']]] diff --git a/apidoc/html/search/all_3.js b/apidoc/html/search/all_3.js index 822be597..b4e902d1 100644 --- a/apidoc/html/search/all_3.js +++ b/apidoc/html/search/all_3.js @@ -2,5 +2,5 @@ var searchData= [ ['3_201_0',['Compatibility with NOVAS C 3.1',['../index.html#autotoc_md35',1,'']]], ['3_201_20issues_1',['Fixed NOVAS C 3.1 issues',['../index.html#autotoc_md33',1,'']]], - ['3_20explicit_20linking_20of_20custom_20ephemeris_20functions_2',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md66',1,'']]] + ['3_20explicit_20linking_20of_20custom_20ephemeris_20functions_2',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md67',1,'']]] ]; diff --git a/apidoc/html/search/all_4.js b/apidoc/html/search/all_4.js index 2a01aec2..bab726df 100644 --- a/apidoc/html/search/all_4.js +++ b/apidoc/html/search/all_4.js @@ -8,8 +8,8 @@ var searchData= ['accuracy_5',['accuracy',['../structnovas__frame.html#ad9a827bf90bce73ad42f04ed2dd13a9c',1,'novas_frame']]], ['accuracy_20shortcuts_6',['Reduced accuracy shortcuts',['../index.html#autotoc_md50',1,'']]], ['added_7',['added',['../md_CHANGELOG.html#autotoc_md10',1,'Added'],['../md_CHANGELOG.html#autotoc_md14',1,'Added'],['../md_CHANGELOG.html#autotoc_md6',1,'Added']]], - ['added_20functionality_8',['Newly added functionality',['../index.html#autotoc_md57',1,'']]], - ['added_20in_20v1_201_9',['Added in v1.1',['../index.html#autotoc_md58',1,'']]], + ['added_20functionality_8',['Newly added functionality',['../index.html#autotoc_md58',1,'']]], + ['added_20in_20v1_201_9',['Added in v1.1',['../index.html#autotoc_md59',1,'']]], ['alternative_20methodologies_10',['Note on alternative methodologies',['../index.html#autotoc_md41',1,'']]], ['an_20apparent_20place_20on_20sky_11',['Calculate an apparent place on sky',['../index.html#autotoc_md47',1,'']]], ['and_20declination_12',['A. True apparent R.A. and declination',['../md_LEGACY.html#autotoc_md25',1,'']]], @@ -17,7 +17,7 @@ var searchData= ['and_20installation_14',['Building and installation',['../index.html#autotoc_md37',1,'']]], ['angles_20at_20the_20observing_20location_15',['angles at the observing location',['../md_LEGACY.html#autotoc_md26',1,'B. Azimuth and elevation angles at the observing location'],['../index.html#autotoc_md48',1,'Calculate azimuth and elevation angles at the observing location']]], ['angvel_16',['angvel',['../novascon_8c.html#a088f463ef64dea2727d8ade9b1cd7192',1,'ANGVEL: novascon.c'],['../novascon_8h.html#a088f463ef64dea2727d8ade9b1cd7192',1,'ANGVEL: novascon.c']]], - ['api_17',['Refinements to the NOVAS C API',['../index.html#autotoc_md59',1,'']]], + ['api_17',['Refinements to the NOVAS C API',['../index.html#autotoc_md60',1,'']]], ['app_5fplanet_18',['app_planet',['../novas_8h.html#a84516e14b76ec0b8ad5b9a9049a2db81',1,'app_planet(double jd_tt, const object *ss_body, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c'],['../novas_8c.html#a84516e14b76ec0b8ad5b9a9049a2db81',1,'app_planet(double jd_tt, const object *ss_body, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c']]], ['app_5fstar_19',['app_star',['../novas_8h.html#abceec12c6cac2693b45b7778374455f4',1,'app_star(double jd_tt, const cat_entry *star, enum novas_accuracy accuracy, double *ra, double *dec): novas.c'],['../novas_8c.html#abceec12c6cac2693b45b7778374455f4',1,'app_star(double jd_tt, const cat_entry *star, enum novas_accuracy accuracy, double *ra, double *dec): novas.c']]], ['app_5fto_5fcirs_5fra_20',['app_to_cirs_ra',['../novas_8h.html#a3fa57a154f2f423612736e5e3a5addbf',1,'app_to_cirs_ra(double jd_tt, enum novas_accuracy accuracy, double ra): super.c'],['../super_8c.html#a3fa57a154f2f423612736e5e3a5addbf',1,'app_to_cirs_ra(double jd_tt, enum novas_accuracy accuracy, double ra): super.c']]], diff --git a/apidoc/html/search/all_5.js b/apidoc/html/search/all_5.js index d60d0acc..187c470a 100644 --- a/apidoc/html/search/all_5.js +++ b/apidoc/html/search/all_5.js @@ -1,12 +1,12 @@ var searchData= [ ['b_20azimuth_20and_20elevation_20angles_20at_20the_20observing_20location_0',['B. Azimuth and elevation angles at the observing location',['../md_LEGACY.html#autotoc_md26',1,'']]], - ['b_20planets_20via_20jpl_20s_20tt_20pleph_20tt_20fortran_20interface_1',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], + ['b_20planets_20via_20jpl_20s_20tt_20pleph_20tt_20fortran_20interface_1',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], ['bary2obs_2',['bary2obs',['../novas_8c.html#aada778ddcc75a355b6753f5372775094',1,'bary2obs(const double *pos, const double *pos_obs, double *out, double *lighttime): novas.c'],['../novas_8h.html#aada778ddcc75a355b6753f5372775094',1,'bary2obs(const double *pos, const double *pos_obs, double *out, double *lighttime): novas.c']]], ['baryc_3',['BARYC',['../novas_8h.html#a0c92a54a656043a455ea8ae0ace6c57e',1,'novas.h']]], ['beta_4',['beta',['../structnovas__frame.html#a9424343761f8c4f4c1afe8f5b6bf471b',1,'novas_frame']]], ['buffer_5',['BUFFER',['../eph__manager_8c.html#af1da4b8e59393e73ef0711920e920753',1,'eph_manager.c']]], ['building_20and_20installation_6',['Building and installation',['../index.html#autotoc_md37',1,'']]], ['building_20your_20application_20with_20supernovas_7',['Building your application with SuperNOVAS',['../index.html#autotoc_md38',1,'']]], - ['built_20in_20support_20for_20old_20jpl_20major_20planet_20ephemerides_8',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]] + ['built_20in_20support_20for_20old_20jpl_20major_20planet_20ephemerides_8',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]] ]; diff --git a/apidoc/html/search/all_6.js b/apidoc/html/search/all_6.js index 119b559d..990f6889 100644 --- a/apidoc/html/search/all_6.js +++ b/apidoc/html/search/all_6.js @@ -3,7 +3,7 @@ var searchData= ['c_0',['c',['../novascon_8c.html#a9e8a46a0e00368ad98642587ca4ebdbe',1,'C: novascon.c'],['../novascon_8h.html#a9e8a46a0e00368ad98642587ca4ebdbe',1,'C: novascon.c']]], ['c_203_201_1',['Compatibility with NOVAS C 3.1',['../index.html#autotoc_md35',1,'']]], ['c_203_201_20issues_2',['Fixed NOVAS C 3.1 issues',['../index.html#autotoc_md33',1,'']]], - ['c_20api_3',['Refinements to the NOVAS C API',['../index.html#autotoc_md59',1,'']]], + ['c_20api_3',['Refinements to the NOVAS C API',['../index.html#autotoc_md60',1,'']]], ['c_5fauday_4',['c_auday',['../novascon_8c.html#a55379c7fece80070614c09bb218275b6',1,'C_AUDAY: novascon.c'],['../novascon_8h.html#a55379c7fece80070614c09bb218275b6',1,'C_AUDAY: novascon.c']]], ['cal_5fdate_5',['cal_date',['../novas_8c.html#a410a61c67f5893584b09953fa4885fe5',1,'cal_date(double tjd, short *year, short *month, short *day, double *hour): novas.c'],['../novas_8h.html#a410a61c67f5893584b09953fa4885fe5',1,'cal_date(double tjd, short *year, short *month, short *day, double *hour): novas.c']]], ['calculate_20an_20apparent_20place_20on_20sky_6',['Calculate an apparent place on sky',['../index.html#autotoc_md47',1,'']]], @@ -35,5 +35,5 @@ var searchData= ['considerations_32',['Performance considerations',['../index.html#autotoc_md51',1,'']]], ['contents_33',['Table of Contents',['../index.html#autotoc_md28',1,'']]], ['contributing_20to_20supernovas_34',['Contributing to SuperNOVAS',['../md_CONTRIBUTING.html',1,'']]], - ['custom_20ephemeris_20functions_35',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md66',1,'']]] + ['custom_20ephemeris_20functions_35',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md67',1,'']]] ]; diff --git a/apidoc/html/search/all_7.js b/apidoc/html/search/all_7.js index fedb8335..6a6e816a 100644 --- a/apidoc/html/search/all_7.js +++ b/apidoc/html/search/all_7.js @@ -3,8 +3,8 @@ var searchData= ['d_0',['D',['../structnovas__delaunay__args.html#ad8657a5ec76e12f3066fb4b4eb75ace9',1,'novas_delaunay_args']]], ['d_5flight_1',['d_light',['../novas_8h.html#ad799864f637c483fb49491bde5a93e25',1,'d_light(const double *pos_src, const double *pos_body): novas.c'],['../novas_8c.html#ad799864f637c483fb49491bde5a93e25',1,'d_light(const double *pos_src, const double *pos_body): novas.c']]], ['da0_2',['DA0',['../frames_8c.html#a850d4988b6e1ee4e16274b2c723f93c4',1,'frames.c']]], - ['data_20or_20services_3',['External Solar-system ephemeris data or services',['../index.html#autotoc_md61',1,'']]], - ['data_20service_20integration_4',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md62',1,'']]], + ['data_20or_20services_3',['External Solar-system ephemeris data or services',['../index.html#autotoc_md62',1,'']]], + ['data_20service_20integration_4',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md63',1,'']]], ['de405_5fau_5',['DE405_AU',['../novas_8h.html#af303bf91582509624aa40c6a87eb95ac',1,'novas.h']]], ['dec_6',['dec',['../structsky__pos.html#ac4ae7989694321b540abb75c30eec690',1,'sky_pos::dec'],['../structcat__entry.html#ac4ae7989694321b540abb75c30eec690',1,'cat_entry::dec']]], ['declination_7',['A. True apparent R.A. and declination',['../md_LEGACY.html#autotoc_md25',1,'']]], diff --git a/apidoc/html/search/all_8.js b/apidoc/html/search/all_8.js index b4d9a58e..a6db3c60 100644 --- a/apidoc/html/search/all_8.js +++ b/apidoc/html/search/all_8.js @@ -13,15 +13,15 @@ var searchData= ['elevation_20angles_20at_20the_20observing_20location_10',['elevation angles at the observing location',['../md_LEGACY.html#autotoc_md26',1,'B. Azimuth and elevation angles at the observing location'],['../index.html#autotoc_md48',1,'Calculate azimuth and elevation angles at the observing location']]], ['em_5fratio_11',['EM_RATIO',['../eph__manager_8c.html#ad13d93611f33badca5f954f0b7c9c1a3',1,'eph_manager.c']]], ['enable_5fearth_5fsun_5fhp_12',['enable_earth_sun_hp',['../solarsystem_8h.html#a279bca0519117cee9a3bd4382f38e7ad',1,'enable_earth_sun_hp(int value): solsys3.c'],['../solsys3_8c.html#a279bca0519117cee9a3bd4382f38e7ad',1,'enable_earth_sun_hp(int value): solsys3.c']]], - ['eph_5fmanager_20tt_13',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md64',1,'']]], + ['eph_5fmanager_20tt_13',['2.1. Planets via <tt>eph_manager</tt>',['../index.html#autotoc_md65',1,'']]], ['eph_5fmanager_2ec_14',['eph_manager.c',['../eph__manager_8c.html',1,'']]], ['ephem_5fclose_15',['ephem_close',['../eph__manager_8c.html#a333da81ba7453316e26f32f628fefc0e',1,'eph_manager.c']]], ['ephem_5fopen_16',['ephem_open',['../eph__manager_8c.html#aabd581657809499fb433e4f9f56ace80',1,'eph_manager.c']]], - ['ephemerides_17',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]], + ['ephemerides_17',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]], ['ephemeris_18',['ephemeris',['../novas_8c.html#a3221fff69d0ca52ae4694ec3ab0368ad',1,'ephemeris(const double *jd_tdb, const object *body, enum novas_origin origin, enum novas_accuracy accuracy, double *pos, double *vel): novas.c'],['../novas_8h.html#a3221fff69d0ca52ae4694ec3ab0368ad',1,'ephemeris(const double *jd_tdb, const object *body, enum novas_origin origin, enum novas_accuracy accuracy, double *pos, double *vel): novas.c']]], - ['ephemeris_20data_20or_20services_19',['External Solar-system ephemeris data or services',['../index.html#autotoc_md61',1,'']]], - ['ephemeris_20data_20service_20integration_20',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md62',1,'']]], - ['ephemeris_20functions_21',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md66',1,'']]], + ['ephemeris_20data_20or_20services_19',['External Solar-system ephemeris data or services',['../index.html#autotoc_md62',1,'']]], + ['ephemeris_20data_20service_20integration_20',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md63',1,'']]], + ['ephemeris_20functions_21',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md67',1,'']]], ['ephfile_22',['EPHFILE',['../eph__manager_8c.html#ab690dba61a7445d8db2c104883fb0fe6',1,'eph_manager.c']]], ['eps_5fcor_23',['EPS_COR',['../novas_8c.html#ac063b61c63e78a4864f2baa4606bab36',1,'novas.c']]], ['equ2ecl_24',['equ2ecl',['../novas_8c.html#a98e8713c3a4cc14363246a3da757ddcd',1,'equ2ecl(double jd_tt, enum novas_equator_type coord_sys, enum novas_accuracy accuracy, double ra, double dec, double *elon, double *elat): novas.c'],['../novas_8h.html#a98e8713c3a4cc14363246a3da757ddcd',1,'equ2ecl(double jd_tt, enum novas_equator_type coord_sys, enum novas_accuracy accuracy, double ra, double dec, double *elon, double *elat): novas.c']]], @@ -34,6 +34,6 @@ var searchData= ['erot_5fgst_31',['EROT_GST',['../novas_8h.html#a9e882d9c9055f187d3a8dc9b019f0609a1d56a4fb59b567049ed1937bfcdf0f62',1,'novas.h']]], ['eta0_32',['ETA0',['../frames_8c.html#ac3263879bdfa579845d9bf404ab20208',1,'frames.c']]], ['example_20usage_33',['Example usage',['../index.html#autotoc_md40',1,'']]], - ['explicit_20linking_20of_20custom_20ephemeris_20functions_34',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md66',1,'']]], - ['external_20solar_20system_20ephemeris_20data_20or_20services_35',['External Solar-system ephemeris data or services',['../index.html#autotoc_md61',1,'']]] + ['explicit_20linking_20of_20custom_20ephemeris_20functions_34',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md67',1,'']]], + ['external_20solar_20system_20ephemeris_20data_20or_20services_35',['External Solar-system ephemeris data or services',['../index.html#autotoc_md62',1,'']]] ]; diff --git a/apidoc/html/search/all_9.js b/apidoc/html/search/all_9.js index 6f5e9ad8..e7c7796e 100644 --- a/apidoc/html/search/all_9.js +++ b/apidoc/html/search/all_9.js @@ -1,7 +1,7 @@ var searchData= [ ['f_0',['f',['../structnovas__delaunay__args.html#ae3520ebb3ff8d6feab3e6afb47ed4040',1,'novas_delaunay_args::F'],['../novascon_8c.html#a480d6423b1e9ca40c69c5a83458b49b0',1,'F: novascon.c'],['../novascon_8h.html#a480d6423b1e9ca40c69c5a83458b49b0',1,'F: novascon.c']]], - ['features_1',['SuperNOVAS specific features',['../index.html#autotoc_md56',1,'']]], + ['features_1',['SuperNOVAS specific features',['../index.html#autotoc_md57',1,'']]], ['fixed_2',['fixed',['../md_CHANGELOG.html#autotoc_md5',1,'Fixed'],['../md_CHANGELOG.html#autotoc_md13',1,'Fixed'],['../md_CHANGELOG.html#autotoc_md9',1,'Fixed'],['../md_CHANGELOG.html#autotoc_md2',1,'Fixed']]], ['fixed_20novas_20c_203_201_20issues_3',['Fixed NOVAS C 3.1 issues',['../index.html#autotoc_md33',1,'']]], ['fjd_5ftt_4',['fjd_tt',['../structnovas__timespec.html#a696e598955615f729a92870c8213a10c',1,'novas_timespec']]], @@ -9,13 +9,13 @@ var searchData= ['fn1_6',['FN1',['../novascon_8h.html#af275414414fd105a1702ca74374d1f70',1,'novascon.h']]], ['for_20a_20sidereal_20source_7',['for a sidereal source',['../md_LEGACY.html#autotoc_md19',1,'Calculating positions for a sidereal source'],['../index.html#autotoc_md42',1,'Calculating positions for a sidereal source']]], ['for_20a_20solar_20system_20source_8',['for a solar system source',['../index.html#autotoc_md49',1,'Calculating positions for a Solar-system source'],['../md_LEGACY.html#autotoc_md27',1,'Calculating positions for a Solar-system source']]], - ['for_20old_20jpl_20major_20planet_20ephemerides_9',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]], - ['fortran_20interface_10',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], + ['for_20old_20jpl_20major_20planet_20ephemerides_9',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]], + ['fortran_20interface_10',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], ['frame_11',['frame',['../structnovas__transform.html#aa4ab682491bbdc54f9fbf6a26c8245a1',1,'novas_transform::frame'],['../index.html#autotoc_md46',1,'Set up the observing frame']]], ['frame_5ftie_12',['frame_tie',['../novas_8c.html#aa11d2253a44261370af8d0c32f0715e9',1,'frame_tie(const double *in, enum novas_frametie_direction direction, double *out): novas.c'],['../novas_8h.html#aa11d2253a44261370af8d0c32f0715e9',1,'frame_tie(const double *in, enum novas_frametie_direction direction, double *out): novas.c']]], ['frames_2ec_13',['frames.c',['../frames_8c.html',1,'']]], ['from_5fsystem_14',['from_system',['../structnovas__transform.html#a5fe73fdfdc0f8933168a1c50df2db4ed',1,'novas_transform']]], - ['functionality_15',['Newly added functionality',['../index.html#autotoc_md57',1,'']]], - ['functions_16',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md66',1,'']]], + ['functionality_15',['Newly added functionality',['../index.html#autotoc_md58',1,'']]], + ['functions_16',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md67',1,'']]], ['fund_5fargs_17',['fund_args',['../novas_8h.html#aaac686274606e79ba666f94306eece8b',1,'fund_args(double t, novas_delaunay_args *a): novas.c'],['../novas_8c.html#aaac686274606e79ba666f94306eece8b',1,'fund_args(double t, novas_delaunay_args *a): novas.c']]] ]; diff --git a/apidoc/html/search/all_c.js b/apidoc/html/search/all_c.js index 59bac50f..50126416 100644 --- a/apidoc/html/search/all_c.js +++ b/apidoc/html/search/all_c.js @@ -4,13 +4,13 @@ var searchData= ['iau2000b_1',['iau2000b',['../nutation_8c.html#ae1a30706385dd901d96d28c816b51c87',1,'iau2000b(double jd_tt_high, double jd_tt_low, double *dpsi, double *deps): nutation.c'],['../nutation_8h.html#ae1a30706385dd901d96d28c816b51c87',1,'iau2000b(double jd_tt_high, double jd_tt_low, double *dpsi, double *deps): nutation.c']]], ['icrs_5fto_5fj2000_2',['icrs_to_j2000',['../structnovas__frame.html#aae2b172beac21d0c2a5f256bc8ad40bc',1,'novas_frame::icrs_to_j2000'],['../novas_8h.html#ae8b91a9b4fe4af63c7054d1eacdb996ea8557604d6604356e6620b42f78aec999',1,'ICRS_TO_J2000: novas.h']]], ['ijd_5ftt_3',['ijd_tt',['../structnovas__timespec.html#ab1b769234049ec8d7cdbb22800116184',1,'novas_timespec']]], - ['in_20support_20for_20old_20jpl_20major_20planet_20ephemerides_4',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]], - ['in_20v1_201_5',['Added in v1.1',['../index.html#autotoc_md58',1,'']]], + ['in_20support_20for_20old_20jpl_20major_20planet_20ephemerides_4',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]], + ['in_20v1_201_5',['Added in v1.1',['../index.html#autotoc_md59',1,'']]], ['in_5fspace_6',['in_space',['../structin__space.html',1,'']]], ['installation_7',['Building and installation',['../index.html#autotoc_md37',1,'']]], - ['integration_8',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md62',1,'']]], + ['integration_8',['1. Universal ephemeris data / service integration',['../index.html#autotoc_md63',1,'']]], ['interest_9',['interest',['../index.html#autotoc_md43',1,'Specify the object of interest'],['../md_LEGACY.html#autotoc_md20',1,'Specify the object of interest']]], - ['interface_10',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], + ['interface_10',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], ['interpolate_11',['interpolate',['../eph__manager_8c.html#aeda97db4dfac1a80c97ab2f3fb42b4a9',1,'eph_manager.c']]], ['introduction_12',['Introduction',['../index.html#autotoc_md30',1,'']]], ['ipt_13',['IPT',['../eph__manager_8c.html#a3e671032c94fa64bb397d6166fef36f7',1,'eph_manager.c']]], diff --git a/apidoc/html/search/all_d.js b/apidoc/html/search/all_d.js index 281821f0..12b31e85 100644 --- a/apidoc/html/search/all_d.js +++ b/apidoc/html/search/all_d.js @@ -4,8 +4,8 @@ var searchData= ['j2000_5fto_5ficrs_1',['J2000_TO_ICRS',['../novas_8h.html#ae8b91a9b4fe4af63c7054d1eacdb996ea7e5dc966849295dce29fb339b960da4f',1,'novas.h']]], ['j2000_5fto_5ftod_2',['j2000_to_tod',['../novas_8c.html#a02fa1ee652c20160055cbd2c7bd9ca63',1,'j2000_to_tod(double jd_tdb, enum novas_accuracy accuracy, const double *in, double *out): novas.c'],['../novas_8h.html#ad214e87caefca35f5f3af7f643f25c73',1,'j2000_to_tod(double jd_tt, enum novas_accuracy accuracy, const double *in, double *out): novas.c']]], ['jd_5ftdb_3',['jd_tdb',['../structra__of__cio.html#a0aefc536698706b7f8a15f23168c3486',1,'ra_of_cio']]], - ['jpl_20major_20planet_20ephemerides_4',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md63',1,'']]], - ['jpl_20s_20tt_20pleph_20tt_20fortran_20interface_5',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md65',1,'']]], + ['jpl_20major_20planet_20ephemerides_4',['2. Built-in support for (old) JPL major planet ephemerides',['../index.html#autotoc_md64',1,'']]], + ['jpl_20s_20tt_20pleph_20tt_20fortran_20interface_5',['2.b. Planets via JPL's <tt>pleph</tt> FORTRAN interface',['../index.html#autotoc_md66',1,'']]], ['jplau_6',['JPLAU',['../eph__manager_8c.html#a3827e48de0de48feb5b52444d03983d3',1,'eph_manager.c']]], ['jplihp_5f_7',['jplihp_',['../solsys2_8c.html#a14752a69e14c399d5ee82e83f22acf68',1,'solsys2.c']]], ['jplint_5f_8',['jplint_',['../solsys2_8c.html#ab53652c0e203b166427464ee1691c236',1,'solsys2.c']]], diff --git a/apidoc/html/search/all_f.js b/apidoc/html/search/all_f.js index 7abbcfdd..a7752c5a 100644 --- a/apidoc/html/search/all_f.js +++ b/apidoc/html/search/all_f.js @@ -6,7 +6,7 @@ var searchData= ['light_5ftime_3',['light_time',['../novas_8c.html#ac37988ea091479b766590e472293439b',1,'light_time(double jd_tdb, const object *body, const double *pos_obs, double tlight0, enum novas_accuracy accuracy, double *pos_src_obs, double *tlight): novas.c'],['../novas_8h.html#ac37988ea091479b766590e472293439b',1,'light_time(double jd_tdb, const object *body, const double *pos_obs, double tlight0, enum novas_accuracy accuracy, double *pos_src_obs, double *tlight): novas.c']]], ['light_5ftime2_4',['light_time2',['../novas_8c.html#a8a93137b6201bedd8d47cc954684ebe3',1,'light_time2(double jd_tdb, const object *body, const double *pos_obs, double tlight0, enum novas_accuracy accuracy, double *p_src_obs, double *v_ssb, double *tlight): novas.c'],['../novas_8h.html#ac800815a32e81e7befdb828c29d1efcc',1,'light_time2(double jd_tdb, const object *body, const double *pos_obs, double tlight0, enum novas_accuracy accuracy, double *pos_src_obs, double *v_ssb, double *tlight): novas.c']]], ['limb_5fangle_5',['limb_angle',['../novas_8c.html#a0e4364546c40854eb63211bd6cd0e70b',1,'limb_angle(const double *pos_src, const double *pos_obs, double *limb_ang, double *nadir_ang): novas.c'],['../novas_8h.html#a0e4364546c40854eb63211bd6cd0e70b',1,'limb_angle(const double *pos_src, const double *pos_obs, double *limb_ang, double *nadir_ang): novas.c']]], - ['linking_20of_20custom_20ephemeris_20functions_6',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md66',1,'']]], + ['linking_20of_20custom_20ephemeris_20functions_6',['3. Explicit linking of custom ephemeris functions',['../index.html#autotoc_md67',1,'']]], ['links_7',['Related links',['../index.html#autotoc_md31',1,'']]], ['list_8',['Deprecated List',['../deprecated.html',1,'']]], ['local_5fplanet_9',['local_planet',['../novas_8c.html#ac036606c424c30a5600049b0cd38d868',1,'local_planet(double jd_tt, const object *ss_body, double ut1_to_tt, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c'],['../novas_8h.html#ac036606c424c30a5600049b0cd38d868',1,'local_planet(double jd_tt, const object *ss_body, double ut1_to_tt, const on_surface *position, enum novas_accuracy accuracy, double *ra, double *dec, double *dis): novas.c']]], diff --git a/apidoc/html/toc.xml b/apidoc/html/toc.xml index 5091c13e..54a9d5a7 100644 --- a/apidoc/html/toc.xml +++ b/apidoc/html/toc.xml @@ -22,22 +22,24 @@