PLplot
5.15.0
Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
b
c
d
f
g
m
o
p
s
t
w
z
+
Functions
_
c
f
m
p
s
t
+
Variables
_
b
c
d
f
g
m
o
p
s
t
w
z
+
Classes
Class List
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
v
w
x
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerations
Enumerator
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
c
d
f
h
i
l
m
n
o
p
q
r
s
t
w
Enumerations
+
Enumerator
a
b
c
d
g
l
m
n
o
p
r
s
t
w
y
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
qsastime_extra.h
Go to the documentation of this file.
1
#ifndef _QSASTIME_EXTRA_H_
2
#define _QSASTIME_EXTRA_H_
3
//
4
// This software originally contributed under the LGPL in January 2009 to
5
// PLplot by the
6
// Cluster Science Centre
7
// QSAS team,
8
// Imperial College, London
9
// Copyright (C) 2009 Imperial College, London
10
//
11
// This file is part of PLplot.
12
//
13
// PLplot is free software; you can redistribute it and/or modify
14
// it under the terms of the GNU Library General Public License as published
15
// by the Free Software Foundation; either version 2 of the License, or
16
// (at your option) any later version.
17
//
18
// PLplot is distributed in the hope that it will be useful,
19
// but WITHOUT ANY WARRANTY; without even the implied warranty of
20
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21
// GNU Library General Public License for more details.
22
//
23
// You should have received a copy of the GNU Library General Public License
24
// along with PLplot; if not, write to the Free Software
25
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26
//
27
//
28
29
// MJD measures from the start of 17 Nov 1858
30
31
// These utilities use the Gregorian calendar after 4 Oct 1582 (Julian) i.e. from 15 Oct 1582 Gregorian
32
// Note C libraries use Gregorian only from 14 Sept 1752
33
// More detailed discussion can be found at http://aa.usno.navy.mil/data/docs/JulianDate.php
34
// These routines have been compared with the results of the US Naval Observatory online converter.
35
// Modified Julian Date (MJD) = Julian Date (JD) - 2400000.5
36
//
37
// In all routines, specifying a day, hour, minute or second field greater than would be valid is
38
// handled with modulo arithmetic and safe.
39
// Thus 2006-12-32 00:62:00.0 will safely, and correctly, be treated as 2007-01-01 01:02:00.0
40
//
41
//
42
43
#include <stdio.h>
44
#include <stdlib.h>
45
#include <string.h>
46
// include header file for dll definitions
47
#include "
qsastimeP.h
"
48
49
QSASTIMEDLLIMPEXP
void
setFromDOY
(
int
year,
int
doy,
int
hour,
int
min
,
double
sec,
MJDtime
*MJD,
int
forceJulian );
50
QSASTIMEDLLIMPEXP
void
setFromBCE
(
int
yearBCE,
int
month,
int
day,
int
hour,
int
min
,
double
sec,
MJDtime
*MJD,
int
forceJulian );
51
QSASTIMEDLLIMPEXP
void
setFromMJD
(
double
ModifiedJulianDate,
MJDtime
*MJD );
52
QSASTIMEDLLIMPEXP
void
setFromCDFepoch
(
double
cdfepoch,
MJDtime
*MJD );
53
QSASTIMEDLLIMPEXP
void
setFromJD
(
double
JulianDate,
MJDtime
*MJD );
54
QSASTIMEDLLIMPEXP
int
setFromISOstring
(
const
char
* ISOstring,
MJDtime
*MJD,
int
forceJulian );
55
QSASTIMEDLLIMPEXP
double
getMJD
(
MJDtime
*MJD );
56
QSASTIMEDLLIMPEXP
double
getJD
(
MJDtime
*MJD );
57
QSASTIMEDLLIMPEXP
double
getDiffDays
(
MJDtime
*MJD1,
MJDtime
*MJD2 );
58
QSASTIMEDLLIMPEXP
double
getDiffSecs
(
MJDtime
*MJD1,
MJDtime
*MJD2 );
59
QSASTIMEDLLIMPEXP
double
getCDFepoch
(
MJDtime
*MJD );
60
QSASTIMEDLLIMPEXP
const
char
*
getISOString
(
MJDtime
*MJD,
int
delim,
int
forceJulian );
61
//** Warning getISOString is not thread safe **
62
63
#endif
getCDFepoch
QSASTIMEDLLIMPEXP double getCDFepoch(MJDtime *MJD)
Definition:
qsastime_extra.c:186
MJDtimeStruct
Definition:
qsastimeP.h:12
getISOString
QSASTIMEDLLIMPEXP const char * getISOString(MJDtime *MJD, int delim, int forceJulian)
Definition:
qsastime_extra.c:223
min
int min(int a, int b)
Definition:
plplot_octaveOCTAVE_wrap.cxx:2496
setFromISOstring
QSASTIMEDLLIMPEXP int setFromISOstring(const char *ISOstring, MJDtime *MJD, int forceJulian)
Definition:
qsastime_extra.c:46
getDiffSecs
QSASTIMEDLLIMPEXP double getDiffSecs(MJDtime *MJD1, MJDtime *MJD2)
Definition:
qsastime_extra.c:216
setFromJD
QSASTIMEDLLIMPEXP void setFromJD(double JulianDate, MJDtime *MJD)
Definition:
qsastime_extra.c:165
setFromBCE
QSASTIMEDLLIMPEXP void setFromBCE(int yearBCE, int month, int day, int hour, int min, double sec, MJDtime *MJD, int forceJulian)
Definition:
qsastime_extra.c:150
setFromMJD
QSASTIMEDLLIMPEXP void setFromMJD(double ModifiedJulianDate, MJDtime *MJD)
Definition:
qsastime_extra.c:158
setFromCDFepoch
QSASTIMEDLLIMPEXP void setFromCDFepoch(double cdfepoch, MJDtime *MJD)
Definition:
qsastime_extra.c:174
getJD
QSASTIMEDLLIMPEXP double getJD(MJDtime *MJD)
Definition:
qsastime_extra.c:202
getDiffDays
QSASTIMEDLLIMPEXP double getDiffDays(MJDtime *MJD1, MJDtime *MJD2)
Definition:
qsastime_extra.c:209
qsastimeP.h
QSASTIMEDLLIMPEXP
#define QSASTIMEDLLIMPEXP
Definition:
qsastimedll.h:40
getMJD
QSASTIMEDLLIMPEXP double getMJD(MJDtime *MJD)
Definition:
qsastime_extra.c:196
setFromDOY
QSASTIMEDLLIMPEXP void setFromDOY(int year, int doy, int hour, int min, double sec, MJDtime *MJD, int forceJulian)
Definition:
qsastime_extra.c:91
plplot_source
lib
qsastime
qsastime_extra.h
Generated on Sat Jun 1 2019 12:58:05 for PLplot by
1.8.13