Tagged Questions
The Julian day number (JDN) is the integer part of the Julian date (JD). The day commencing at the above-mentioned epoch is JDN 0. Now, at 16:23, Wednesday April 13, 2011 (UTC) the Julian day number is 2455665. Negative values can be used for dates preceding JD 0, though they predate all recorded history. However, in this case, the JDN is the greatest integer not greater than the Julian date rather than simply the integer part of the JD.
5
votes
1answer
3k views
Convert DateTime to Julian Date in C# (ToOADate Safe?)
I need to convert from a standard Gregorian date to a Julian day number.
I've seen nothing documented in C# to do this directly, but I have found many posts (while Googling) suggesting the use of ...
4
votes
1answer
3k views
Convert unix timestamp to julian
How can I convert from a unix timestamp (say 1232559922) to a fractional julian date (2454853.03150).
I found a website ( http://aa.usno.navy.mil/data/docs/JulianDate.php ) that performs a similar ...
3
votes
1answer
49 views
Why do calendar conversion libraries revolve around Julian days?
I'm currently writing some php code to convert dates from the Gregorian Calendar to the Hebrew Calendar. Looking at the php calendar functions, I found that it has functions to convert from Gregorian ...
3
votes
3answers
3k views
Julian day of the year in Java
I have seen the "solution" at http://www.rgagnon.com/javadetails/java-0506.html, but it doesn't work correctly. E.g. yesterday (June 8) should have been 159, but it said it was 245.
So, does someone ...
2
votes
2answers
2k views
Inserting date in sqlite db using adobe air and javascript
I am trying to insert a date value in sqlite db using air and javascript. The value gets inserted but when I try and view it, it says null.
Later I found that SQLite stores date using julian format. ...
1
vote
1answer
307 views
XSL Date & Time Difference Calculation (XSLT 1.0) - Revised question
Using XSLT 1.0 & receive dates in the following format:
20111129060804
and I have a need to be able to calculate differences between two of them. However, I cannot use any extensions.
I also ...
1
vote
0answers
537 views
How can I convert between a Java Date and Julian day number?
How can a Java Date be converted into a double that represents a Julian day?
How can a Julian day number be converted into a Java Date?
public static double dateToJulian(Date date) {
...
1
vote
1answer
166 views
Unable to convert from Julian INT date to regular TSQL Datetime
Help me Stackoverflow, I'm close to going all "HULK SMASH" on my keyboard over this issue. I have researched carefully but I'm obviously not getting something right.
I am working with a Julian dates ...
0
votes
2answers
113 views
Julian Day to ISO 8601 string in SQLite
I have a table that stores date/time values as julian days in SQLite (using the julianday() function). I can't seem to figure out how to convert them back to ISO 8601 style strings ...
0
votes
3answers
95 views
c++ Gregoraian and Julian calendar inheritance
I have this dilemma where i need to choose between differant types of inheritance for the Gregorian and Julian calanders. I want to have one class named Date as a base class.
My question is as ...
0
votes
2answers
342 views
creating timestamp from columns in postgres
i have 2 rows in a column, one feeding me the julian date (number of days since Jan 1, 1970, with that day being 1), and the second column is the number of minutes past midnight of the current day ...
0
votes
2answers
957 views
SQL Server / Oracle Linked — Julian Date Error
I have a client who has a SQL Server 2000 database linked to an Oracle 8i database. They have dozens of views in the SQL Server 2000 database which reference the Oracle database, often with simple ...
0
votes
6answers
7k views
C# Julian Date Parser
I have a cell in a spreadsheet that is a date object in Excel but becomes a double (something like 39820.0 for 1/7/2009) when it comes out of C1's xls class. I read this is a Julian date format. Can ...