Skip to content
Advertisement

Convert a Julian Date to an Instant

I’m running into a situation where I would like to convert from a Julian date to an java.time.Instant (if that makes sense), or some Java time that can be more easily understood. My understanding of what a Julian date is comes from reading the Wikipedia page. There are bunch of different variants, and the date I am trying to read uses a different epoch than any of these.

For example, let’s say the epoch is the beginning of the Calendar (New Style) Act 1750, and the Julian date is 95906.27600694445 which in this case I believe is CE 2015 April 15 06:37:26.9 UT, how do I get an instant from this? I will need to adjust for the timezone later.

I noticed there is a class called JulianFields, but I don’t know where/how to use it. Also, most of the methods I see in the package make use of int or long, not really anything for double.

So, is there a simple way to convert from a Julian date using a different epoch to a Java 8 Instant (or some other time if my thinking is wrong).

Advertisement

Answer

Here is a solution using the new Java 8 classes:

JavaScript

Regarding the JulianFields you asked about, you can define a custom formatter like this:

JavaScript

Unfortunately it doesn’t support fractions of days:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement