Tagged Questions
The julian-date tag has no wiki summary.
5
votes
3answers
1k views
Python Question: Year and Day of Year to date?
I have a year value and a day of year and would like to convert to a date (day/month/year).
Thanks in advance. :)
3
votes
1answer
996 views
Objective-C: how to create an NSDate from Julian date fields
I've created a category to help me deal with creating dates from year, month, day fields. I now also have the need to create a date from a Julian Date (YYJJJ). I've parsed my Julian date string and ...
2
votes
4answers
254 views
Using the Ruby Date class for Astronomical data
~ Approximate Solar Noon
lw = 88.743 # my longitude
jdate = Date.ordinal_to_jd(Time.now.year, Time.now.yday)
n = (jdate - 2451545 - 0.0009 - lw / 360).round # lw is users longitude west of 0.
...
2
votes
1answer
1k views
C++: Converting Julian dates to Gregorian
I need to write a function that converts a Julian dates (Year, Day of Year, Hour of Day and Minutes) into a standard form (Year, Month, Day of Month, Hour of Day and Minutes) and express it as a ...
1
vote
2answers
195 views
Whether it is correct to take 01/01/0001 date as Monday?
I am writing a program to display the Day for the given date. (E.g. Thursday for 1/1/1970.)
While attempting that I have some problems.
This is my program.
/*Concept:
The noOfDays variable will ...
1
vote
1answer
345 views
VB6 Julian Date String to Date Object
Is there a function in Visual Basic 6 that can be used to convert a julian date string (99001-1st of Jan 1999) to a Date object?
I have tried using CDate() but the results are not as expected.
...
1
vote
3answers
1k views
C#: How to convert string to Julian date accordingly to the giver format?
my question is how to convert input DateTime value into Julian date format but the result should be in the format "0YYDDD"? I suppose January, 2nd 2011 should look like "011002".
Thanks
1
vote
1answer
1k views
Julian Date Conversion
Sample Julian Dates:
2009218
2009225
2009243
How do I convert them into a regular date?
I tried converting them using online converter and I got-
12-13-7359 for 2009225!! Makes no sense!
1
vote
4answers
2k views
Convert a Julian Date to Regular Calendar Date
How do I convert a 7-digit julian date into a format like MM/dd/yyy?
1
vote
5answers
2k views
What is the precise definition of JDE's Julian Date format?
I am writing code to convert from a Gregorian date to a JDE (J.D.Edwards) Julian date.
Note: a JDE Julian date is different from the normal usage of the term Julian date.
As far as I can work out ...
0
votes
1answer
199 views
Convert Julian Timestamp to Regular Time in UNIX
I need to convert Julian timestamp to Regular timestamp in UNIX using Bash.
On Tandem OS, conversion is pretty straightforward -
Example:
212186319010244541
$OLSAPP SYSTST 1> ...
0
votes
1answer
150 views
Sqlite WHERE condition on JULIAN dates?
How to build a sql where clause on a Julian column date?
SELECT * FROM Products WHERE JulianDateColumn > ?
I can't build a working statement I got either no results with a GreaterThan ">" ...
0
votes
3answers
1k views
Why does GregorianCalendar.getInstance contain a calsys and cdate of type Julian Calendar
I tried to do set date value to a PreparedStatement with default value but the value is sometimes returned as a JulianValue. For example (Assume spanBegin and spanEnd are null)
Calendar cal = new ...