~ubuntu-branches/ubuntu/trusty/xplanet/trusty

« back to all changes in this revision

Viewing changes to src/libephemeris/jpleph.h

  • Committer: Package Import Robot
  • Author(s): Steve McIntyre
  • Date: 2014-01-30 18:54:10 UTC
  • mfrom: (4.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20140130185410-o2u51emh707gbevv
Tags: 1.3.0-1
* New maintainer
* Move to new upstream version 1.3.0. (Closes: #678464)
  + Upstream highlights:
    - add "outlined" keyword to marker files
    - update JPL ephemeris code for 64 bit machines
    - add bump_shade config file parameter
    - add opacity keyword for markers
    - implement Rayleigh scattering
  + Remove old Debian patches now obsoleted:
    - possible-buffer-overflow (included upstream)
    - orbit-step-bug (included upstream)
    - gcc44-includes (included upstream)
    - hyphen-used-as-minus-sign (included upstream)
    - tsc-aspect-ratio (included upstream)
  + Update (and include!) FreeMonoBold
* Update libtiff build-deps (Closes: #736052)
* Update libpng build-deps (Closes: #662568)
* Update Standards-Version to 3.9.5
* Update to debhelper 9 to enable hardening build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
int DLL_FUNC jpl_pleph( void *ephem, const double et, const int ntarg,
34
34
                      const int ncent, double rrd[], const int calc_velocity);
35
35
double DLL_FUNC jpl_get_double( const void *ephem, const int value);
36
 
double DLL_FUNC jpl_get_long( const void *ephem, const int value);
37
 
int DLL_FUNC make_sub_ephem( const void *ephem, const char *sub_filename,
 
36
long DLL_FUNC jpl_get_long( const void *ephem, const int value);
 
37
int DLL_FUNC make_sub_ephem( void *ephem, const char *sub_filename,
38
38
                              const double start_jd, const double end_jd);
39
39
 
40
40
#ifdef __cplusplus
55
55
#define JPL_EPHEM_KERNEL_RECORD_SIZE   208
56
56
#define JPL_EPHEM_KERNEL_NCOEFF        212
57
57
#define JPL_EPHEM_KERNEL_SWAP_BYTES    216
 
58
 
 
59
#define jpl_get_pvsun( ephem) ((double *)((char *)ephem + 224))