vote up 3 vote down star

I'm doing date calculations, but I'm only interested in Minute-level precision.

Given the following Date object as an example, what's the best way to 'round' a Date to the nearest Minute?

2008-10-03 07:51:07.347

Thanks!

Update: This is a duplicate of this question, apologies, it didn't turn up when I searched, and thanks to @leppie and @jop for pointing it out :o)

flag

Exact duplicate of previous question. – leppie Oct 3 '08 at 10:20
I did a search, honest guv! Could you post a link to it please? :o) – Andrew Oct 3 '08 at 10:31
here's the duplicate with a better solution: stackoverflow.com/questions/152774/… – jop Oct 3 '08 at 10:47
Thanks for the link - I've added the link to the main question text and marked this question as closed. Thanks for the answers, and apologies again for not finding the previous question :o) – Andrew Oct 3 '08 at 11:08

closed as not programming related by Andrew Oct 3 '08 at 13:32

5 Answers

vote up 6 vote down check

None of the answers so far posted take account of the fact that a DateTime object may contain a fractional number of milliseconds.

This post has a solution that does so.

To adapt it to your scenario, and just to be a bit anal to preserve the DateTimeKind (Utc/Local/Unspecified):

static DateTime RoundToMinute(DateTime date)    
{       
  date = date.AddSeconds(30);
  return new DateTime(date.Ticks - date.Ticks % TimeSpan.TicksPerMinute, date.Kind);    
}

or a one-liner that does the same thing:

d = d.AddTicks(-(d.Ticks + 30*TimeSpan.TicksPerSecond) % TimeSpan.TicksPerMinute);

In both of the above cases, you'll get an overflow for times within 30 seconds of DateTime.MaxValue. You could special case MaxValue, which is the most common case:

if (d == DateTime.MaxValue) return d;

or if you really may have times within 30s of DateTime.MaxValue:

if (d > DateTime.MaxValue.AddSeconds(-30)) return DateTime.MaxValue;
link|flag
Now THAT's the solution. – jop Oct 3 '08 at 10:43
Yeah I like that it's one line. Very nice. – Matt Hamilton Oct 3 '08 at 10:47
vote up 0 vote down

Ok, I've deleted my previous answer. I wanted to see if there was a way to do this in a one-liner, and I think this'll do it:

d = new Func<DateTime, DateTime>(
        m => new DateTime(m.Year, m.Month, m.Day, m.Hour, m.Minute, 0)
    )(d.AddSeconds(30));
link|flag
vote up 1 vote down
var roundedDate = new DateTime(
    date.Year, date.Month, date.Day, date.Hour, date.Minute, 0
    ).AddMinutes(date.Second < 30 ? 0 : 1);

Note, originally I took milliseconds into account, but then I figured out it didn't affect the conditional at all, at 29.999 seconds you still want to round down.

link|flag
Very concise, @jop's answer is good too - which do I choose?! ;o/ – Andrew Oct 3 '08 at 10:35
vote up 2 vote down
using System;
using NUnit.Framework;

namespace SanityCheck.UnitTests.StackOverflow
{
    [TestFixture]
    public class DateTests
    {
        [Test]
        public void TestMinuteRound()
        {
            Assert.AreEqual(new DateTime(2008, 1, 1, 1, 12, 00, 00),
                            RoundToMin(new DateTime(2008, 1, 1, 1, 12, 29, 56)));
            Assert.AreEqual(new DateTime(2008, 1, 1, 1, 13, 00, 00),
                            RoundToMin(new DateTime(2008, 1, 1, 1, 12, 30, 56)));
            Assert.AreEqual(new DateTime(2008, 1, 1, 1, 13, 00, 00),
                            RoundToMin(new DateTime(2008, 1, 1, 1, 12, 31, 56)));

            // rollover minute to hour
            Assert.AreEqual(new DateTime(2008, 1, 1, 2, 00, 00),
                            RoundToMin(new DateTime(2008, 1, 1, 1, 59, 31)));

        }


        private DateTime RoundToMin(DateTime d)
        {
            if (d.Second >= 30)
            {
                d = d.AddMinutes(1);
            }
            return d.AddSeconds(-d.Second).AddMilliseconds(-d.Millisecond);
        }
    }
}
link|flag
This is nice and correct, but I'm wondering if it results in excessive DateTime object creations. DateTime is immutable, so each time you use AddSeconds(), AddMilliseconds(), or AddMinutes() you create a temporary DateTime object. – Wedge Oct 3 '08 at 10:32
Not strictly correct, because it doesn't take account of the fact that a DateTime measures time in 100ns ticks, and may contain a fractional number of milliseconds. A better solution: stackoverflow.com/questions/152774/… – Joe Oct 3 '08 at 10:40
vote up 1 vote down

So this is wrong in several ways, as @jop and @Wedge pointed out:

d = new DateTime(d.Year, d.Month, d.Day, d.Hour, d.Second > 30 ? d.Minute + 1 : d.Minute, 0);

Use theirs solution.

link|flag
Will fail if milliseconds is supplied and when minute is 59 (should be a +1 on the hour) – jop Oct 3 '08 at 10:21
This is bad, you'll get an argument out of range exception if you pass in 60 minutes to the DateTime constructor. – Wedge Oct 3 '08 at 10:28
You are right boys. However we showed the way, he can refine it. I correct it. – Biri Oct 3 '08 at 10:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.