Click here to Skip to main content
Licence 
First Posted 11 Jan 2006
Views 58,059
Bookmarked 20 times

Shamsi Convertor

By | 11 Jan 2006 | Article
Convert Hijri Shamsi Date to Gregorian and Gregorian to Hijri Shamsi

Introduction

One of the main iranian programmers is converting Date of conputer to Hijri Shamsi Date. The Hijri date have to kind. First Hijri Shamsi that it dates is related to Sun and the second one is hijri Ghamari that related to moon. the Hijri Shamsi is one of the most exact calendars in the world and it's made by Khayyam (iranian astrologer).

but as you know computer calendar work with gregorian calendar and any other kind of calendars need to convert from gregorian. this article try to convert Gregorian date to Hijri Shamsi and Hijri Shamsi date to Gregorian.

The main must we know for this converting is the diffrence of this calndars is 621 years. but one main problem is leap years in both calendars.

In Hijri Shamsi calendar the years that the remainder of their devide to 33 be one of 1, 5, 9, 13, 17, 22, 26, 30 this numbers is leap year.

And in Gregorian we the date class of .NET can calculate for us the gregorian year.
example:

Date.IsLeapYear(2005)

this function return a bool value.

Calculating Shamsi Date

Time Line of years

The point number 1 in picture show the start date of Shamsi Year

The point number 2 show Gregorian start date

the point number 3 show finish date of Shamsi year

The point number 4 show finish date of Gregorian year

First we devision 621 years from Gregorian year.

Year = GregorianDate.Year - 621

at this point we will be some where between point number 2 and 4. If we were after number 3 it means the diffrence year is 621 years but if we were before point number 3 the diffrence of years will be 622 years.

For finding this:

<BR>If ShamsiIsLeap(Year - 1) = True And Date.IsLeapYear(GregorianDate.Year) Then<BR>    ToEid = 80 'To Eid is diffrence between point number 2 and 3<BR>Else<BR>    ToEid = 79<BR>End If

If the passed days of Gregorian date were fewer than ToEid it means diffrence of years is 622 Years

       If GregorianDate.DayOfYear <= ToEid Then<BR>            Year -= 1 'Diffrence is 622 Years<BR>            Elapsed = 286 + GregorianDate.DayOfYear<BR>            If ShamsiIsLeap(Year) And Not Date.IsLeapYear(GregorianDate.Year) Then<BR>                Elapsed += 1<BR>            End If<BR>        Else<BR>            Elapsed = GregorianDate.DayOfYear - ToEid<BR>        End If

Elapsed is passed days of Shamsi year. and finally we convert passed days to Shamsi Date

DayOfYearToShamsi(Elapsed)
For converting Shamsi date to Gregorian we do this:
Private Sub ToGregorian()<BR>        Dim Y As Integer<BR>        Y = Year + 621<BR>        Dim DOY As Integer = DayOfYear()<BR>        Dim ToEid As Integer<BR>        Dim YearDays As Integer<BR>        If ShamsiIsLeap(Year - 1) And Date.IsLeapYear(Y) Then<BR>            ToEid = 80<BR>            YearDays = 366<BR>        Else<BR>            ToEid = 79<BR>            YearDays = 365<BR>        End If<BR>        Dim GDays As Integer = ToEid + DOY<BR>        If GDays > YearDays Then<BR>            GDays -= YearDays<BR>            Y += 1<BR>        End If<BR>        DayOfYearToGregorian(GDays, Y)<BR>End Sub<BR>

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Hamed J.I

Web Developer

Iran (Islamic Republic Of) Iran (Islamic Republic Of)

Member

I began programming with C/C++ when i was 15. Then try to learn VC++ but at the middle of my reading .NET came.
 
I began to read C# and VB.NET and also began designing basic websites by FrontPage and developed some websites for our school and some other companis.
 
Later learn Microcontroller and design some digital circuits with PIC microcontrollers for a industrial controller company.
 
As I learned SQL and ASP.NET developed some website such as news portals that are active now.
 
Now i'm a software student and teach programming in computer institues. And have my own job by getting projects from companies.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalmain form missing PinmemberMarwan11113:45 11 Jun '11  
GeneralCode Not Works Pinmembereg_Anubhava23:38 25 Oct '09  
GeneralIt works wrong PinmemberAlexQII0:26 30 Jan '09  
QuestionC# shamsi PinmemberMaryam_F21:34 28 Jul '06  
Generalshamsi Pinmembershereen20062:48 3 Apr '06  
GeneralRe: shamsi PinmemberHamed_ji4:41 3 Apr '06  
GeneralCan't Download this code Pinmembera_mohammadi_m18:37 12 Mar '06  
GeneralRe: Can't Download this code PinmemberHamed_ji5:45 17 Mar '06  
GeneralShamsi date in sql server PinmemberHossein Hayatbakhsh23:53 13 Feb '06  
GeneralRe: Shamsi date in sql server PinmemberHamed_ji21:40 14 Feb '06  
GeneralPersia .NET API PinmemberMajid Shahabfar8:41 11 Jan '06  
General.Net 2 and accuracy of algorithms PinmemberHomam855:42 11 Jan '06  
GeneralRe: .Net 2 and accuracy of algorithms PinmemberHamed_ji8:16 12 Jan '06  
GeneralRe: .Net 2 and accuracy of algorithms PinmemberHojjats9:15 13 Jan '06  
GeneralRe: .Net 2 and accuracy of algorithms PinmemberHamed_ji20:17 14 Jan '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 11 Jan 2006
Article Copyright 2006 by Hamed J.I
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid