[Q] algorithm to truncate date to beginning of week?

C

Chuck Remes

I need to be able to take any date after Jan 1, 1980 and truncate it to the nearest week.

Example:

Wed Jan 09 17:53:23 -0600 1980 should truncate to Sun Jan 06 00:00:00 -0600 1980

Tue Feb 09 12:29:51 -0600 2010 should truncate to Sun Feb 07 00:00:00 -0600 2010

I've tried all sorts of tricks with modulus (% operator) on the integer representation of time but I can't get anything to work over a range of dates.

Anyone have any bright ideas?

My end goal is to always be able to pick the first Sunday at midnight backwards from a given date. If there is another approach to accomplish this, please share.

cr
 
G

Gary Wright

I need to be able to take any date after Jan 1, 1980 and truncate it = to the nearest week.
=20
Example:
=20
Wed Jan 09 17:53:23 -0600 1980 should truncate to Sun Jan 06 00:00:00 = -0600 1980
=20
Tue Feb 09 12:29:51 -0600 2010 should truncate to Sun Feb 07 00:00:00 = -0600 2010
=20
I've tried all sorts of tricks with modulus (% operator) on the =
integer representation of time but I can't get anything to work over a =
range of dates.=20
=20
Anyone have any bright ideas?

It also looks like midnight is considered part of the next day not the =
previous day as in your example.

Gary Wright
 
Y

Yossef Mendelssohn

My end goal is to always be able to pick the first Sunday at midnight bac=
kwards from a given date. If there is another approach to accomplish this, =
please share.

Use the logic inherent in Date objects. They can tell you the weekday
(as an integer, 0-based starting at Sunday), and subtraction/addition
work on days.

$ irb -rdate=3D> "2010-02-07"

A Date object is just that, a date. If you mean a time, you can
recreate the date using parts of the time.
=3D> "2010-02-09"

Or if you still need a Time object when you're done, you can go the
other way as well.
=3D> Tue Feb 09 00:00:00 -0600 2010


HTH HAND
 
R

Rick DeNatale

It also looks like midnight is considered part of the next day not the previous day as in your example.

No, actually ActiveSupport defines the week to start on Monday, which
is the ISO 8601 definition, not Sunday.

To get the beginning of a Sunday starting week using ActiveSupport,
you could use


Time.now.end_of_week.beginning_of_day

This will get the end of the next Sunday on or after the time in
question, and then adjust to the beginning of the day.

Approaches like Time.now.beginning_of_week - 1.day will fail on
Sundays, you'll get the previous Sunday instead.


--
Rick DeNatale

Blog: http://talklikeaduck.denhaven2.com/
Twitter: http://twitter.com/RickDeNatale
WWR: http://www.workingwithrails.com/person/9021-rick-denatale
LinkedIn: http://www.linkedin.com/in/rickdenatale
 
C

Chuck Remes

Use the logic inherent in Date objects. They can tell you the weekday
(as an integer, 0-based starting at Sunday), and subtraction/addition
work on days.

$ irb -rdate
=> "2010-02-07"

Ah! Date#wday is what I needed!

I do need Time objects but it's easy (as you pointed out) to convert between them.

Thanks for your insight.

cr
 
C

Chuck Remes

It also looks like midnight is considered part of the next day not the previous day as in your example.

Ooh, all of ActiveSupport for a little date manipulation? Nail, meet hammer!

Thanks for this suggestion. I'm going to go with using Date#wday to calculate it though.

cr
 
G

Gary Wright

=20
Ooh, all of ActiveSupport for a little date manipulation? Nail, meet =
hammer!

Of course reinventing the wheel isn't necessarily a good thing either.

Here is another approach:
Date.parse('12/25/2010')
=3D> Sun Dec 19 00:00:00 -0500 2010
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top