Kandilli4j
A simple java api to read latest earthquakes from Kandilli Observatory and Earthquake Research Institute (Kandilli Rasathanesi)
Install / Use
/learn @bahtiyartan/Kandilli4jREADME
kandilli4j
A simple java api to read latest earthquakes from Kandilli Observatory and Earthquake Research Institute (Kandilli Rasathanesi)
Kandilli Rasathanesi sayfasına bağlanarak son depremleri getiren basit bir api.
#usage
EarthquakeListProvider iProvider = new EarthquakeListProvider();
try {
// reads all earthquakes
Vector<EarthquakeInfo> all = iProvider.getLastEarthquakes();
// reads last ten earthquakes
Vector<EarthquakeInfo> lastten = iProvider.getLastEarthquakes(10);
// reads all earthquakes greater than 4.0 (Ml)
Vector<EarthquakeInfo> allGreaterThan4Ml = iProvider.getLastEarthquakes(4.0);
// reads last ten earthquakes greater than 4.0 (Ml)
Vector<EarthquakeInfo> lastTenGreaterThan4Ml = iProvider.getLastEarthquakes(10, 4.0);
for (EarthquakeInfo iInfo : lastTenGreaterThan4Ml) {
System.out.println(iInfo.toString());
}
} catch (ReadEarthquakeException e) {
System.out.println("can not read earthquake information");
e.printStackTrace();
} catch (ParseEarthquakeException e) {
System.out.println("can not parse earthquake information");
e.printStackTrace();
}
Related Skills
proje
Interactive vocabulary learning platform with smart flashcards and spaced repetition for effective language acquisition.
YC-Killer
2.7kA library of enterprise-grade AI agents designed to democratize artificial intelligence and provide free, open-source alternatives to overvalued Y Combinator startups. If you are excited about democratizing AI access & AI agents, please star ⭐️ this repository and use the link in the readme to join our open source AI research team.
best-practices-researcher
The most comprehensive Claude Code skills registry | Web Search: https://skills-registry-web.vercel.app
groundhog
400Groundhog's primary purpose is to teach people how Cursor and all these other coding agents work under the hood. If you understand how these coding assistants work from first principles, then you can drive these tools harder (or perhaps make your own!).
