cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
jay_holavarri
Level III

Converting a Julian Day into Month-Day

 

I receive material from a supplier that uses an encoded date in their material lot, which I'd like to convert to a regular date. It first encodes the three digit Julian date into a two-digit Base 36 hex, which I have found JMP can easily handle.

 

But converting the Julian date to month-day has been surprisingly elusive. There isn't a mention of Julian conversion I can find. Seems like I should be able to divide the JMP time by the number of seconds in a day or something.

 

I suspect someone here will know an easy solution.

 

Thank you.

 

Attaching the Julian look up table I was given.julian day table.png

1 ACCEPTED SOLUTION

Accepted Solutions
Jeff_Perkinson
Community Manager Community Manager

Re: Converting a Julian Day into Month-Day

Check out the In Days() function. It will take your Julian date as an argument and return the number of seconds in that number of days. 

 

You can add that result (minus 1) to January 1 of the year in question.

 

jdate=239;

year=1998;

date= datemdy(01, 01, year)+(in days(jdate)-1);

format(date, "mm/dd/yyyy");

You might find Using dates, times, datetimes and durations in JMP helpful.

-Jeff

View solution in original post

1 REPLY 1
Jeff_Perkinson
Community Manager Community Manager

Re: Converting a Julian Day into Month-Day

Check out the In Days() function. It will take your Julian date as an argument and return the number of seconds in that number of days. 

 

You can add that result (minus 1) to January 1 of the year in question.

 

jdate=239;

year=1998;

date= datemdy(01, 01, year)+(in days(jdate)-1);

format(date, "mm/dd/yyyy");

You might find Using dates, times, datetimes and durations in JMP helpful.

-Jeff