Convert day of year to month, day

Convert day of year to month, day

Post by Rob Redmo » Sat, 05 Apr 2008 23:38:48


Hi,

What's the "ruby way" to go from a date/time format that is "Year
Day_of_Year time" to "Year Month Day". E.g. I want to convert
year=2008, day_of_year=095, frequently represented as "2008-095" to it's
more usual format "2008-04-04". I've been playing with the Time class
and it's methods and found nifty ways to get yday, e.g.
Time.now.utc.yday, but how do I easily go backwards w/o writing my own
simple converter?

R
--
Posted via http://www.yqcomputer.com/
 
 
 

Convert day of year to month, day

Post by James Gra » Sun, 06 Apr 2008 00:00:44


How's this?

>> require "date"
=> true
>> Date.strptime("2008-095", "%Y-%j").to_s
=> "2008-04-04"

James Edward Gray II

 
 
 

Convert day of year to month, day

Post by ara.t.howa » Sun, 06 Apr 2008 00:15:03


hi rob-

james example is good - you might find this method quite useful with
julian days to:

p Date.ordinal(2008,1).ctime #=> "Tue Jan 1 00:00:00 2008"

cheers

a @ http://www.yqcomputer.com/
 
 
 

Convert day of year to month, day

Post by Rob Redmo » Sun, 06 Apr 2008 00:20:17


Good idea, but doesn't work for me:
irb(main):065:0> Date.strptime("2008-095", "%Y-%J").to_s
ArgumentError: invalid date
from /usr/lib/ruby/1.8/date.rb:650:in `new_with_hash'
from /usr/lib/ruby/1.8/date.rb:675:in `strptime'
from (irb):65
from :0

Maybe my version of Ruby (1.8.1) is too old. The computer in question
is managed by the network pirates and unlikely to be upgraded. This is
a noob thought, but is there a way for me to locally upgrade the Date
class, ala a Ruby Gem?

R
--
Posted via http://www.yqcomputer.com/
 
 
 

Convert day of year to month, day

Post by Rob Redmo » Sun, 06 Apr 2008 00:24:14


Wicked, thanks Ara!

Caution to the wind; I'm building my own 1.8.6 to experiment with.

Rob
--
Posted via http://www.yqcomputer.com/
 
 
 

Convert day of year to month, day

Post by ara.t.howa » Sun, 06 Apr 2008 00:26:19


yyyy, jjj, *ignored = yourdate.split '-'

date = Date.ordinal Integer(yyyy), Integer(jjj)

p date

a @ http://www.yqcomputer.com/
 
 
 

Convert day of year to month, day

Post by ara.t.howa » Sun, 06 Apr 2008 00:32:28


put it on NFS - then just use it everywhere - *** sysadmins

a @ http://www.yqcomputer.com/
 
 
 

Convert day of year to month, day

Post by Alex Wayn » Sun, 06 Apr 2008 01:32:15


Now that is an awesome little method I didn't know about. Thanks James.
--
Posted via http://www.yqcomputer.com/