sids

Java implementation for Simple Downlink Share Convention (SiDS) protocol

License

License

GroupId

GroupId

ru.r2cloud
ArtifactId

ArtifactId

sids
Last Version

Last Version

1.2
Release Date

Release Date

Type

Type

jar
Description

Description

sids
Java implementation for Simple Downlink Share Convention (SiDS) protocol
Project URL

Project URL

https://github.com/dernasherbrezon/sids
Source Code Management

Source Code Management

https://github.com/dernasherbrezon/sids

Download sids

How to add to project

<!-- https://jarcasting.com/artifacts/ru.r2cloud/sids/ -->
<dependency>
    <groupId>ru.r2cloud</groupId>
    <artifactId>sids</artifactId>
    <version>1.2</version>
</dependency>
// https://jarcasting.com/artifacts/ru.r2cloud/sids/
implementation 'ru.r2cloud:sids:1.2'
// https://jarcasting.com/artifacts/ru.r2cloud/sids/
implementation ("ru.r2cloud:sids:1.2")
'ru.r2cloud:sids:jar:1.2'
<dependency org="ru.r2cloud" name="sids" rev="1.2">
  <artifact name="sids" type="jar" />
</dependency>
@Grapes(
@Grab(group='ru.r2cloud', module='sids', version='1.2')
)
libraryDependencies += "ru.r2cloud" % "sids" % "1.2"
[ru.r2cloud/sids "1.2"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

About Build Status Quality Gate Status Maven Central

Java implementation for Simple Downlink Share Convention (SiDS) protocol.

Usage

  1. Add maven dependency:
<dependency>
	<groupId>ru.r2cloud</groupId>
	<artifactId>sids</artifactId>
	<version>1.2</version>
</dependency>
  1. Setup client and make a request:
SidsClient client = new SidsClient("https://example.com", DEFAULT_TIMEOUT);
Telemetry cur = new Telemetry();
cur.setCallsign("your_call_sign");
cur.setFrame(new byte[]{ binary data });
cur.setLatitude(station.getLat());
cur.setLongitude(station.getLon());
cur.setNoradId("satellite_norad_id");
cur.setTimestamp(new Date());
client.send(cur);

Versions

Version
1.2
1.1
1.0