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
- Host: GitHub
- URL: https://github.com/defective4/itu-prefix-resolver
- Owner: Defective4
- License: mit
- Created: 2024-10-30T11:13:21.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-10-30T11:14:50.000Z (7 months ago)
- Last Synced: 2025-04-05T18:56:10.203Z (2 months ago)
- Topics: ham, itu, java, library, maven, radio
- Language: Java
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`:
```xmlio.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
```