An open API service indexing awesome lists of open source software.

https://github.com/defective4/itu-prefix-resolver

This library resolves country names from amateur callsigns
https://github.com/defective4/itu-prefix-resolver

ham itu java library maven radio

Last synced: 2 months ago
JSON representation

This library resolves country names from amateur callsigns

Awesome Lists containing this project

README

        

# ITU-Prefix-Resolver

ITU Prefix Resolver allows you to resolve country names from amateur callsigns.

# Installation
Include this in your `` section of `pom.xml`:
```xml

io.github.defective4.ham
itu-prefix-resolver
1.0

```

# Usage
Example usage:
```java
String callsign = "SP9ABC";
String country = CountryResolver.resolve(callsign);
System.out.println(country); // Poland
```