vote up 1 vote down star
1

Is there a public/government web service that I can call to find out what the national holidays are for a given year? (For the US and/or any country in the world.)

Edit: Does anybody have a set of formulas to calculate US holidays? (C# would be my language of choice if there is a choice.)

flag

73% accept rate

6 Answers

vote up 5 vote down check

There's a web service at http://www.holidaywebservice.com which will provide dates of holidays for the USA, Republic of Ireland, England and Scotland. They also sell a DLL and source code.

As for details of algorithms, you could do worse than check out the excellent Calendrical Calculations book (third edition), which is a really fascinating read for all matters calendrical, and includes sample LISP code for their calendar algorithms.

link|flag
Cool service and references, but my problem is trying to find a up-to-date source of which holidays are official U.S. government holidays (as in, the feds aren't at work on those days). – CMPalmer Feb 25 at 20:30
vote up 0 vote down

There are tons of similar information that really should be provided by government web services. It would certainly save a lot of money and errors in the long run if the U.S. Government could provide information like this through web services. Heck, even having it in a downloadable, parseable format would be a big step in the right direction.

I ran across this question while looking for a way to ensure an application skipped all U.S. Federal holidays in working days calculations. The best .gov source I found is:

Operating Status Schedules from OPM

This has the data we need through 2020, but we'll have to type it into our own tables.

link|flag
vote up 2 vote down

There are online calendars you can subscribe to. For example, Google provides US Holidays:

ICAL XML HTML

link|flag
vote up 1 vote down

For the method/assembly to figure out US Holidays, basically just figure out all the major holidays and the "formula" that they use.

For the ones that never change, like Christmas, it's easy - December 25th.

For the ones that do change somewhat, there's usually a formula - like the third Monday in February being Presidents Day. You can just have the method figure this out for a given year.

This won't work for holidays without any particular pattern (i.e., some committee decides what the date is every year) but for all the major ones there's easily discernible formulas.

This would actually be a great candidate for Test Driven Design. You will know all of the major holiday dates for a particular year, so you should be able to feed that year into the method and get the right answers.

link|flag
vote up 1 vote down

Some parsing may be required, and it's not 100% complete, but you can use wikipedia.

link|flag
vote up 0 vote down

No one gives that up for free (any country in the world? Get real). The best source is Copp Clark (I'm unaffiliated). They provide all holidays for all countries broken down by financial market, currency, etc.

link|flag

Your Answer

Get an OpenID
or

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