Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.CRUNCHDROID:itl-java:'
}
dependencies {
implementation("com.github.CRUNCHDROID:itl-java:")
}
<dependency>
<groupId>com.github.CRUNCHDROID</groupId>
<artifactId>itl-java</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.CRUNCHDROID" % "itl-java" % ""
:dependencies [[com.github.CRUNCHDROID/itl-java ""]]
ITL Java is a Java library for calculating prayer (salat) times, qibla direction, and Hijri date. This library is a porting of the legendary ITL (Islamic Tools and Libraries) with Java flavor. The original C version is available at arabeyes-org/ITL repository.
The original ITL is licensed under GNU LGPL (Lesser General Public License) which means it is free and remains free: not only the "original" is free but also the "derived", which implies that ITL Java is also LGPL-licensed. Any modification of the library must be released (open-sourced) under LGPL license. Any program using this library must make the users free (provide a flexible way) to change the library implementation/version used.
For more flexible license please see ICLib.
Examples below will show how simple using this library. Longer example is available in
Example.java
1. Prayer times and qibla direction
// Initialize
Prayer calculator = new Prayer()
.setMethod(StandardMethod.EGYPT_SURVEY) // Egyptian General Authority of Survey
.setLocation(-6.37812775, 106.8342445, 0) // lat, lng, height AMSL
.setPressure(1010)
.setTemperature(10)
.setDate(new Date(), TimeZone.getDefault()); // today, here
TimeNames names = TimeNames.getInstance(Locale.getDefault()); // for getting prayer names
// Calculate prayer times
for (Map.Entry<TimeType, PrayerTime> time : calculator.getPrayerTimes().entrySet()) {
System.out.printf("%s %s\n",
names.get(time.getKey()), // prayer name
time.getValue()); // prayer time
}
// or
for (PrayerTime time : calculator.getPrayerTimeArray()) {
System.out.println(time.format("HH:mm:ss"));
}
// Calculate qibla direction
System.out.println("Qibla: " + calculator.getNorthQibla());
2. Hijri date
// Initialize
Hijri calculator = new Hijri(Locale.getDefault()); // locale used for names (months, etc)
ConvertedDate date;
// Gregorian to Hijri
date = calculator.hDate(2, 12, 2016); // or hDate(new Date());
System.out.println(date.format("EEEE, d MMMM yyyy G")); // converted date
System.out.printf("%s-%s-%s\n", // converted date
date.getDayOfMonth(),
date.getMonth(),
date.getYear());
System.out.println(date.formatSource("EEE, dd-MM-yy")); // source date (before converted)
System.out.println(date.toDate());
// Hijri to Gregorian
date = calculator.gDate(1, 9, 1438);
System.out.println(date.format("EEE, d MMM yyyy G"));
3. Umm Al-Qura date
// Initialize
UmmAlqura calculator = new UmmAlqura(Locale.getDefault());
ConvertedDate date;
// Gregorian to Hijri
date = calculator.g2h(2, 12, 2016);
System.out.println(date.format("EEEE, d MMMM yyyy"));
// Hijri to Gregorian
date = calculator.h2g(1, 9, 1438);
System.out.println(date.format("EEE, d MMM yyyy"));
You can adjust your own method before calculating. However, it is encouraged to use one of these built-in methods.
Some differences between the original C and this Java version:
hijri/hijri.h
and hijri/hijri.c
→
org.arabeyes.itl.hijri.HijriModule
and org.arabeyes.itl.hijri.Hijri
hijri/hijri.h/sDate
→
org.arabeyes.itl.hijri.HijriModule.sDate
and org.arabeyes.itl.hijri.ConvertedDate
hijri/umm_alqura.c
→
org.arabeyes.itl.hijri.UmmAlquraModule
and org.arabeyes.itl.hijri.UmmAlqura
prayertime/astro.h
and prayertime/astro.c
→
org.arabeyes.itl.prayertime.AstroModule
prayertime/prayer.h
and prayertime/prayer.c
→
org.arabeyes.itl.prayertime.PrayerModule
and org.arabeyes.itl.prayertime.Prayer
prayertime/prayer.h/Prayer
→
org.arabeyes.itl.prayertime.PrayerTime
prayertime/prayer.h/Method
→
org.arabeyes.itl.prayertime.Method
prayertime/prayer.c/methods
→
org.arabeyes.itl.prayertime.StandardMethod
prayertime/prayer.c/exmethods
→
org.arabeyes.itl.prayertime.ExtremeMethod
prayertime/prayer.c/salatType
→
org.arabeyes.itl.prayertime.TimeType