From 4c1ea3651d4c2a4a0d58560570cfdb87461753a4 Mon Sep 17 00:00:00 2001 From: xtof Date: Sat, 9 May 2020 12:14:06 +0200 Subject: [PATCH 01/10] feat: Add ModuleSatelliteDatabase and ApplicationSatelliteDatabase --- ApplicationSatelliteDatabaseCli/pom.xml | 145 + .../AppCli.java | 56 + .../cmd/CheckCmd.java | 31 + .../cmd/Cmd.java | 15 + .../cmd/HelpCmd.java | 15 + .../cmd/MergeCmd.java | 19 + .../cmd/OptionsAnalysis.java | 155 + .../cmd/ParameterSingleton.java | 62 + .../cmd/UpdateCmd.java | 58 + .../cmd/VersionCmd.java | 17 + .../src/test/data/FileIn/AmsatList.xml | 15821 ++++++++++++++++ .../src/test/data/in/AAUSAT-4.xml | 33 + .../src/test/data/in/ACRUX-1.xml | 43 + .../src/test/data/in/AISTECHSAT-2.xml | 26 + .../src/test/data/in/Aalto-1.xml | 25 + .../src/test/data/in/Aalto-2 (FI01).xml | 21 + .../src/test/data/in/Al-Farabi-2.xml | 25 + .../src/test/data/in/AmurSat (AmGU-1).xml | 26 + .../src/test/data/in/AoXiang-1 (CN04).xml | 39 + .../src/test/data/in/Aoba-Velox-4.xml | 67 + .../src/test/data/in/Armadillo.xml | 52 + .../src/test/data/in/Atlantis (US02).xml | 22 + .../cmd/CheckCmdTest.java | 40 + .../cmd/MergeCmdTest.java | 41 + .../cmd/UpdateCmdTest.java | 42 + ModuleSatelliteDatabase/pom.xml | 55 +- .../AmsatListFile.java | 103 + .../ModuleSatelliteDatabase/AppCli.java | 162 - .../CheckAmsatListFile.java | 110 + .../MergeAmsatListFile.java | 5 + .../UpdateAmsatListFile.java | 94 + .../CheckAmsatListFileTest.java | 40 + .../UpdateAmsatListFileTest.java | 38 + 33 files changed, 17312 insertions(+), 191 deletions(-) create mode 100644 ApplicationSatelliteDatabaseCli/pom.xml create mode 100644 ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/AppCli.java create mode 100644 ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmd.java create mode 100644 ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/Cmd.java create mode 100644 ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/HelpCmd.java create mode 100644 ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java create mode 100644 ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java create mode 100644 ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java create mode 100644 ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java create mode 100644 ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/FileIn/AmsatList.xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/AAUSAT-4.xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/ACRUX-1.xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/AISTECHSAT-2.xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-1.xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-2 (FI01).xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/Al-Farabi-2.xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/AmurSat (AmGU-1).xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/AoXiang-1 (CN04).xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/Aoba-Velox-4.xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/Armadillo.xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/data/in/Atlantis (US02).xml create mode 100644 ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmdTest.java create mode 100644 ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmdTest.java create mode 100644 ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmdTest.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java delete mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AppCli.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFile.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java create mode 100644 ModuleSatelliteDatabase/src/test/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFileTest.java create mode 100644 ModuleSatelliteDatabase/src/test/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFileTest.java diff --git a/ApplicationSatelliteDatabaseCli/pom.xml b/ApplicationSatelliteDatabaseCli/pom.xml new file mode 100644 index 00000000..ed886d97 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/pom.xml @@ -0,0 +1,145 @@ + + + + 4.0.0 + + + JOSAST-parent + org.josast + 0.0.2-SNAPSHOT + + + + + ApplicationSatelliteDatabaseCli + + + ApplicationSatelliteDatabaseCli + + http://www.example.com + + + + UTF-8 + 1.8 + 1.8 + + + 1.2.0 + 2.4.0-b180830.0359 + 3.0.0-M2 + 3.0.0-M2 + 3.0.0-M2 + + + + + + + junit + junit + 4.11 + test + + + + com.sun.activation + javax.activation + ${javax.activation.version} + + + commons-cli + commons-cli + 1.4 + + + + org.glassfish.jaxb + jaxb-runtime + 2.3.1 + runtime + + + + javax.xml.bind + jaxb-api + ${jaxb.api.version} + + + + + + com.sun.xml.bind + jaxb-core + ${jaxb.core.version} + + + + com.sun.xml.bind + jaxb-impl + ${jaxb.impl.version} + + + + com.sun.xml.bind + jaxb-osgi + ${jaxb.osgi.version} + + + + + org.apache.logging.log4j + log4j-core + 2.8.2 + + + + + + org.json + json + 20190722 + + + org.josast + ModuleSatelliteDatabase + 0.0.1-SNAPSHOT + + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + make-assembly + package + + single + + + + + + + + org.josast.ApplicationSatelliteDatabaseCli.AppCli + + + + + jar-with-dependencies + + + + + + + + + + + diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/AppCli.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/AppCli.java new file mode 100644 index 00000000..f5761586 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/AppCli.java @@ -0,0 +1,56 @@ +package org.josast.ApplicationSatelliteDatabaseCli; + + + +import java.util.Vector; + + +import org.apache.commons.cli.ParseException; + +import org.josast.ApplicationSatelliteDatabaseCli.cmd.Cmd; +import org.josast.ApplicationSatelliteDatabaseCli.cmd.OptionsAnalysis; + + +/** + * Classe Java for mergin AMSAT-LIST Xml file + * + * Concept : read all files from a directory add this file data in memory save + * all data in one file + * + * @author chris + * + */ + +public class AppCli { + + Vector vec =null; + + + public AppCli(String[] args) + { + OptionsAnalysis opt=new OptionsAnalysis(args); + vec = opt.getCommandes(); + + } + + private void execute() { + for(Cmd cmd : vec){ + cmd.excute(); + } + + } + + + public static void main(String[] args) throws ParseException { + + + AppCli app = new AppCli(args); + app.execute(); + + + } + + + + +} diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmd.java new file mode 100644 index 00000000..5a8500c3 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmd.java @@ -0,0 +1,31 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import java.util.logging.Logger; + +import org.josast.ModuleSatelliteDatabase.CheckAmsatListFile; + +public class CheckCmd implements Cmd { + + private Logger log = Logger.getLogger(getClass().getName()); + + @Override + public void excute() { + log.info(CheckCmd.class.getName()); + ParameterSingleton parameter = ParameterSingleton.getInstance(); + if(parameter.getInputFile()!=null) + { + + CheckAmsatListFile check = new CheckAmsatListFile(parameter.getInputFile()); + System.out.println("Multiple Name"); + System.out.println(check.checkUniqueSatelliteName()); + System.out.println("Multiple Nasa ID"); + System.out.println(check.checkUniqueSatelliteNasaID()); + } + else + { + System.out.println("Input filename not set"); + } + + } + +} diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/Cmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/Cmd.java new file mode 100644 index 00000000..8931ef95 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/Cmd.java @@ -0,0 +1,15 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +/** + * Command pattern interface + * @author chris + * + */ +public interface Cmd { + + /** + * Excecute command + */ + void excute(); + +} diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/HelpCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/HelpCmd.java new file mode 100644 index 00000000..8da986c1 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/HelpCmd.java @@ -0,0 +1,15 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import org.apache.commons.cli.HelpFormatter; + +public class HelpCmd implements Cmd { + + @Override + public void excute() { + final HelpFormatter formatter = new HelpFormatter(); + ParameterSingleton parameter = ParameterSingleton.getInstance(); + formatter.printHelp(parameter.getArg0(), parameter.getOption(), true); + + } + +} diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java new file mode 100644 index 00000000..641c3fd3 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java @@ -0,0 +1,19 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import java.util.logging.Logger; + +import org.josast.ModuleSatelliteDatabase.MergeAmsatListFile; + +public class MergeCmd implements Cmd { + private Logger log = Logger.getLogger(getClass().getName()); + @Override + public void excute() { + log.info(MergeCmd.class.getName()); + ParameterSingleton parameter = ParameterSingleton.getInstance(); + MergeAmsatListFile merge = new MergeAmsatListFile(); + merge.merge(parameter.getRepository(), parameter.getOutputFile()); + merge.save(parameter.getOutputFile()); + + } + +} diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java new file mode 100644 index 00000000..3342bd55 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java @@ -0,0 +1,155 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import java.util.Vector; +import java.util.logging.Logger; + +import org.apache.commons.cli.CommandLine; +import org.apache.commons.cli.CommandLineParser; +import org.apache.commons.cli.DefaultParser; +import org.apache.commons.cli.Option; +import org.apache.commons.cli.Options; +import org.apache.commons.cli.ParseException; + + +public class OptionsAnalysis { + private Logger log = Logger.getLogger(getClass().getName()); + Vector listeCmd = new Vector() ; + Options options = null; + CommandLine line = null; + + + + public OptionsAnalysis(String[] args) { + options = configParameters(); + CommandLineParser parser = new DefaultParser(); + + try { + line = parser.parse(options, args); + listeCmd = interprete(line, args); + } catch (ParseException e) { + log.severe(" Unrecognise option " + e.toString()); + System.exit(0); + } + } + + public Vector getCommandes() { + return listeCmd; + } + + public void setListeCmd(Vector listeCmd) { + this.listeCmd = listeCmd; + } + + private static Options configParameters() { + + final Option versionOption = Option.builder("V") + + .longOpt("Version") // + + .desc("Return application version") + + .hasArg(false) + + .required(false) + + .build(); + + final Option mergeOption = Option.builder("M") + + .longOpt("Merge") // + + .desc("Merge all input folder to new Directoy to ouput xml file ") + + .hasArg(false) + + .required(false) + + .build(); + + final Option directoryOption = Option.builder("D") + + .longOpt("Directory") // + + .desc("Input directory with all input xml files (*.xml) ") + + .hasArg(true) + + .argName("Repository") + + .required(false) + + .build(); + + final Option outputFileOption = Option.builder("O") + + .longOpt("OutputFile") // + + .desc("output file") + + .hasArg(true) + + .argName("OutputFile") + + .required(false) + + .build(); + + final Option helpFileOption = Option.builder("h") + + .longOpt("help") + + .desc("display help message") + + .build(); + + final Options options = new Options(); + + options.addOption(versionOption); + options.addOption(mergeOption); + options.addOption(directoryOption); + options.addOption(outputFileOption); + options.addOption(helpFileOption); + + return options; + + } + + + + private Vector interprete(CommandLine line, String[] args) { + + Vector cmdList = new Vector(); + ParameterSingleton parameter = ParameterSingleton.getInstance(); + + cmdList.add(new VersionCmd()); + + if (line.hasOption("help")) { + parameter.setArg0(args[0]); + parameter.setOption(options); + cmdList.add(new HelpCmd()); + + } + + + if (line.hasOption("Version")) { + return cmdList; + } + + + + + if (line.hasOption("Merge")) { + MergeCmd cmd = new MergeCmd(); + cmdList.add(cmd); + + } + + + parameter.setOutputFile( line.getOptionValue("OutputFile", "")); + parameter.setRepository( line.getOptionValue("Directory", "")); + + + return cmdList; + } + +} diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java new file mode 100644 index 00000000..71fb3455 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java @@ -0,0 +1,62 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import org.apache.commons.cli.Options; + +public class ParameterSingleton { + + private static ParameterSingleton INSTANCE; + private String Repository; + private String OutputFile; + private String arg0; + private Options option; + + + private ParameterSingleton() { + } + + public static ParameterSingleton getInstance() { + if(INSTANCE == null) { + INSTANCE = new ParameterSingleton(); + } + + return INSTANCE; + } + + public String getRepository() { + return Repository; + } + + public void setRepository(String repository) { + Repository = repository; + } + + public String getOutputFile() { + return OutputFile; + } + + public void setOutputFile(String outputFile) { + OutputFile = outputFile; + } + + public String getArg0() { + return arg0; + } + + public void setArg0(String arg0) { + this.arg0 = arg0; + } + + public Options getOption() { + return option; + } + + public void setOption(Options option) { + this.option = option; + } + + + + // getters and setters + + +} diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java new file mode 100644 index 00000000..b2fbaccf --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java @@ -0,0 +1,58 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import java.io.File; +import java.util.logging.Logger; + +import org.josast.ModuleSatelliteDatabase.UpdateAmsatListFile; + +public class UpdateCmd implements Cmd { + + private Logger log = Logger.getLogger(getClass().getName()); + + @Override + public void excute() { + ParameterSingleton parameter = ParameterSingleton.getInstance(); + String inputRepository = parameter.getInputDirectory(); + String outputRepository = parameter.getOutputDirectory(); + File inputRepertoire = new File(inputRepository); + File outputRepertoire = new File (outputRepository); + + int i = 0; + if (inputRepertoire.isDirectory() == false) { + log.severe(inputRepository+"is not a repository"); +// System.err.println("not a repository"); +// return -1; + } + if (outputRepertoire.exists() == false) { + log.info("create "+ inputRepository); + outputRepertoire.mkdir(); +// System.err.println("not a repository"); +// return -1; + } else if (outputRepertoire.isDirectory() == false) { + log.severe(outputRepertoire+"is not a repository"); +// System.err.println("not a repository"); +// return -1; + } + + + File[] inputsfiles = inputRepertoire.listFiles(); + if (inputsfiles == null) { + log.severe(inputRepository+"Repository empty"); +// System.err.println("Repository empty"); +// return -1; + } else { + for (i = 0; i < inputsfiles.length; i++) { + + UpdateAmsatListFile up = new UpdateAmsatListFile(inputsfiles[i].getAbsolutePath()); + up.updateStatus(); + up.saveUpdateFile(outputRepository+"\\"+inputsfiles[i].getName()); +// System.out.println(inputsfiles[i]); +// appendSatellites(inputsfiles[i]); + } + } + + + } + + +} diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java new file mode 100644 index 00000000..ecaab37a --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java @@ -0,0 +1,17 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import org.josast.ApplicationSatelliteDatabaseCli.AppCli; + +public class VersionCmd implements Cmd { + + String version = "0.7"; + + /** + * + */ + @Override + public void excute() { + System.out.println(AppCli.class.getSimpleName() + " " + version); + } + +} diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/FileIn/AmsatList.xml b/ApplicationSatelliteDatabaseCli/src/test/data/FileIn/AmsatList.xml new file mode 100644 index 00000000..81f94589 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/FileIn/AmsatList.xml @@ -0,0 +1,15821 @@ + + + + SwampSat + 39402 + Not operational + + + Main + 437385000 + + FSK + 9600 + + + + + + Ho'oponopono-2 + 39403 + 2013-064Z + Not operational + + + Main + 427220000 + + GMSK + 9600 + + + + + + ChargerSat-1 + 39405 + Not operational + + + Main + 437405000 + + FSK + 9600 + + + + + + Vermont Lunar + 39407 + decayed + + + Main + 437305000 + + FSK + 9600 + + W1VTC2 + + + + + ArduSat-1 + 39412 + decayed + + + Main + 437000000 + + MSK + 9600 + + + CW + + WG9XFC-1 + + + + + PicoDragon + 39413 + decayed + + + Main + 437250000 + + AFSK + 1200 + + + CW + + XV9PID + + + + + ArduSat-X + 39414 + decayed + + + Main + 437007000 + + MSK + 9600 + + + CW + + WG9XFC-X + + + + + TechEdSat-3 + 39415 + Not operational + + + Main + 437465000 + + AFSK + 9600 + + + CW + + + + + + ZACube-1 + 39417 + 2013-066B + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + F'SATI Web Page + http://www.cput.ac.za/blogs/fsati/zacube-1/ + Project page + + + Twitter + https://www.twitter.com/fsatispace + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=204 + + + + + Main + 14099000 + + GMSK + 9600 + + + AFSK + 1200 + + + CW + + 123456 + + + Repeater + + 145860000 + + + 437245000 + + + + + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + fsatispace@gmail.com + + + + + UniSat-5 + 39421 + 2013-066F + Not operational + + + Main + 437175000 + + GMSK + 9600 + + + + + + Triton-1 + 39427 + 2013-066M + Not operational + + + Main + 2408000000 + + 1200bps RC-BPSK CW + + + CW + + TRIV0 TRIV1 + + + + + Delfi-n3Xt + 39428 + 2013-066N + Not operational + + + Main + 2405000000 + + BPSK MSK + 2400 + + + + + + GOMX-1 + 39430 + 2013-066Q + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=231 + + + + Twitter + https://gomspace.com/gomx-1.aspx + + + + + Main + 437250000 + + GMSK + 1200 + + + GMSK + 2400 + + + GMSK + 4800 + + + GMSK + 9600 + + + CW + + + + + + BRITE-PL + 39431 + 2013-066R + Not operational + + + Main + 145890000 + + 32Kbps-256Kbps + + + + + + ICUBE-1 + 39432 + 2013-066S + Not operational + + + Main + 145947000 + + 1200bps BPSK/FM-DSB_Transponder + + + + + + Humsat-D + 39433 + 2013-066T + Not operational + + + Main + 437325000 + + CW + + + + + + Wren + 39435 + 2013-066V + Not operational + + + Main + 437405000 + + FSK + 1200 + + + CW + + + + + + Eagle-2 ($50SAT MO-76) + 39436 + Decayed + MO-76 + Draft + 2015-05-30 + + project website + http://www.50dollarsat.info/ + $50SAT (aka Eagle-2 prelaunch) MO-76 was launched aboard Unisat-5 on November 21, 2013 from Dombarovsky, Russia on a Dnepr vehicle. This project is a joint effort involving Professor Bob Twiggs, Morehead State University, Howie DeFelice, AB2S, Michael Kirkhart, KD8QBA, and Stuart Robinson, GW7HPW. (Source AMSAT-NA) + + + Yahoo group Discution + https://groups.yahoo.com/neo/groups/50dollarsat/conversations/topics + + + + Main + 437505000 + + GFSK + 9600 + + + CW + + + RTTY + + + + + + Eagle-1 (BeakerSat-1) + 39437 + 2013-066X + Not operational + + + Main + 437465000 + + GFSK + 9600 + + + + + + VELOX-P2 + 39438 + 2013-066Y + Not operational + + + Main + 145980000 + + BPSK + 1200 + + + CW + + + + + + First-MOVE + 39439 + 2013-066Z + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=125 + + + + Mission information + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/first-move/ + First-MOVE On-Board Computer Damaged - As we posted on December 21st 2013, we are not receiving data beacons from First-MOVE anymore. In contrast to the nominal mode in which CW beacons and AX.25 beacons alternate every 60 seconds, we are now hearing only CW beacons every 60 seconds. After trying many different approaches to reset our on-board computer via telecommands we re-analyzed our current options again last week. This analysis resulted in the conclusion, that the on-board software has sustained irreparable damage. The fact that we are receiving CW beacons every 60 seconds indicates, that both the transceiver and the power supply are functioning properly. For the transceiver to return to the 60 second CW beacon mode, it has to be power cycled, since this mode cannot be activated by the on-board software. This means that there was definitively an interruption in the power supply. In case of an interruption, the computer should deactivate the 60 second CW beacon mode as the first task during the boot sequence. As this has obviously not happened, the only conclusion is, that the computer is not getting through the entire boot sequence, probably because it was damaged due to an erroneous write process on the memory chip. Since there is no way to upload new software to First-MOVE we see no possibility to continue the mission and perform the planned experiments. It seems that First-MOVE has become inactive after a very short lifetime. We will still receive the CW beacons, but we will not hear anything but his name. + + + + + Main + 145970000 + + BPSK + 1200 + + + CW + + MOVE1 + + + Repeater + + 435520000 + + + 145970000 + + + + + + + CubeBug-2 (LO-74) + 39440 + 2013-066AA + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=310 + + + + + Main + 437445000 + + FSK + 1200 + + + GMSK + 9600 + + CUBEB2-6 + + + + + Amateur Radio – PEØSAT - information on telemetry data + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/cubebug-2/ + + + + + + + + + + + PUCP-SAT-1 + 39442 + 2013-066AC + Not operational + + + Main + 145840000 + + AFSK + 1200 + + + + + + Qubescout-S1 + 39443 + 2013-066AD + Not operational + + + Main + 437525000 + + GMSK + 9600 + + + + + + FUNcube-1 (AO-73) + 39444 + 2013-066AE + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + project information page + https://funcube.org.uk/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=158 + + + + + BPSK + 145935000 + + BPSK + 1200 + + + + CW + 145815000 + + CW + + + + + Repeater + + 435130000 + 435150000 + + + 145950000 + 145970000 + + + + + + + HiNCube + 39445 + 2013-066AF + Not operational + + + Main + 438305000 + + + + + + + + UWE-3 + 39446 + 2013-066AG + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + project information page + http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-3/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=134 + + + + + Main + 437385000 + + FSK + 9600 + + + CW + + DP0UWG + + + + + Amateur Radio – PEØSAT - information on telemetry data + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/uwe-3/ + + + + + + + http://www.dk3wn.info/files/uwe3_online.zip + + + + FIREBIRD-U1 + 39463 + 2013-072B + Not operational + + + Main + 437405000 + + FSK + 19200 + + K7MSU + + + + + FIREBIRD-U2 + 39464 + 2013-072C + Not operational + + + Main + 437230000 + + FSK + 19200 + + K7MSU + + + + + MCubed-2 + 39469 + 2013-072H + Operational + + 2013-12-06 + Air Force Western Test Range + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=265 + + + + MCubed-2 recovery + http://www.ne.jp/asahi/hamradio/je9pel/mc2recov.htm + + + + + Main + 437485000 + + GMSK + 9600 + + NOCALL + + + + + CUNYSAT-1 + 39470 + 2013-072J + Not operational + + + Main + 437505000 + + GMSK + 9600 + + + CW + + + + + + IPEX + 39471 + 2013-072K + Not operational + + + Main + 437270000 + + GMSK + 9600 + + + CW + + KJ6KSL-1 + + + + + AIST-1 (RS-41) + 39492 + 2013-078C + Not operational + + + Main + 435265000 + + CW + + + + + + E-Star-2 + 41459 + 2016-025D + Operational + + 2016-04-25 + Kourou, Guyanne Française + + Verified + 2019-02-14 + + Porject page + http://www.cubesatteam-polito.com/e-star-ii/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=241 + + + + + Main + 437485000 + + AFSK + 1200 + + + CW + + + + + + + CAERUS + 0 + Verified + 2019-02-14 + + + Main + 437600000 + + AFSK + 1200 + + KJ6FIX-1 + + + + + TetherSat + 0 + No operational + Verified + 2019-02-14 + + + Main + 437100000 + + GFSK + 9600 + + + + + + LitSat-1 + 39568 + decayed + + + Main + 145965000 + + SSB + + + + Main + 435138000 + + FSK + 9600 + + + CW + + LY1LS + + + + + LituanicaSAT-1 (LO-78) + 39569 + decayed + + + Main + 435176000 + + FM_tone 670Hz + + + + Main + 437275000 + + FSK + 9600 + + + CW + + LY5N + + + + + ArduSat-2 + 39570 + decayed + + + Main + 437000000 + + 9600bps MSK CCSDS + + + + + + UAPSat-1 + 39571 + Not operational + + + Main + 437385000 + + AFSK + 1200 + + OA0UAP-1 + + + + + ShindaiSat + 39572 + decayed + + + Main + 437485000 + + AFSK + 1200 + + + CW + + JR0ZST + + + + + ITF-1 + 39573 + decayed + + + Main + 437525000 + + CW + + JQ1ZLO + + + + + OPUSAT + 39575 + decayed + + + Main + 437154000 + + AFSK + 1200 + + + GFSK + 9600 + + + CW + + JL3ZCA + + + + + TeikyoSat-3 + 39576 + decayed + + + Main + 437450000 + + AFSK + 1200 + + + CW + + JQ1ZKM + + + + + ARTSAT1-INVADER (CO-77) + 39577 + decayed + + + Main + 437325000 + + 1k2AFSK DigiTalker CW + + + CW + + JQ1ZKK + + + + + STARS-II (Mother) + 39579 + decayed + + + Main + 437245000 + + AFSK + 1200 + + + CW + + JR5YDX + + + Main + 437255000 + + AFSK + 1200 + + + CW + + JR5YDY + + + + + SporeSat + 39681 + unknown + + + Main + 437100000 + + AFSK + 1200 + + + + + + All-Star - THEIA + 39683 + unknown + + + Main + 2401700000 + + BPSK + 256000 + + COSGC1AS + + + + + PhoneSat25 + 39684 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + + KickSat + 39685 + decayed + + + Main + 437505000 + + 1200bps AFSK + 1200 + + KD2BHC + + + + + SPROUT + 39770 + 2014-029E + Operational + + 2014-05-24 + Tanegashima Space Center + + None + Verified + 2015-08-10 + + SPace Research On Unique Technology Web Page + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/ + There are 3 main missions in SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector + Trois missions sont allouées au satellite SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector + + + + CW - FM Packet + 437525000 + + AFSK + 1200 + + + GMSK + 9600 + + + CW + + JQ1ZJQ + + + SSTV + 437600000 + + SSTV + + + + Digipeater + + 437600000 + + + 437600000 + + + + + + Sprout telemetry format + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Formats%20of%20telemetry-e.html + + + Sprout team propose different types of Report + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Amateur%20satellite-e.html + + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Software-e.html + + + + BugSat-1 + 40014 + 2014-033E + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=376 + + + + Wikipedia + https://en.wikipedia.org/wiki/BugSat_1 + + + + + Main + 437445000 + + GMSK + 9600 + + LU7AA + + + + + + + + + + + + + http://www.dk3wn.info/software.shtml + + + + TabletSat-Aurora + 40017 + 2014-033H + Not operational + + + Main + 437050000 + + 9600bps GMSK D-STAR + + + + + + DUCHIFAT-1 + 40021 + 2014-033M + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=258 + + + + Duchifat 1 site + http://www.h-space-lab.org/php/duchifat1-en.php + + + + + Main + 145980000 + + BPSK + 1200 + + + CW + + 4X4HSL + + + APRS Digipeater + + 435220000 + + + 145980000 + + AFSK / BPSK + 1200 + + + + + + + + + + + + + http://www.h-space-lab.org/download/Public%20Release.rar + + + + PACE + 40023 + No operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + + + + + NanosatC-Br1 + 40024 + 2014-033Q + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=209 + + + + NanosatC-Br1 + http://www.h-space-lab.org/php/duchifat1-en.php + + + + + Main + 145865000 + + BPSK + 1200 + + + CW + + NCBR1 + + + + + Operating for Amateur Radio + http://www.inpe.br/crs/nanosat/acompanhe/radio_amadores.php + + + Data acquisition page + http://www3.inpe.br/crs/nanosat/aquisicao_dados.php + + + http://www.dk3wn.info/files/ncbr1.zip + + + + QB50p1 - FUNcube3 + 40025 + 2014-033R + Not operational + + 2014-06-19 + Yasniy site + + EO-79 + Verified + 2015-06-04 + + QB50 Precursor Mission page + https://www.qb50.eu/index.php/precursor-flight + EO-79, also known as QB50p1 and FUNcube-3, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-NL constructed transponder as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months. (Source AMSAT-NA) + + + Funcube Home page + http://funcube.org.uk/ + Funcube project home page + + + + Main + 145815000 + + BPSK + 1200 + + + CW + + QB50P1 + + + Main + + 435035000 + 435065000 + + + 145935000 + 145965000 + + SSB/CW + yes + + + + + QB50 precursor amateur radio operator page + https://www.qb50.eu/index.php/precursor-amateur-radio-operator + + + CW beacon content + http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + operations@isispace.nl + + + + + POPSAT-HIP1 + 40028 + 2014-033U + Not operational + + + Main + 437405000 + + 1k2 9k6 CCSDS CW + + + CW + + POPSAT + + + + + DTUSat-2 + 40030 + 2014-033W + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=87 + + + + DTUsat Site + http://www.dtusat.dtu.dk/ + + + + + Main + 2401835000 + + MSK + 1200 + + + CW + + + + + + + QB50p2 (EO-80) + 40032 + 2014-033Y + Not operational + + 2014-06-19 + Yasniy site + + EO-80 + Verified + 2015-06-04 + + QB50 Precursor Mission page + https://www.qb50.eu/index.php/precursor-flight + EO-80, also known as QB50p2, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-F constructed repeater as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months.(source AMSAT-NA) + + + + Le@af 4 - Edition spéciale QB50 + http://www.amsat-f.org/spip/IMG/pdf/leaf4.pdf + Amsat-Francophone publication dedicated to QB50P2 + + + + Main + 145880000 + + BPSK + 1200 + + + CW + + QB50P2 + + + FM voice repeater + + 435080000 + + + 145840000 + + FM + 210.7 + + + + + QB50 precursor amateur radio operator page + https://www.qb50.eu/index.php/precursor-amateur-radio-operator + + + CW beacon content + http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + operations@isispace.nl + + + + + ANTELSat + 40034 + 2014-033AA + Not operational + + + Main + 437280000 + + AFSK GFSK/MSK + 1200 + + + CW + + CX1SAT + + + + + PolyITAN-1 + 40042 + 2014-033AJ + Operational + + + Main + 437675000 + + FSK + 9600 + + + CW + + EM0UKP + + + + + TigriSat + 40043 + 2014-033AK + Operational + + + Main + 436000000 + + FSK + 9600 + + HNATIG + + + + + ESTELLE + 0 + Unknown + Verified + 2019-02-14 + + + Main + 580000000 + + 1Mbps-10Mbps GFSK BPSK + + + + + + UNSA-SAT1 + 0 + Unknown + Verified + 2019-02-14 + + + Main + 34000000 + + BPSK + 230000 + + + + + + AISat + 40054 + 2014-034B + Not operational + + + Main + 437511000 + + CW + + DP0AIS + + + + + CanX-4 + 40055 + 2014-034C + Not operational + + + Main + 437365000 + + 32Kbps-256Kbps BPSK + + + + + + CanX-5 + 40056 + 2014-034D + Not operational + + + Main + 437365000 + + 32Kbps-256Kbps BPSK + + + + + + VELOX-I + 40057 + 2014-034E + Not operational + + + Main + 145980000 + + FSK + 9600 + + + CW + + VELOXI + + + + + IiNUSat + 0 + Unknown + Verified + 2019-02-14 + + + Main + 436915000 + + 1k2 9k6 2FSK + + + + + + DX-1 + 40071 + 2014-037C + Operational + + + Main + 438225000 + + GFSK + 9600 + + DAURIA + + + + + UKube-1-FUNcube-2 + 40074 + 2014-037F + Operational + + + Main + 145840000 + + BPSK + 1200 + + + CW + + UKUBE1 + + + Main + 145915000 + + BPSK + 1200 + + + + + + myPocketQub + 0 + Unknown + Verified + 2018-11-04 + + + Main + 437425000 + + + + + + + + Venta-1 + 42791 + 2017-036AC + Not operational + Verified + 2018-11-04 + + + Main + 437325000 + + + + + + + + Chasqui-1 + 40117 + Not operational + + + Main + 437025000 + + AFSK + 1200 + + + GMSK + 9600 + + + + + + 4M-LXS + 0 + Deep Space + + + Main + 145980000 + + WSJT-JT65B + + LX0OHB + + + + + ChubuSat-1 + 40300 + 2014-070C + Not operational + + + Main + 437485000 + + 1200bps 9600bps CW + + + CW + + JJ2YJY + + + + + TSUBAME + 40302 + 2014-070E + Not operational + + + Main + 437275000 + + AFSK + 1200 + + + CW + + JQ1ZHX + + + + + SpinSat + 40314 + Not operational + + + Main + 437230000 + + GFSK + 9600 + + + + + + ARTSAT2-DESPATCH (FO-81) + 40321 + Deep space + + + Main + 437325000 + + CW + + JQ1ZNN + + + + + SHIN'EN2 (FO-82) + 40320 + Deep space + + + Main + 437385000 + + Transponder WSJT/CW + + JG6YIG + + + + + FIREBIRD-II FU3 + 40377 + 2015-003B + Operational + + + Main + 437395000 + + FSK + 19200 + + K7MSU + + + + + FIREBIRD-II FU4 + 40378 + 2015-003C + Operational + + + Main + 437219000 + + FSK + 19200 + + K7MSU + + + + + GRIFEX + 40379 + 2015-003D + Operational + + + Main + 438480000 + + GMSK + 1200 + + KD8SPS + + + + + ExoCube + 40380 + 2015-003E + Operational + + + Main + 437270000 + + FSK + 9600 + + + CW + + KK6HGC XO3 + + + + + AESP14 + 40389 + Not operational + + + Main + 437600000 + + GFSK + 9600 + + + + + + Lambda-Sat + 40458 + No operational + + + Main + 437462000 + + AFSK + 1200 + + + + + + AggieSat-4 + 41313 + Not operational + + + Main + 436250000 + + FSK + 9600 + + + + + + Bevo-2 + 41314 + Not operational + + + Main + 437325000 + + FSK + 38400 + + + CW + + + + + + LightSail-A + 40661 + decayed + + + Main + 437435000 + + FSK + 9600 + + + + + + ARC-1 + 40969 + 2015-058F + Not operational + + + Main + 437565000 + + CW + + + + + + BisonSat + 40968 + 2015-058E + Operational + + + Main + 437375000 + + GMSK + 9600 + + + + + + AO-85 (Fox-1A) + 40967 + 2015-058D + Operational + + + Main + 145980000 + + FM CTCSS 670Hz + + + + + + Pocket-PUCP + 0 + No operational + Verified + 2019-02-14 + + + Main + 437200000 + + AFSK + 1200 + + + CW + + + + + + PTecSat + 0 + Unknown + + + Main + 436000000 + + AFSK + 1200 + + + + + + USS Langley + 40652 + Not operational + + + Main + 437475000 + + AFSK + 1200 + + + + + + Argus + 0 + Unknown + + + Main + 437290000 + + AFSK + 1200 + + + + + + EDSN + -29 + + + Main + 437100000 + + AFSK + 1200 + + + + + + HawaiiSat1 (HiakaSat1) + 0 + Fail + Verified + 2018-11-04 + + + Main + 437270500 + + GFSK + 9600 + + + + Main + 145980500 + + GFSK + 9600 + + + + + + ORS-Squared + 0 + Fail + Verified + 2018-11-04 + + + Main + 437325000 + + GMSK + 9600 + + + + + + PrintSat + 0 + Fail + Verified + 2018-11-04 + + + Main + 437325000 + + GMSK + 9600 + + + + + + SeeMe + 0 + To be launched + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=457 + SeeMehas been coordinated by IARU + SeeMe a été coordonné par l'IARU + + + + Telemetry 1 + 437425000 + + + + + + + + Telemetry 2 + 437450000 + + + + + + + + Telemetry 3 + 2424250000 + + BPSK + 1.6Mbps + + + + + + + + + + + + + + + + + + + K2SAT + 43761 + To be launched + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=552 + K2SAT has been coordinated by IARU + K2SAT a été coordonné par l'IARU + + + K2SAT S-band image receiver + https://destevez.net/2018/07/k2sat-s-band-image-receiver/ + Technical article from DANIEL ESTÉVEZ + Article technique de DANIEL ESTÉVEZ + + + + Telemetry 1 + 435835000 + + BPSK + 9600 + + + + + Telemetry 2 + 2404000000 + + QPSK + 2 Mb + + + + + FM voice repeater + + 145980000 + + + 436225000 + + FM + + + + + + + + + + + + + + + + + MINXSS 2 + 41474 + decayed + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + Project web site + http://lasp.colorado.edu/home/minxss/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=477 + MINXSS 2 has been coordinated by IARU + MINXSS 2 a été coordonné par l'IARU + + + + Telemetry 1 + 437250000 + + GMSK + 9600 + + + + + + + Ham radio information + http://lasp.colorado.edu/home/minxss/data/ + + + + + + + https://github.com/jmason86/MinXSS_Beacon_Decoder/releases + + + + Karksat + 44427 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=608 + coordinated by IARU + coordonné par l'IARU + + + Project Site + https://www.kraksat.pl/space/ + project page + site du projet + + + + Beacon + 435500000 + + AFSK + 1200 + + + AFSK + 9600 + + + + + + + + + + + + + + + + + + + OSIRIS-3U + 43027 + Decayed + Draft + 2019-08-07 + + + Beacon + 437505000 + + GMSK + 9600 Bps + + + GMSK + 38400 Bps + + + + + + + Snuglite + 43784 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=529 + Snuglite has been coordinated by IARU + Snuglite a été coordonné par l'IARU + + + + Telemetry 1 + 437275000 + + GMSK + 9600 + + + + + + + + + + + + + + + + + + + Knacksat + 43761 + Not Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-16 + + project pages + http://www.knacksat.space + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=520 + Knacksat has been coordinated by IARU + Knacksat a été coordonné par l'IARU + + + + FUNcube telemetry + 435635000 + + CW + + + + GFSK + 9600 + + + GFSK + 1200 + + HS0K + + + + + Hamradio Information + http://www.knacksat.space/amateur-radio + + + + + + knacksat@gmail.com + + + + + Range B + 43773 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 + RAnge B has been coordinated by IARU + RAnge B a été coordonné par l'IARU + + + + Telemetry 1 + 437475000 + + FSK + 0.1 kbps to 115.2 kbps + + + MSK + 0.1 kbps to 115.2 kbps + + + GFSK + 0.1 kbps to 115.2 kbps + + + GMSK + 0.1 kbps to 115.2 kbps + + + + + + + n + + + + + + + + + + + + VO-96 (ExseedSat-1) + 43758 + Not operational + + 2018-12-03 + Vandenberg Air Force Base, California + + VUsat-OSCAR 96 (VO-96) + Verified + 2018-10-29 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=636 + ExseedSat 1 has been coordinated by IARU + ExseedSat 1 a été coordonné par l'IARU + + + + TLM 1 + 145900000 + + + + + + + + FM voice repeater and digipeater (APRS ) + + 435340000 + + + 145900000 + + FM + 67 + + + + + + + + + + + + + + + + + AO-95 (Fox-1Cliff) + 43770 + 2018-099N + Operational + + 2018-12-03 + Vandenberg Air Force Base, California + + AMSAT-OSCAR 95 (AO-95) + Verified + 2018-10-29 + + project + https://www.amsat.org/fox-1cliff-ready-for-launch/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=455 + Fox-1Cliff has been coordinated by IARU + Fox-1Cliff a été coordonné par l'IARU + + + + Telemetry 1 + 145920000 + + FSK + + + + + + FM voice repeater mode 1 + + 435300000 + + + 145920000 + + FM + 67 + + + FM voice repeater Mode 2 + + 1267300000 + + + 145920000 + + FM + 67 + + + + + Telemesure software : FOXTelem + https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ + + + + + + + https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ + + + + Irvine 02 + 43789 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2018-10-29 + + Project + https://www.irvinecubesat.org/irvine02 + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 + Irvine 02 has been coordinated by IARU + Irvine 02a été coordonné par l'IARU + + + + Telemetry 1 + 437450000 + + FSK + 9600 + + + + + + + + + + + + + + + + + + + CubeSail 1 + 43851 + To be Launch + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Draft + 2018-12-11 + + + + + + + + Telemetry + 437505000 + + GMSK + 9600 bauds + + + + + + + + + + + + + + + + + + + DIWATA-2 + 43678 + 2018-084H + Operational + + 2018-10-29 + Tanegeshima Space Center in Japan + + PO-101 + Verified + 2018-11-06 + + Project page + http://phl-microsat.upd.edu.ph/diwata2 + + + + Facebook + https://www.facebook.com/PHLMicrosat + + + + + Telemetry APRS + 145900000 + + BPSK + 1200 bauds + + + CW + 120 WPM + + D1W2PH + + + Main + + 437700000 + + + 145900000 + + FM / APRS + + + + + + Telemetrie description + http://phl-microsat.upd.edu.ph/diwata2 + + + + + + + + + + + TBEx-a + 44356 + + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 + has been coordinated by IARU + a été coordonné par l'IARU + + + project information + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + Telemetry 1 + 437535000 + + GMSK + 9k6 + + + + + + + TBEx – Tandem Beacon Experiment + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + SATNOGS : Kaitai Struct for Telemetry + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + jwcutler@umich.edu + + + + + EagleSat-1 + 43018 + No operational + Draft + 2019-08-07 + + + Beacon + 437645000 + + AFSK + 1200bps + + + + + + + FACSAT + 43721 + Operational + + India + + + Verified + 2018-11-27 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=635 + FACSAT Hello World has been coordinated by IARU + FACSAT Hello World a été coordonné par l'IARU + + + + Telemetry 1 + 437350000 + + GMSK + 9k6 + + + + + + + + + + + + + + + + + + + InnoSAT-2 + 43738 + Operational + + India + + + Verified + 2018-11-27 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=548 + InnoSAT-2 has been coordinated by IARU + InnoSAT-2 a été coordonné par l'IARU + + + + Telemetry 1 + 437450000 + + + + + + + + + + + + + + + + + + + + + + XW-2D (CAS 3D) + 40907 + 2015-049J + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + Draft + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation + + + + CW Beacon + 145855000 + + CW + + BJ1SE + + + Digital Telemetry + 145835000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SE + + + Linear Transponder + + 435210000 + 435230000 + + + 14586000 + 14588000 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + + Irvine + 43693 + 2018-088D + Operational + + + + + Verified + 2018-12-03 + + + Telemetry 1 + 437800000 + + FSK + 9600 + + + CW + + + WI2XPH + + + + + + + + + + + + + + + + + Robusta-1B + 42792 + 2017-036AD + Operational + Verified + 2018-12-03 + + + Main + 437325000 + + AFSK + 1200 + + + CW + + + FX6FR + + + + + SERPENS + 40897 + decayed + + 2015-09-17 + International Space Station + + None + Verified + 2015-09-19 + + SERPENS Ham Radio Page + http://www.aerospace.unb.br/serpens_radioamateurs + SERPENS is a 3U CubeSat which was developed by students at the University of Brasilia and focuses on meteorological data collection. + + + + Sector A + 145980000 + + GFSK + 9600 + + PY0ESA + + + SECTOR B + 437365000 + + CW + + + MSK + 1200 + + PY0ESA + + + + + SERPEN HamRadio Home Page + http://www.aerospace.unb.br/serpens_radioamateurs + + + Report shall be sent by email + serpens.reports@aerospace.unb.br. + + + + + + XW-2A (CAS 3) + 40903 + 2015-049E + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + Draft + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréquences exploitées par la XW-2 constellation + + + + CW Beacon + 145660000 + + CW + + BJ1SB + + + Digital Telemetry + 145660000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SB + + + Linear Transponder + + 435030000 + 435050000 + + + 145665000 + 145685000 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + + XW-2B (CAS 3B) + 40911 + 2015-049N + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + verified + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation + + + + CW Beacon + 145725000 + + CW + + BJ1SC + + + Digital Telemetry + 145705000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SC + + + Linear Transponder + + 435090000 + 435110000 + + + 145815000 + 145795000 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + + XW-2C (CAS 3C) + 40906 + 2015-049H + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + Verified + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation + + + + CW Beacon + 145790000 + + CW + + BJ1SD + + + Digital Telemetry + 145770000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SD + + + Linear Transponder + + 435150000 + 435170000 + + + 145795000 + 14581500 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + + ParkinsonSAT (PSAT) + 40654 + 2015-025D + Not operational + NO-84 + Verified + 2018-12-03 + + PSAT + http://aprs.org/psat.html + ParkinsonSAT description + + + + APRS + 145825000 + + AX25 + 1200 + + + + PSK31 + 435350000 + + PSK31 + + W3ADO-5 + + + PSK31 + + 28120000 + + + 435035000 + + SSB PSK31 + + + + + LIVE Telemetry Downlink + http://pcsat.aprs.org + + + + + AO-1(Oscar-1) + 214 + decayed + AO-1 + Verified + 2018-11-28 + + + Main + 144983000 + + CW + + + + + + + AO-2(Oscar-2) + 305 + decayed + AO-2 + Verified + 2018-11-28 + + + Main + 144983000 + + CW + + + + + + + AO-3(Oscar-3) + 1293 + 1965-016F + Not operational + AO-3 + Verified + 2018-11-28 + + + Main + + 145975000 + 146025000 + + + 144325000 + 144375000 + + SSB/CW + + + + + + AO-4(Oscar-4) + 1902 + decayed + AO-4 + Verified + 2018-11-28 + + + Main + + 432145000 + 432155000 + + + 144300000 + 144310000 + + SSB/CW + + + + + + AO-5(Oscar-5) + 4321 + 1970-008B + Not operational + AO-5 + Verified + 2018-11-28 + + + TLM1 + 144050000 + + CW + + + + + TLM2 + 29450000 + + CW + + + + + + + F-1 + 38855 + decayed + Verified + 2018-12-03 + + + Main + 437485000 + + AFSK + 1200 + + + CW + + XV1VN + + + + + WE_WISH + 38856 + decayed + Verified + 2018-12-03 + + + Main + 437505000 + + CW + + + SSTV + + + AFSK + 2400 + + JQ1ZIJ + + + + + UniSat-6 + 40012 + 2014-033C + Operational + Verified + 2018-11-27 + + + Main + 437425000 + + GMSK + 9600 + + + CW + + II0US + + + + + BeEagleSat (TR01) + 42736 + Decayed + INIT + 2019-08-07 + + + Beacon + 437370000 + + GMSK + 9600bps + + ON01TR + + + + + DaVinci + 0 + To be Launch + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2018-12-11 + + IARU coordination + http://www.amsatuk.me.uk/iaru/informal_detail.php?serialnum=524 + No frequency coordination has been provided + + + DaVinci project pages + https://www.projectdavincicubesat.org/ + + + + Twitter @DavinciCubeSat + https://twitter.com/davincicubesat + + + + FaceBook + https://www.facebook.com/Project-DaVinci-1225716617456409/ + + + + + Telemetry + 436500000 + + GMSK + 9600 bauds + + + CW + + + + + + + + + + + + + + + + + + + + D-Star ONE Sparrow + 43881 + Operational + + 2018-12-27 + Vostochny + + + Verified + 2018-12-27 + + D-Star ONE presentation + http://www.d-star.one/ + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + + + + Telemetry + 435700000 + + GMSK Mobitex (CMX990) + 4800 bauds + + DP1GOS + + + D-Star + + 437325000 + + + 435525000 + + DSTAR + + + + + + + + + + + + + + + + + UWE-4 + 43880 + 2018-111E + Operational + + 2018-12-27 + Vostochny + + + Verified + 2018-12-28 + + UWE-4 presentation + http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-4/news/ + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=627 + + + + + Telemetry + 437385000 + + FSK AX25 + 9600 bauds + + DP0UWH + + + Digieater + + 437385000 + + + 437385000 + + + + + + + Telemetry XL file descriptor + http://www7.informatik.uni-wuerzburg.de/fileadmin/10030700/user_upload/forschung/Space_Exploration_Group/UWE4/UWE-4_Beacon.xlsx + + + + + + uwe4@informatik.uni-wuerzburg.de + http://www.dk3wn.info/files/uwe4.zip + + + + CHOMPTT + 43855 + Operational + + 2018-12-16 + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2018-12-18 + + CHOMPTT presentation + http://mstl.atl.calpoly.edu/~bklofas/Presentations/DevelopersWorkshop2014/Conklin_CHOMPTT.pdf + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=523 + + + + + Telemetry + 437560000 + + GMSK + 9600 bauds + + + + + + + + + + + + + + + + + + + Reaktor Hello World + 43743 + Operational + + 2018-12-16 + India + + + Verified + 2018-12-18 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=503 + Reaktor Hello World has been coordinated by IARU + Reaktor Hello World a été coordonné par l'IARU + + + + Telemetry 1 + 437775000 + + CW + + + + 2GFSK + 9k6 + + + + + Telemetry corrected frequency + 437775270 + + CW + + + + 2GFSK + 9k6 + + + + + Telemetry 1 + 2410000000 + + MSK + 1Mbs + + + + + + + + + + + + + + + + + + + CSIM + 43793 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=585 + CSIM has been coordinated by IARU + CSIM a été coordonné par l'IARU + + + + Telemetry 1 + 437250000 + + GMSK + 19200 kbps + + + + + + + + + + + + + + + + + + + ESEO (FUNcube 4) + 43792 + Operational + + 2018-12-03 + Vandenberg Air Force Base, California + + + Verified + 2019-03-19 + + Project description + https://www.esa.int/Education/ESEO + During its operational mission phase, ESEO will run the scientific experiments and test the various technology demonstrators designed and built by the students, and constantly monitor its own performance. + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=82 + ESEO has been coordinated by IARU + ESEO a été coordonné par l'IARU + + + + TLM 1 + 145895000 + + BPSK + 4800 bps + + + BPSK + 1200 bps + + + + + TLM 2 + 437000000 + + BPSK + 4800 bps + + + BPSK + 1200 bps + + + + + FM voice repeater + + 1263500000 + + + 145895000 + + FM + 67 + + + + + + + + + + + + + https://download.funcube.org.uk/ESEO_Dashboard_v1177.msi + + + + ITASAT 1 + 43786 + Not operational + + + + + Verified + 2018-12-18 + + project Web site + http://www.itasat.ita.br/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=435 + ITASAT 1 has been coordinated by IARU + ITASAT 1 a été coordonné par l'IARU + + + + Telemetry 1 + 145860000 + + BPSK + 1200 + + + + + Telemetry 1 + 2400150000 + + BPSK + 14400 + + + + + + + + + + + + + + + + + + + JY1SAT -JO-97 + 43803 + Operational + + 2018-12-03 + Vandenberg Air Force Base, California + + Jordan-OSCAR 97 (JO-97) + Verified + 2018-12-18 + + JY1SAT launch information and Dashboard + https://funcube.org.uk/2018/11/15/jy1sat/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=554 + JY1SAT has been coordinated by IARU + JY1SAT a été coordonné par l'IARU + + + + FUNcube telemetry + 145840000 + + BPSK + 1200 + + + SSDV + + + JY1 + + + Main + + 435100000 + 435120000 + + + 145855000 + 145875000 + + SSB/CW + yes + + + + + Telemetry dashboard + http://data2.amsat-uk.org/ui/jy1sat-fm + + + + + + operations@funcube.org.uk + https://download.funcube.org.uk/JY11Sat_Dashboard_v1160.msi + + + + MOVE II + 43780 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + Project + https://www.move2space.de/MOVE-II/ + MOVE-II is a CubeSat, a tiny satellite with dimensions of 10 x 10 x 13 cm and a mass of 1.2 kg. It is the second satellite of the Technical University of Munich (TUM) and the follow-up project of First-MOVE. The name MOVE is an acronym and stands for Munich Orbital Verification Experiment. The number “II” implies that it is the second of its series. + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 + MOVE II has been coordinated by IARU + MOVE II a été coordonné par l'IARU + + + + Telemetry 1 + 145950000 + + BPSK + 9600 + + + CW + + + DP0MOV + + + + + Hamradio information + https://www.move2space.de/MOVE-II/radio-amateurs/ + + + + + + + + + + + Range A + 43798 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 + RAnge A has been coordinated by IARU + RAnge A a été coordonné par l'IARU + + + + Telemetry 1 + 437150000 + + FSK + 0.1 kbps to 115.2 kbps + + + MSK + 0.1 kbps to 115.2 kbps + + + GFSK + 0.1 kbps to 115.2 kbps + + + GMSK + 0.1 kbps to 115.2 kbps + + + + + + + + + + + + + + + + + + + Suomi 100 + 43804 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + Project + http://www.suomi100satelliitti.fi/eng + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=507 + Suomi 100 has been coordinated by IARU + Suomi 100 a été coordonné par l'IARU + + + + Telemetry 1 + 437775000 + + + + + + + + Telemetry 2 + 2410000000 + + + + + + + + + + + + + + + + + + + + + + SNUSAT-2 + 43782 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=509 + SNUSAT-2 has been coordinated by IARU + SNUSAT-2 a été coordonné par l'IARU + + + + Telemetry 1 + 437625000 + + BPSK + 9600 + + + + + Telemetry 2 + 2402000000 + + DQPSK + 1.06Mbit/s + + + + + + + + + + + + + + + + + + + ISX-SR1 -ISX - CP11 + 0 + To be Launch + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2018-12-11 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=514 + + + + Project page + http://www.polysat.org/in-development/ + + + + + Telemetry UHF + 437150000 + + FSK + 9600 bauds + + + + + Telemetry 2 + 5840000000 + + QPSK + 10 Mb + + + + + + + + + + + + + + + + + + + Atlantis (US02) + 42737 + Decayed + INIT + 2019-08-07 + + + Beacon + 436390000 + + GMSK + 9600bps + + WD8DOX + + + + + UiTMSat-1 + 43589 + 1998-067PD + Operational + + 2018-08-10 + ISS + + + Verified + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=563 + + + + + Main + 437375000 + + BPSK + 1200 + + + CW + + JG6YKN + + + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + + MAYA-1 + 43590 + 1998-067PE + Operational + + 2018-08-10 + ISS + + + Verified + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=564 + + + + + Main + 437375000 + + BPSK + 1200 + + + CW + + JG6YKM + + + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + + SIRIUSSAT-1 (SXC1-181 RS13S) + 43595 + 1998-067PG + Operational + + 2018-08-15 + ISS + + + Verified + 2019-02-14 + + Siriussat information page (Russian) + http://sputnix.ru/ru/nashi-sputniki/siriussat-1 + + + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + + + Siriussat hamradio information from Sputnix companie + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + hamradio information from Spunix Companie + + + + Main + 435570000 + + GMSK + 4800 + + RS13S + + + + + + + + + + + + siriussat@sputnix.ru + + Télécharger SPUTNIX Telemetry Viewer (Win ENG) + http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip + + + + + TechnoSat + 42829 + Operational + draft + 2019-08-07 + + + Beacon + 435950000 + + GMSK + 4800bps + + + GMSK + 9600bps + + + CW + + + DP0TBA + + + + + Ten-Koh + 43677 + Operational + Draft + 2019-08-07 + + Project information + http://kit-okuyama-lab.com/en/ten-koh/ + + + + + Beacon + 437390000 + + AFSK + 1200bps + + + GMSK + 9600bps + + + CW + + + + WSJT + + + JG6YKY + + + + + amateur information + http://kit-okuyama-lab.com/en/ten-koh/for-amateur-radio-reception/ + + + + + BHUTAN-1 + 43591 + 1998-067PF + Operational + + 2018-08-10 + ISS + + + Verified + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=562 + + + + + Main + 437375000 + + BPSK + 1200 + + + CW + + JG6YKL + + + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + + AO-6(Phase-2A) + 6236 + 1972-082B + Not operational + AO-6 + + + Main + 0 + + CW + + + + + + + AO-7(Phase-2B) + 7530 + 1974-089B + Operational + + 1974-11-15 + Vandenberg + + AO-7 + + + Mode V/A (A) TLM Beacon + 29502000 + + CW + + + + + Mode U/V (B) TLM Beacon + 1459775000 + + CW + + + + + Mode U TLM Beacon + 435100000 + + CW + + + + + + + AO-8(Phase-2D) + 10703 + 1978-026B + Not operational + AO-8 + + + Main + 29402000 + + CW + + + + + Main + 435095000 + + CW + + + + + + + UO-9 (UoSAT-1) + 12888 + decayed + + 1981-10-06 + Vandenberg + + UO-9 + + + Main + 2401000000 + + CW + + + + + + + AO-10(Phase-3B) + 14129 + 1983-058B + Not operational + AO-10 + + + Main + 145810000 + + CW + + + + + + + UO-11(UoSAT-2) + 14781 + 1984-021B + Operational + UO-11 + + + Main + 2401500000 + + PSK + + UOSAT-2 + + + + + MIR + 16609 + decayed + + + Main + 145985000 + + PSK + + R0MIR-1 + + + + + RS-12(Sputnik) + 21089 + 1991-007A + Not operational + + + Main + 29408000 + + CW + + + + + Main + 145862000 + + CW + + + + + + + AO-13(Phase-3C) + 19216 + decayed + AO-13 + + + Main + 145812000 + + CW + + + + + + + UO-14(UoSAT-3) + 20437 + 1990-005B + Not operational + UO-14 + + + Main + 0 + + FM + + + + + + + RS-15(Sputnik) + 23439 + 1994-085A + Operational + + + Main + 29352000 + + CW + + + + + + + AO-16(PACSAT) + 20439 + 1990-005D + Not operational + AO-16 + + + Main + 2401143000 + + PSK + + PACSAT-11-12 + + + + + DO-17(DOVE) + 20440 + 1990-005E + Not operational + DO-17 + + + Main + 2401220000 + + AFSK + 1200 + + DOVE-1 + + + + + WO-18(WEBERSAT) + 20441 + 1990-005F + Not operational + WO-18 + + + Main + 0 + + PSK + 1200 + + + + + + + LO-19(LUSAT) + 20442 + 1990-005G + Not operational + LO-19 + + + Main + 437125000 + + CW + + LUSAT-11-12 + + + + + FO-20(JAS-1b) + 20480 + 1990-013C + Not operational + FO-20 + + + Main + 435795000 + + CW + + + + + + + RS-21(Sputnik) + 27394 + Decayed + + + Main + 145825000 + + CW + + + + + + + RS-22(Mozhayets) + 27939 + 2003-042A + Operational + + + Main + 435352000 + + CW + + + + + + + UO-22(UoSAT-5) + 21575 + 1991-050B + Not operational + UO-22 + + + Main + 435120000 + + FSK + 9600 + + UOSAT5-11-12 + + + + + KO-23(KITSAT-A) + 22077 + 1992-052B + Not operational + KO-23 + + + Main + 435175000 + + FSK + 9600 + + HL01-11-12 + + + + + KO-25(KITSAT-B) + 22828 + 1993-061F + Not operational + KO-25 + + + Main + 436500000 + + FSK + 9600 + + HL02-11-12 + + + + + RS-25 + 28898 + 2005-043G + Unknown + + + Main + 435325000 + + CW + + + + + + + SAFIR-S + 25399 + 1998-043F + Not operational + Verified + 2019-02-14 + + + Main + 2401900000 + + FSK + 9600 + + DP1AIS + + + + + IO-26(ITAMSAT) + 22826 + 1993-061D + Not operational + IO-26 + + + Main + 435791000 + + PSK + 1200 + + ITMSAT-11-12 + + + + + AO-27(EYESAT-A) + 22825 + 1993-061C + Not operational + AO-27 + + + Main + 436795000 + + AFSK + 1200 + + + + + + + PO-28(POSAT) + 22829 + 1993-061G + Not operational + PO-28 + + + Main + 0 + + FSK + 9600 + + POSAT1-11-12 + + + + + FO-29(JAS-2) + 24278 + 1996-046B + Operational + FO-29 + Draft + 2019-08-05 + + + Main + 4357964000 + + CW + + 8J1JCS + + + + + TO-31(TMSAT-1) + 25396 + 1998-043C + Not operational + TO-31 + + + Main + 436925000 + + FSK + 9600 + + TMSAT1-11-12 + + + + + GO-32(TechSat) + 25397 + 1998-043D + Operational + GO-32 + + + Main + 435225000 + + FSK + 9600 + + 4XTECH-11-12 + + + + + SO-33(SEDSAT-1) + 25509 + 1998-061B + Not operational + SO-33 + + + Main + 437910000 + + FSK + 9600 + + SEDSAT-1 + + + + + PO-34(PANSAT) + 25520 + 1998-064B + Not operational + PO-34 + + + Main + 0 + + Spectrum + + + + + + + ISS + 25544 + 1998-067A + Operational + Draft + 2019-08-05 + + + Main + 0 + + Voice(Reg1) + + NA1SS + + + Main + 0 + + Voice(Reg23) + + NA1SS + + + Main + 145800000 + + Packet + + RS0ISS + + + Main + 437550000 + + APRS + + RS0ISS + + + Main + 145825000 + + APRS + + RS0ISS-4-11 + + + + + SO-35(SUNSAT-1) + 25636 + 1999-008C + Not operational + SO-35 + + + Main + 145825000 + + 9600bpsFM + + SUNSAT-3 + + + + + UO-36(UoSAT-12) + 25693 + 1999-021A + Not operational + UO-36 + + + Main + 437400000 + + FSK + 38400 + + UO121-11-12 + + + + + AO-37(ASUSAT) + 26065 + 2000-004E + Not operational + AO-37 + + + Main + 0 + + FSK + 9600 + + + + + + + OO-38(OPAL) + 26063 + 2000-004C + Not operational + OO-38 + + + Main + 437100000 + + FSK + 9600 + + KF6RFX + + + + + WO-39(JAWSAT) + 26061 + 2000-004A + Not operational + WO-39 + + + Main + 0 + + FSK + 9600 + + + + + + + AO-40(Phase-3D) + 26609 + 2000-072B + Not operational + AO-40 + + + Main + 2401323000 + + PSK + 400 + + + + + + + SO-41(SaudiSat-1a) + 26545 + 2000-057A + Not operational + SO-41 + + + Main + 436775000 + + FSK + 9600 + + SASAT1-11-12 + + + + + SO-42(SaudiSat-1b) + 26549 + 2000-057E + Not operational + SO-42 + + + Main + 436075000 + + FSK + 9600 + + SASAT2-11-12 + + + + + SO-43(Starshine) + 26929 + decayed + SO-43 + + + Main + 145820000 + + FSK + 9600 + + STRSHN + + + + + NO-44(PCsat1) + 26931 + 2001-043C + Operational + NO-44 + Draft + 2019-08-05 + + + Main + 145827000 + + AFSK + 1200 + + (A)PCSAT-1 + + + Main + 145827000 + + FSK + 9600 + + (A)PCSAT-2 + + + Main + 144390000 + + AFSK + 1200 + + (B)PCSAT-11 + + + Main + 144390000 + + FSK + 9600 + + (B)PCSAT-12 + + + + + NO-45(Sapphire) + 26932 + 2001-043D + Not operational + NO-45 + + + Main + 437100000 + + AFSK + 1200 + + KE6QMD + + + + + MO-46(TiungSat) + 26548 + 2000-057D + Not operational + MO-46 + + + Main + 437325000 + + FSK + 38400 + + MYSAT3-11-12 + + + + + BO-47(IDEFIX)BO-48(IDEFIX) + 27422 + 2002-021B + Not operational + BO-47 + + + BO-47 + 145840000 + + BPSK + 400 + + + + + BO-48 + 435270000 + + BPSK + 400 + + + + + + + AO-49(Rubin-2) + 27605 + 2002-058A + Not operational + AO-49 + + + Main + 145825000 + + U/1200D/9600 + + MSK + + + + + SO-50(SaudiSat-1c) + 27607 + 2002-058C + Operational + SO-50 + + + Main + 0 + + FM_tone670Hz + + + + + + + DTUSAT + 27842 + 2003-031C + Not operational + + + Main + 437475000 + + AFSK + 2400 + + OZ2DTU + + + + + AAUSAT + 27846 + 2003-031G + Not operational + + + Main + 437450000 + + GMSK + 9600 + + + + + + + CANX-1 + 27847 + 2003-031H + Not operational + + + Main + 437880000 + + AFSK + 1200 + + VA3SFL + + + + + QUAKESAT + 27845 + 2003-031F + Not operational + + + Main + 436682000 + + FSK + 9600 + + KD7OVB + + + + + AO-51(Echo) + 28375 + 2004-025K + Not operational + AO-51 + + + Main + 435150000 + + FM_tone670Hz + + + + + Main + 435150000 + + FSK + + 9600 + PECHO-11-12 + + + Main + 435150000 + + FSK + + 9600 + PACB-11-12 + + + + + VO-52(Hamsat) + 28650 + 2005-017B + Not operational + + + Main + 145936000 + + SSBCarrier + + Indian + + + Main + 145860000 + + CW + + Dutch + + + + + PCSat2 + 0 + Failed + Verified + 2019-02-14 + + + Main + 437975000 + + FSK + 9600 + + PC2TLM + + + + + UWE-1 + 28892 + 2005-043C + Not operational + + + Main + 437505000 + + AFSK + 1200 + + DP0UWE + + + + + XO-53(SSETI) + 28894 + 2005-043E + Not operational + XO-53 + + + Main + 437250000 + + FSK + 9600 + + SSETI1 + + + + + AO-54(SuitSat) + 28933 + Not Operational + AO-54 + Draft + 2019-08-05 + + + Main + 0 + + FM + + + + + + + CO-55(CUTE-I) + 27844 + 2003-031E + Operational + CO-55 + + + Main + 4368375000 + + AFSK + 1200 + + JQ1YCY + + + + + CO-56(CUTE17) + 28941 + decayed + CO-56 + + + Main + 437382000 + + AFSK + 1200 + + JQ1YPC + + + Main + 437382000 + + GMSK + 9600 + + + + + + + CO-57(XI-IV) + 27848 + 2003-031J + Operational + CO-57 + + + Main + 4368475000 + + AFSK + 1200 + + + CW + + JQ1YCW + + + + + CO-58(XI-V) + 28895 + 2005-043F + Operational + CO-58 + + + Main + 437465000 + + AFSK + 1200 + + + CW + + JQ1YGW + + + + + NCUBE2 + 28897 + 2005-043H + Not operational + + + Main + 437305000 + + FSK + 9600 + + LA1CUB + + + + + SACRED + 0 + Failed + Verified + 2019-02-14 + + Wiki page + https://en.wikipedia.org/wiki/SACRED + + + + + Main + 0 + + AFSK + 1200 + + WA4CEW + + + + + ION + 0 + Failed + Verified + 2019-02-14 + + + Main + 437505000 + + AFSK + 1200 + + + + + + + RINCON + 0 + Failed + Verified + 2019-02-14 + + + Main + 437345000 + + AFSK + 1200 + + WA4CEW + + + + + ICEcube1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + FSK + 9600 + + W2CXM + + + + + KUTESatPathfinder + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + AFSK + 1200 + + KC0RMW + + + + + nCUBE-1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + GMSK + 9600 + + LA1CUB + + + + + HAUSAT-1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 437465000 + + AFSK + 1200 + + D90HP + + + + + SEEDS + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + AFSK + 1200 + + JQ1YGU + + + + + PolySatCP2 + 0 + Failed + Verified + 2019-02-14 + + + Main + 437325000 + + AFSK + 1200 + + + + + + + AeroCube1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + GFSK + 9600 + + + + + + + MEROPE + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + AFSK + 1200 + + K7MSU-1 + + + + + MeaHuaka'iVoyager + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + AFSK + 1200 + + + + + + + ICEcube2 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + FSK + 9600 + + N2VR + + + + + PolySatCP1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + 15bpsDTMFCW + + N6CP + + + + + PICPOT + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + FSK + 9600 + + + + + Main + 0 + + 10kbitGFSK + + + + + + + HO-59(HITSAT) + 29484 + decayed + + + Main + 437275000 + + AFSK + 1200 + + JR8YJT + + + + + GeneSat-1 + 29655 + decayed + + + Main + 437065000 + + AFSK + 1200 + + KE7EGC + + + + + NMARS + 29662 + decayed + + + Main + 0 + + AFSK + 1200 + + + + + + + NO-60(RAFT) + 29661 + decayed + NO-60 + + + Main + 145825000 + + AFSK + 1200 + + RAFT + + + + + NO-61(ANDE) + 29664 + decayed + NO-61 + + + Main + 145825000 + + AFSK + 1200 + + ANDE-1 + + + + + NO-62(FCAL) + 29667 + decayed + NO-62 + + + Main + 437385000 + + AFSK + 1200 + + KD4HBO + + + + + PO-63(PehuenSat) + 29709 + PO-63 + + + Main + 145825000 + + AFSK + 1200 + + LU1YUC + + + + + AeroCube-2 + 31122 + 2007-012F + Not operational + + + Main + 0 + + GFSK + 9600 + + + + + + + MAST + 31126 + 2007-012K + Not operational + + + Main + 0 + + FHSS + + + + + + + PolySatCP3 + 31128 + 2007-012M + Not operational + + + Main + 0 + + AFSK + 1200 + + + + + + + LIBERTAD-1 + 31129 + 2007-012N + Not operational + + + Main + 437399000 + + AFSK + 1200 + + 5K3L + + + + + CAPE-1 + 31130 + 2007-012P + Not operational + + + Main + 435248000 + + AFSK + 1200 + + K5USL + + + + + PolySatCP4 + 31132 + 2007-012Q + Not operational + + + Main + 437323000 + + SSB + 1200 + + N6CP + + + + + CSTB-1 + 31133 + 2007-012R + Not operational + + + Main + 0 + + AFSK + 1200 + + + + + + + CUTE17+APDII + 32785 + 2008-021C + Operational + CO-65 + Draft + 2019-08-05 + + + Main + 0 + + GMSK + 9600 + + JQ1YTC + + + Main + 437275000 + + AFSK + 1200 + + + CW + + JQ1YTC + + + + + COMPASS-1 + 32787 + 2008-021E + Not operational + + + Main + 437275000 + + AFSK + 1200 + + + CW + + DP0COM + + + + + AAUSAT-II + 32788 + 2008-021F + Operational + + + Main + 437432000 + + FFSK/MSK + 1200 + + + + + Main + 437432000 + + FSK + 9600 + + OZ2CUB + + + + + DO-64(DELFI-C3) + 32789 + 2008-021G + Operational + DO-64 + Draft + 2019-08-05 + + + Main + 1458675000 + + BPSK + 1200 + + DLFIC3 + + + Main + 145930000 + + CW + + DLFIC3 + + + + + CANX-2 + 32790 + 2008-021H + Not operational + + + Main + 0 + + OverGSonly + + VA3SFL + + + Main + 0 + + 6KbpsGMSK + + VA3SFL + + + + + CO-66(SEEDS-II) + 32791 + 2008-021J + Operational + CO-66 + + + Main + 437485000 + + 1200bpsFMCWTalk + + erJQ1YGU + + + + + RS-30(Yubileiniy) + 32953 + 2008-025A + Not operational + + Draft + 2019-08-05 + + + Main + 435315000 + + CW + + RS30 + + + + + PRISM(HITOMI) + 33493 + 2009-002B + Operational + + + Main + 437250000 + + AFSK + + + GMSK + + + CW + + JQ1YCX + + + + + KAGAYAKI + 33495 + 2009-002D + Not operational + + + Main + 437375000 + + FSK + 9600 + + + CW + + + + + + + SOHLA-1(MAIDO-1) + 33496 + 2009-002E + Not operational + + + Main + 437505000 + + AFSK + 1200 + + + CW + + JL3YUS + + + + + STARS(KUKAI) + 33498 + 2009-002G + Operational + + + Main + 437305000 + + FM + 1200 + + + CW + + JR5YBN(mother + + + Main + 437275000 + + FM + 1200 + + + CW + + JR5YBO(daught + + + + + KKS-1(KISEKI) + 33499 + 2009-002H + Operational + + + Main + 437385000 + + AFSK + 1200 + + + CW + + JQ1YYY + + + + + PharmaSat-1 + 35002 + Not operational + + + Main + 437465000 + + AFSK + 1200 + + KE7EGC + + + + + CP-6 + 35003 + Not operational + + + Main + 437365000 + + AFSK + 1200 + + + CW + + N6CP + + + + + HawkSat-1 + 35004 + Not operational + + + Main + 437345000 + + AFSK + 1200 + + + + + + + DRAGONSat(AggieSat-2) + 35690 + decayed + Verified + 2019-02-14 + + + Main + 436250000 + + FSK + 19200 + + + + + Main + 437325000 + + FSK + 9600 + + + + + + + ANDE-2(Pollux) + 35693 + decayed + + + Main + 145825000 + + AFSK + 1200 + + POLLUX-1 + + + Main + 145825000 + + AFSK + 1200 + + KD4HBO-1 + + + + + RS-28(UgatuSat) + 35869 + 2009-049D + Not operational + + Draft + 2019-08-05 + + + Main + 435264000 + + CW + + RS28 + + + + + RS-38(Tatiana-2) + 35868 + 2009-049E + Not operational + + Draft + 2019-08-05 + + + Main + 435490000 + + CW + + RS38 + + + + + SO-67(SumbandilaSat) + 35870 + 2009-049F + Not operational + + + Main + 435300000 + + FM_tone2336Hz + + + + + + + SwissCube-1 + 35932 + 2009-051B + Operational + + + Main + 437505000 + + BFSK + 1200 + + + CW + + HB9EG1 + + + + + BeeSat-1 + 35933 + 2009-051C + Not operational + + Draft + 2019-08-05 + + + Main + 436000000 + + GMSK + 4800 9600 + + DP0BEE + + + + + UWE-2 + 35934 + 2009-051D + Not operational + + + Main + 437385000 + + AFSK + 1200 + + + CW + + + + + + + ITU-pSat1 + 35935 + 2009-051E + Operational + + + Main + 437325000 + + GFSK + 19200 + + + CW + + + + + + + HO-68(XW-1) + 36122 + 2009-072B + Operational + + + Main + 435790000 + + SSBinvertingCW + + BJ1SA-11-12 + + + Main + 435790000 + + FM_tone67Hz + + + CW + + BJ1SA-11-12 + + + + + Waseda-SAT2 + 36574 + decayed + + + Main + 437485000 + + FSK + 1200 + + + CW + + WASEDA + + + + + Negai + 36575 + decayed + + + Main + 437305000 + + AFSK + 1200 + + + CW + + JQ1ZEX + + + + + UNITEC-1 + 36578 + 2010-020F + Deep space + + + Main + 5840000000 + + AFSK + 1200 + + + CW + + JQ1ZUN + + + + + StudSat + 36796 + 2010-035B + Not operational + + + Main + 437861000 + + FSK + 9600 + + + CW + + + + + + + TIsat-1 + 36799 + 2010-035E + Not operational + + Draft + 2019-08-05 + + + Main + 145980000 + + PSK + + + AFSK + + + CW + + HB9DE + + + + + RAX-1 + 37223 + 2010-062B + Not operational + + + Main + 437505000 + + GMSKKISS + 9600 + + RAX-1 + + + + + FO-69(FASTRAC-1) + 37227 + 2010-062F + Not operational + + + Main + 437342000 + + AFSK + 1200 + + FAST1 + + + Main + 437342000 + + FSK + 9600 + + FAST1 + + + + + NanoSail-D2 + 37361 + decayed + + + Main + 437270000 + + AFSK + 1200 + + KE7EGC + + + + + FO-70(FASTRAC-2) + 37380 + 2010-062M + Not operational + + + Main + 145825000 + + AFSK + 1200 + + FAST2 + + + Main + 145825000 + + FSK + 9600 + + FAST2 + + + + + ZACube-2 + 43907 + 2013-066B + Unknown + + 2018-12-27 + Vostochny + + + Verified + 2018-12-27 + + Warning + + Hamradio paylaod not clear + Charge utile radioamateur pas clairement définie - The coordinated frequencies are beacon 14.099MHz, uplinks on 437.525 and 1260.25MHz and downlinks on 437.345 and 2405.00MHz + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=205 + IZACUBE 2 has been coordinated by IARU + IZACUBE 2 a été coordonné par l'IARU + + + Project Site + http://www.cput.ac.za/blogs/fsati/zacube-2/ + + + + + + Telemetry 1 + 14099000 + + BPSK + 9600 + + + + + repeater 1(TBC) + + 437525000 + + + 437345000 + + + + + repeater 2(TBC) + + 1260250000 + + + 2405000000 + + + + + + + + + + + + + + + + + + + ARISSat-1 + 37772 + decayed + + + Main + 145919000 + + 39FMlinear/inverti + + ng + + + Main + 145950000 + + FMVOICE/SSTV/Tel + + emetry + + + Main + 145919000 + + BPSK + 1000 + + + CW + + RS01S + + + Main + 145939000 + + BPSK + 400 + + + CW + + + + + + Jugnu + 37839 + 2011-058B + Operational + + + Main + 4372759000 + + CW + + + + + + + SRMSAT + 37841 + 2011-058D + Operational + + + Main + 437425000 + + CW + + + + + + + RAX-2 + 37853 + 2011-061D + Not operational + + + Main + 437345000 + + GMSK + 9600 + + + + + + + AO-71(AubieSat-1) + 37854 + 2011-061E + Not operational + + + Main + 437473000 + + AFSK + 1200 + + + CW + + + + + + + E1P-U2 + 37855 + 2011-061F + Operational + + + Main + 437502000 + + AFSK + 1200 + + + + + + + M-Cubed + 37855 + 2011-061F + Operational + Verified + 2019-02-14 + + + Main + 437485000 + + GMSKKISS + 9600 + + + + + + + ALMASat-1 + 38078 + 2012-006B + Not operational + + + Main + 437465000 + + FSK + 1200 + + ALMASAT + + + + + e-st@r + 38079 + Not operational + + + Main + 437445000 + + AFSK + 1200 + + E-STAR-I + + + + + Robusta + 38080 + Not operational + + + Main + 437325000 + + FM + 1200 + + + + + + + MaSat-1(MO-72) + 38081 + decayed + + + Main + 437345000 + + 625/1250bpsGFSKC + + WHA5MASAT + + + + + Xatcobeo + 38082 + decayed + + + Main + 437365000 + + FFSKSSRC + 1200 + + W + + + + + PW-Sat1 + 38083 + Not operational + + + Main + 145902000 + + BPSK + 1200 + + + CW + + VOID + + + + + UNICubeSAT + 38084 + Not operational + + + Main + 437305000 + + FSK + 9600 + + + + + + + Goliat + 38085 + Not operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + YO7MJF + + + + + Horyu-2 + 38340 + 2012-025D + Not operational + + + Main + 437378000 + + FSK + 1200 + + + CW + + + + + + + PROITERES + 38756 + 2012-047B + Not operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + JL3YZL + + + + + Aeneas + 38760 + 2012-048C + Operational + + + Main + 437600000 + + AFSK + 1200 + + KE6YFA-1 + + + + + CSSWE + 38761 + 2012-048D + Not operational + + + Main + 437349000 + + GMSK + 9600 + + CSSWE + + + + + CXBN + 38762 + 2012-048E + Not operational + + + Main + 437525000 + + GFSK + 9600 + + + + + + + CP5 + 38763 + 2012-048F + Not operational + + + Main + 437405000 + + AFSK + 1200 + + CP5 + + + + + RAIKO + 38852 + Not amateur Satellite + + Draft + 2019-08-05 + + + Main + 1300000000000 + + 384-500kbps + + + + + + + FITSAT-1 + 38853 + decayed + + + Main + 437250000 + + 1200bps/1152kbps + + JG6YEW + + + + + TechEdSat + 38854 + decayed + + + Main + 437465000 + + FM + 1200 + + + CW + + KJ6TVO + + + + + AAUSat3 + 39087 + 2013-009B + Not operational + + + Main + 437425000 + + FSK + 400 + + + CW + + OZ3CUB + + + + + STRaND-1 + 39090 + 2013-009E + Operational + + + Main + 437568000 + + GMSK + 9600 + + + + + + TugSat-1 (CanX-3B) + 39091 + 2013-009F + Not operational + + + Main + 2234400000 + + 32Kbps-256Kbps BPSK + + + + + + UniBRITE (CanX-3A) + 39092 + 2013-009G + Not operational + + + Main + 145890000 + + CW + + + + + + OSSI-1 + 39131 + Unknown + + Draft + 2019-08-05 + + + Main + 145980000 + + AFSK + 1200 + + + CW + + + + + + AIST-2 (RS-43) + 39133 + 2013-015D + Not operational + + + Main + 435265000 + + CW + + + + + + SOMP + 39134 + 2013-015E + Operational + + + Main + 437503000 + + AFSK + 1200 + + + CW + + DP0TUD + + + + + BEESAT-3 + 39135 + 2013-015F + Not operational + + Draft + 2019-08-05 + + + Main + 435950000 + + GMSK + 4800 + + + CW + + DP0BEF + + + + + BEESAT-2 + 39136 + 2013-015G + Not operational + + Draft + 2019-08-05 + + + Main + 435950000 + + GMSK + 4800 + + + CW + + DP0BEF + + + + + GRAHAM (PhoneSat1) + 39142 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW-2 + + + + + BELL (PhoneSat1) + 39143 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW-1 + + + + + Dove-1 - 2 + 39144 + decayed + + + Main + 2420000000 + + AFSK + 1200 + + + + + + ALEXANDER (PhoneSat2) + 39146 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + + TURKSAT-3USAT + 39152 + 2013-018C + Not operational + + + Main + 437225000 + + CW + + + + + + CubeBug-1 + 39153 + 2013-018D + Not operational + + + Main + 437438000 + + AFSK + 1200 + + CUBEB1 + + + + + EstCube-1 + 39161 + 2013-021C + Not operational + + Draft + 2019-08-05 + + + Main + 437254000 + + GMSK + 9600 + + + CW + + ES5E-11 ES5E/S + + + + + CUSat-1 + 39266 + 2013-055B + Not operational + + + Main + 437405000 + + AFSK + 1200 + + BOTTOM + + + + + DANDE + 39267 + 2013-055C + Not operational + + + Main + 436750000 + + GMSK + 9600 + + DANDE-2 + + + + + CUSat-2 + 39271 + Not operational + + + Main + 437485000 + + AFSK + 1200 + + WG2XTI + + + + + PhoneSat24 + 39381 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + + CAPE-2 (LO-75) + 39382 + decayed + + + Main + 145825000 + + AFSK + 1200 + + + CW + + W5UL-15 + + + + + DragonSat-1 + 39383 + Not operational + + + Main + 0000 + + FSK + 9600 + + + + + + KySat-2 + 39384 + Not operational + + + Main + 437402000 + + FSK + 9600 + + KK4AJJ + + + + + TJ3Sat + 39385 + Not operational + + + Main + 437320000 + + CW + + + + + + NPS-SCAT + 39389 + Not operational + + + Main + 437525000 + + AFSK + 1200 + + + CW + + K6NPS + + + + + COPPER + 39395 + Not operational + + + Main + 437290000 + + FSK + 9600 + + + + + + Black Knight-1 + 39398 + Not operational + + + Main + 437345000 + + + + + + + + Trailblazer-1 + 39400 + Not operational + + + Main + 437425000 + + FSK + 9600 + + + + + + Nexus + 43937 + 2019-003F + Operational + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + Fuji-OSCAR 99 + Verified + 2019-02-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=535 + + + + + Project Web site + http://sat.aero.cst.nihon-u.ac.jp/nexus/E0_Top.html + + + + + + Telemetry 1 + 437075000 + + CW + + + + + + Telemetry 2 + 435900000 + + FSK AX.25 / π/4 shift QPSK CCSDS + + + + + + SSB/CW transponder + + 145900000 + 145930000 + + + 435880000 + 435910000 + + + + + + + + + + + + + + + + + + BEESAT-9 + 44412 + Operational + draft + 2019-08-07 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=657 + + + + Project information + https://www.raumfahrttechnik.tu-berlin.de/menue/research/current_projects/beesat_9/parameter/en/ + + + + + Beacon + 435950000 + + GMSK + 19200 bps + + + GMSK + 38400 bps + + + CW + + + DP0BEM + + + + + information for amateur radio comunitie + https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ + + + Telemetry description + https://www.raumfahrttechnik.tu-berlin.de/fileadmin/fg169/amateur-radio/BEESAT-9_Telemetry_Format.ods + + + + + + + + + + + CUAVA-1 + 0 + To Be Laucnh + + + + + DRAFT + 2019-04-15 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum= + CUAVA-1 has been coordinated by IARU + EntrySat a été coordonné par l'IARU + + + + Telemetry U + 437075000 + + GMSK + 9k6 + + + + + Telemetry S + 2404000000 + + + + + + + + Telemetry S? + 5840000000 + + + + + + + + Telemetry M + 76800000000 + + + + + + + + transpondeur U + + 145875000 + + + + + + transpondeur S + + 2404000000 + + + + + + Transponder + + 5660000000 + + + + + + + + + + + + + + + + + + + + QARMAN + 0 + To be deployed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 + Thosten Scholz DO2TSB + 2013-10-31 + 2015-06-08 + scholz@vki.ac.be.nospam + + Draft + 2020-01-14 + + Project Information page + https://qarman.eu/ + + + + Beacon + 437350000 + + GMSK + 9600 + + ON05BE + + + + + Qarman Beacon Definition + https://ukamsat.files.wordpress.com/2020/01/qarman_bcndef_v1.1.pdf + + + Beacon Decoder spreadsheet + https://ukamsat.files.wordpress.com/2020/01/qarman_bcndecoder.xlsx + + + + + + operations@qarman.eu + + + + + Aoba-Velox 4 + 43940 + 2019-003J + Not operational + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + + Verified + 2019-01-19 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=499 + + + + + AOBA VELOX-IV site + http://www.eee.ntu.edu.sg/research/SaRC/Research/Projects/Pages/AOBA-VELOX-IV.aspx + + + + + + Telemetry 1 + 437225000 + + GMSK + 9600 + + + + + + + + + + + + + + av4mail@googlegroups.com + + + + + Raavana 1 + 44329 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=616 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + + + + Beacon + 435375000 + + CW + + + + GMSK + 9600 + + + + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + + + + Swiatowid + 44426 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=609 + coordinated by IARU + coordonné par l'IARU + + + project site + https://satrevolution.com/projects/swiatowid/ + + + + + + Beacon + 435500000 + + AFSK + 1200 + + + + + APRS + + 435500000 + + + 435500000 + + + + + + + + + + + + + + + + + + + SEAM-2.0 + 44411 + Unknown + Draft + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=584 + TBEx has been coordinated by IARU + TBEx a été coordonné par l'IARU + + + + Beacon + 437250000 + + GMSK + 9600 bps + + + + + + + AmurSat (AmGU-1) + 44394 + Operational + Draft + 2019-08-07 + + IARU coordination Declined + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + + + + Beacon + 436250000 + + mobitex + 4800bps + + + + + + + SiriusSat-2(SXC1-182 RS14S) + 43596 + 1998-067PH + Operational + + 2018-08-15 + ISS + + + Verified + 2019-02-14 + + Siriussat information page (Russian) + http://sputnix.ru/ru/nashi-sputniki/siriussat-1 + + + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + + + Siriussat hamradio information from Sputnix companie + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + hamradio information from Spunix Companie + + + + Main + 435670000 + + GMSK + 4800 + + RS14S + + + + + + + + + + + + siriussat@sputnix.ru + + Télécharger SPUTNIX Telemetry Viewer (Win ENG) + http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip + + + + + Armadillo + 44352 + Operational + Draft + 2019-08-07 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=237 + + + + Project information + https://www.facebook.com/UTSatLab/app/208195102528120/?ref=page_internal + + + + + Beacon + 437525000 + + GMSK + 19200 bps + + + GMSK + 38400 bps + + + CW + + + KE5DTW + + + + + SATNOGS : Kaitai Struct for telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/armadillo.ksy + + + + + + + + + + + EcAMSat + 43019 + Operational + Draft + 2019-08-07 + + + Beacon + 437095000 + + AFSK + 1200bps + + KE6QLL + + + + + Lucky-7 + 44406 + Operational + Verified + 2019-08-07 + + Information page + http://www.lucky7satellite.org/ + + + + Beacon + 437525000 + + GFSK + 4600 Bps + + + + + + + + + + + Telemetry description + http://www.lucky7satellite.org/download/Lucky-7_-_Amateur_Radio_Information.pdf + + + + + + + BRICSat-2 + 44355 + Operational + + 2019-08-07 + + + Navy-OSCAR 103 (NO-103) + Verified + 2019-06-24 + + Information page + http://aprs.org/bricsat-2.html + + + + Beacon + 437605000 + + FSK + 9600 + + USNA14 + + + APRS + + 145825000 + + + 145825000 + + APRS 1200 bauds + + + + + + + + + + + + + + + + + FalconSAT-3 + 30776 + Operational + INIT + 2019-08-07 + + + Digipeater + + 145840000 + + + 435103000 + + 9600bps GMSK + + + + + JAISAT-1 + 44419 + Unknown + Draft + 2019-08-07 + + Information page + http://www.rast.or.th/jaisat + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=521 + + + + Beacon + 4435325000 + + CW + + + + GMSK + 4800 + + + + + Transpondeur + + 145935000 + 145965000 + + + 435935000 + 435965000 + + + + + + + LightSail-B (now LightSail-2) + 44420 + Operational + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=489 + LightSail-2 has been coordinated by IARU + LightSail-2 a été coordonné par l'IARU + + + + Telemetry 1 + 437025000 + + GMSK + 9k6 + + + + + + + + + + + + + + + + + + + skCUBE + 42789 + No operational + INIT + 2019-08-07 + + + Beacon + 437100000 + + CW + + + + GMSK + 9600 Bps + + + + Digipeater + + 2401000000 + + + 437100000 + + + + + + + SATNOGS : Kaitai Struct for Telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/skcube.ksy + + + + + + + + + + + CAS-7B (BP-1B) + 44443 + + Operational + + 2019-07-25 + Jiuquan + + BIT Progress-OSCAR 102 (BO-102) + verified + 2015-11-02 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=659 + + + Information + CAS-7B (BP-1B) was developed by the Chinese Amateur Satellite Group (CAMSAT), and in cooperation with the Beijing Institute of Technology (BIT). CAMSAT completed the project planning, design, build, and testing, and manages the on-orbit operation of the satellite. BIT provided the satellite environmental testing, launch support, and financial support. Many students from BIT were involved with the project, learning about satellite technology and amateur radio. The satellite carries a CW telemetry beacon and FM repeater that has been active since launch. + + + + CW Beacon + 435715000 + + CW + + + + + FM Transpondeur + + 145900000 + + + 435690000 + + FM + yes + + + + + Telemetry information + https://ukamsat.files.wordpress.com/2019/06/camsat-cas-7b-news-release.pdf + + + + + + + + + + + + + + + + + + + OrigamiSat-1 + 43933 + 2019-003B + Unknown + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + FO-98 + Verified + 2019-01-19 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=591 + + + + + + Telemetry 1 + 437050500 + + AFSK + 1200 + + + CW + + + JS1YAX + + + Telemetry 2 + 5840000000 + + + 115kbps + + + + + + + + + + + + + + + + + + + NepaliSat1 + 44331 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=618 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + + + + Beacon + 435375000 + + CW + + + + GMSK + 9600 + + + + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + + + + BIRD-G (Ghana GhanaSat-1) + 42821 + No operational + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJP + + + + + BIRD-M (Mongolia Mazaalai) + 42822 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJQ + + + + + BRAC (BIRD-B) + 42823 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJS + + + + + ChubuSat-2 + 41338 + No operational + draft + 2019-08-07 + + + Beacon + 437102000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JJ2YPN + + + + + ChubuSat-3 + 41339 + No operational + Draft + 2019-08-07 + + + Beacon + 437424000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JJ2YPO + + + + + CP-7 (DAVE) + 43615 + Operational + Draft + 2019-08-07 + + Project information + https://www.polysat.org/launched + + + + + Beacon + 437150000 + + FSK + 9600 bps + + + CW + + + WI2XNR-1 + + + + + CubeBel-1(BSUSat-1) + 43666 + Operational + Draft + 2019-08-07 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=577 + + + + + + Beacon + 436990000 + + GMSK + 4800 bps + + + GMSK + 9600 bps + + EU10S + + + Digipeater + + 436200000 + + + 436200000 + + + + + + + information for amateur radio comunitie + https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ + + + Telemetry description + https://bsusat.com/projects/telemetry-data-structure + + + How to upload telemetry + https://bsusat.com/for-radio-amateurs/how-to-upload-telemetry + + + + + + + D-SAT + 42794 + No operational + Draft + 2019-08-07 + + + Beacon + 437505000 + + 4800bps GMSK CW + + + + GMSK + 4800 bps + + + CW + + + U1-DSAT-U1 + + + + + EduSat-1 (BIRD-N) + 42824 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJR + + + + + ELFIN-A + 43617 + Operational + Draft + 2019-08-07 + + Project information + https://elfin.igpp.ucla.edu/ + + + + + Beacon + 437450000 + + GFSK + 9600bps + + WJ2XNX + + + + + information for amateur radio comunitie + https://elfin.igpp.ucla.edu/listen-to-elfin + + + Telemetry description + https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx + + + SatNOGS : Kaitai Struct telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy + + + + + + elfin@igpp.ucla.edu + + + + + ELFIN-B + 43616 + Operational + Draft + 2019-08-07 + + Project information + https://elfin.igpp.ucla.edu/ + + + + + Beacon + 437450000 + + GFSK + 9600bps + + WJ2XOX + + + + + information for amateur radio comunitie + https://elfin.igpp.ucla.edu/listen-to-elfin + + + Telemetry description + https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx + + + SatNOGS : Kaitai Struct telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy + + + + + + elfin@igpp.ucla.edu + + + + + ACRUX-1 + 44369 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=644 + Gabriel Abrahams VK3EXO + 2018-09-15 + 2018-11-13 + abrahams.gabi@gmail.com.nospam + + + 2019-06-29 + + + draft + 2019-08-07 + + ACRUX-1 + https://melbournespace.com.au/projects/ + + + + + Beacon + 437200000 + + GMSK + 9600bps + + CQCQCQ + + + + + + + + + + + + + + + + + Uguisu (BIRD-JPN) + 44330 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=617 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + + + + Beacon + 435375000 + + CW + + + + GMSK + 9600 + + + + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + + + + TBEx-b + 44359 + To Be Launch + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 + TBEx has been coordinated by IARU + TBEx a été coordonné par l'IARU + + + project information + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + Telemetry 1 + 437535000 + + GMSK + 9k6 + + + + + + + TBEx – Tandem Beacon Experiment + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + SATNOGS : Kaitai Struct for Telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/tbex.ksy + + + + + + jwcutler@umich.edu + + + + + AoXiang-1 (CN04) + 42735 + Decayed + Draft + 2019-08-07 + + + Beacon + 2401600000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437525000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437500000 + + BPSK + 9600 bps + + NPUAX1 + + + + + Toki (BIRD-J) + 42820 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + AFSK + 1200bps + + + GMSK + 9600bps + + + CW + + + JG6YJO + + + + + Tomsk-TPU-120 (RS04S) + 42910 + No operational + Draft + 2019-08-07 + + + Beacon + 145800000 + + FSK + 9600bps + + + Voice + + + RS4S + + + + + Socrat + 44405 + Operational + Draft + 2019-08-07 + + + Beacon + 436000000 + + mobitex + 4800 bps + + + + + + + SONATE + 44400 + Unknown + INIT + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=572 + SONATE has been coordinated by IARU + SONATE a été coordonné par l'IARU + + + project information + http://www8.informatik.uni-wuerzburg.de/en/wissenschaftforschung/sonate/ + + + + + + Telemetry 1 + 145840000 + + SSTV + + + + + + Telemetry 2 + 437025000 + + GFSK + 9600 Bps + + + GMSK + 9600 Bps + + + + + + + SpooQy-1 + 44332 + Operational + Draft + 2019-08-07 + + project information + https://sites.google.com/site/phylej/projects-1/spooqy-1 + + + + + IARU Coordination declined + + + + + + + Beacon + 436200000 + + GMSK + 9600bps + + + + + + + STARS-AO + 43679 + Operational + Draft + 2019-08-07 + + Project information + https://stars-ao.info + + + + + Beacon + 437350000 + + CW + + + JJ2YSY + + + Beacon + 437400000 + + CW + + + JJ2YSY + + + Beacon + 437200000 + + GMSK + + + JJ2YSY + + + + + STARS-Me (Mother) + 43640 + No operational + Draft + 2019-08-07 + + Project information + http://stars.eng.shizuoka.ac.jp/english.html + + + + + Mother - Beacon 1 + 437245000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + Mother - Beacon 2 + 437405000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + Daughter - Beacon 1 + 437255000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + Daughter - Beacon 2 + 437425000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + + + SUCHAI + 42788 + No operational + Draft + 2019-08-07 + + + Beacon + 437230000 + + CW + + + + FSK2k4 + 2400 Bps + + SUCHAI + + + + + SurfSat + 43614 + No operational + Draft + 2019-08-07 + + Project information + https://icubesat.files.wordpress.com/2015/06/icubesat-2015_org_b-3-5_surfsatweb_dove.pdf + + + + + Beacon + 437275000 + + FSK + 9600bps + + + + + + + Tancredo-1 (UbatubaSat) + 41391 + Decayed + Draft + 2019-08-07 + + + Beacon + 437200000 + + AFSK + 1200 bps + + + CW + + + PY0ETA + + + + + Tanusha-SWSU-1 (RS-6S) + 42911 + No operational + draft + 2019-08-07 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS6S + + + + + Tanusha-SWSU-2 (RS-7S) + 42912 + No operational + Draft + 2019-08-07 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS7S + + + + + Tanusha-SWSU-3 (RS-8S) + 43597 + No operational + Draft + 2019-08-07 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS8S + + + + + Tanusha-SWSU-4 (RS-9S) + 43598 + No operational + Draft + 2019-08-07 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS9S + + + + + TechEdSat-5 + 42066 + Decayed + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + TY-5 (Tianyi-5 Xiaoxiang-5) + 43553 + Unknown + INIT + 2019-08-07 + + + Beacon + + + 9k6 GMSK/5Mbps OFDM + + + + + + + + VDNH-80 + 44392 + Operational + draft + 2019-08-07 + + + Beacon + 436500000 + + mobitex + 4800 bps + + + + + + + VZLUsat-1 (CZ02) + 42790 + Operational + INIT + 2019-08-07 + + Pilsen Ground Station + https://www.pilsencube.zcu.cz/vzlusat1/ + + + + + Beacon + 437240000 + + MSK + 4800 bps + + + CW + 20 Wpm + + VZLUSAT1 + + + + + information for amateur radio comunitie + https://www.pilsencube.zcu.cz/vzlusat1/static_radio_amateur.html + + + + + Xiaoxiang-4 (TY-4 Tianyi-4) + 43669 + Operational + draft + 2019-08-07 + + + Beacon + 435925000 + + GMSK + 9600 + + + + + T1 + + 435925000 + + + 435925000 + + 9k6 GMSK + + + T2 + + 2409000000 + + + 2409000000 + + 5Mbps OFDM + + + T3 + + 5659000000 + + + 5839000000 + + 5Mbps OFDM + + + + + TY-3 (Tianyi-3 Xiaoxiang-3) + 43664 + Unknown + INIT + 2019-08-07 + + + Beacon + + + 9k6 GMSK/5Mbps OFDM + + + + + + + + PSAT-2 + 44354 + Operational + + 2019-06-25 + + + Navy- OSCAR 104 (NO-104) + Verified + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=473 + PSAT-2 has been coordinated by IARU + PSAT-2 a été coordonné par l'IARU + + + Information page + http://aprs.org/psat2.html + + + + SSTV + 435350000 + + SSTV + + + + + + APRS + + 145825000 + + + 145825000 + + AFSK + 1200 + + + PSK31 + + 294815000 + + + 435350000 + + AFSK + 1200 + + + + + + + + + + + + + + + + + CP-9 + 44360 + Operational + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=481 + CP-9 has been coordinated by IARU + CP-9 a été coordonné par l'IARU + + + Information page + https://www.polysat.org/ + + + + Telemetry 1 + 437505000 + + FSK + 9k6 + + + FSK + 19k2 + + + FSK + 38k4 + + KJ6RQH-1 + + + + + + + + + + + + + + + + + Max Valier Sat + 42778 + Operational + + 2017-06-23 + Satish Dhawan Space Centre. + + Verified + 2019-08-07 + + Information page + http://aprs.org/bricsat-2.html + + + + Radio Beacon + 145960000 + + CW + + + II3MV + + + Beacon Astrodev Helium-100 + 145860000 + + GMSK + + + II3MV + + + + + Amateur information + http://www.maxvaliersat.it/amateurradio + + + QSL Card Request + mailto:maxvaliersat[at]tfobz[dot]net. + + + + + + + + + + + LightSat (D-Star One) + 44393 + Operational + INIT + 2019-08-07 + + + Beacon + 435700000 + + mobitex GMSK + 4800 Bps + + + + + Beacon + 435700000 + + mobitex GMSK + 9600 Bps + + + + + + + HORYU-4 + 41340 + Operational + + 2016-02-17 + TANEGASHIMA SPACE CENTER + + Draft + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=434 + has been coordinated by IARU + a été coordonné par l'IARU + + + + Beacon + 437375000 + + CW + + + + AFSK + 1200 + + + GFSK + 9600 + + JG6YBW + + + Beacon S + 2400300000 + + BPSK + 10000 + + + + + + + Es'Hail-2 (Phase-4A QO-100) + 43700 + Operational + QO-100 + Verified + 2019-08-07 + + P4A AMSAT DL Forum + https://forum.amsat-dl.org/index.php?board/3-es-hail-2-amsat-phase-4-a/ + AMSAT DL Forum for Phase 4A payload + Forum de l'AMSAT-DL pour Phase 4A + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=630 + AMSAT P4-A has been coordinated by IARU + AMSAT P4-A a été coordonné par l'IARU + + + + Beacon + + + Linear transponder + + + + + + Narrowband Linear transponder + + 2400050000 + 2400300000 + + + 10489550000 + 10489800000 + + + + + Wideband digital transponder + + 2401500000 + 2409500000 + + + 10491000000 + 10499000000 + + + + + + + EQUISat + 43552 + Operational + Draft + 2019-08-07 + + Information page + https://brownspace.org/equisat/ + + + + Beacon + 435550000 + + CW + + + + FSK + 9600 + + + FSK + 4800 + + + + + + + + + + + Dasboard + https://equisat.brownspace.org + + + + + + + EO-88 (FUNcube-5 Nayif-1) + 42017 + Operational + EO-88 + Draft + 2019-08-07 + + + Beacon + 145940000 + + BPSK SSB + 1200 + + + + + Beacon + 145940000 + + BPSK SSB + 1200 + + + + + Main + + 435015000 + 435045000 + + + 145960000 + 145990000 + + SSB/CW + yes + + + + + Telemetry dashboard + http://data2.amsat-uk.org/ui/nayif1 + + + + + + operations@funcube.org.uk + https://funcube.org.uk/working-documents/funcube-telemetry-dashboard/ + + + + EnduroSat One + 43551 + No operational + Draft + 2019-08-07 + + + Beacon + 437050000 + + GMSK + 9600bps + + LZ0AMS + + + + + D-Star ONE EXOCONNECT + 44413 + Operational + INIT + 2019-08-07 + + + Beacon + 435700000 + + mobitex GMSK + 4800 + + + mobitex GMSK + 9600 + + + + + + + Aalto-1 + 42775 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=292 + Timo Nikkanen OH2EGZ + 2013-03-15 + 2015-06-03 + timo.nikkanen@gmail.com.nospam + + INIT + 2019-08-07 + + Mission description + https://wiki.aalto.fi/display/SuomiSAT + + + + PDF file + https://docs.google.com/file/d/0B9SJ8FHoqwj-eVR2SzhrWFFTZTA/edit + + + + + Beacon + 437220000 + + FSK CW + 9600bps + + + CW + + + OH2A1S + + + + + URSA MAIOR (IT02) + 42776 + Operational + draft + 2019-08-07 + + + Beacon + 435950000 + + FSK + 9600 Bps + + URSAMR + + + + + RS-3 (Radio Sputnik 3) + 12997 + No operational + Draft + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-4 (Radio Sputnik 4) + 13000 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-20 (Mozhayets-3) + 27560 + Decayed + INIT + 2019-08-07 + + + Beacon + 145828000 + + CW + + + + + + Beacon + 435319000 + + CW + + + + + + + + Pegasus (AT03) + 42784 + No operational + Draft + 2019-08-07 + + + Beacon + 436670000 + + GMSK + 9600 bps + + ON03AT + + + + + NUDTSat (CN06) + 42787 + Operational + Draft + 2019-08-07 + + + Beacon + 436270000 + + BPSK + 9600 Bps + + BG7AKF + + + + + Nanosat-7 (Prox-1) + 44339 + Unknown + draft + 2019-08-07 + + Information page + http://prox-1.gatech.edu/ + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=437 + Prox-1 has been coordinated by IARU + Prox-1 a été coordonné par l'IARU + + + + Beacon + 2306500000 + + FSK + 38400 Bps + + + + + + + + + + + Telemetry description + http://prox-1.gatech.edu/beacon.html + + + + + + + RS-5 (Radio Sputnik 5) + 12999 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-6 (Radio Sputnik 6) + 13002 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-7 (Radio Sputnik 7) + 13001 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-8 (Radio Sputnik 8) + 12998 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-47 (COSMOS-2499) + 39765 + No operational + INIT + 2019-08-07 + + + Beacon 1 + 435565000 + + CW + + + + + + Beacon 2 + 435465000 + + CW + + + + + + + + RSP-00 + 43639 + No operational + draft + 2019-08-07 + + project site + http://rymansat.com/en/2018/10/15/operational-status-of-rsp-00/ + + + + + + Beacon + 145890000 + + 38k4 pi/4QPSK CW + + + + AFSK + 1200 + + + FM + + + + CW + + + 8J1RSP + + + Beacon + 436930000 + + pi/4QPSK + 38400 Bps + + 8J1RSP + + + + + NanoSat-6 (Oculus-ASR) + 44346 + Unknown + draft + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=266 + + + Project information page + http://aerospace.mtu.edu/spacecraft/oculus-asr + + + + Beacon + 437200000 + + GMSK + 9600 Bps + + + + + + + MOVE-IIb + 44398 + Unknown + Draft + 2019-08-07 + + Information page + https://www.move2space.de/MOVE-II/ + + + + Beacon + 145840000 + + QPSK + 12500 Bps + + + CW + + + + + + + + COMPASS-2/DragSail (DE04) + 42777 + No operational + Draft + 2019-08-07 + + Information page + http://149.201.163.33/?page_id=125 + + + + Beacon + 437300000 + + s AFSK + 1200 Bps + + + + + Beacon + 2403000000 + + AFSK + 1200 Bps + + + + + + + + + + + Amateur radio information + http://149.201.163.33/?page_id=892 + + + https://www.dropbox.com/sh/v6ji3pduzm4ue4m/AABQGgBKULDBgroJWs0e-Bqwa?dl=0 + + + + VisionCube + 43758 + + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=607 + VisionCube has been coordinated by IARU + VisionCube a été coordonné par l'IARU + + + + Telemetry 1 + 437425000 + + GMSK + 9600 + + KUVCS + + + + + Ham radio Information + http://control.kau.ac.kr/visioncube/visioncube-2/ + + + + + + heokjune1994@gmail.com + + + + + AMSAT-India APRS + 44104 + Operational + + 2019-03-04 + Satish Dhawan Space Centre (SDSC) SHAR, Sriharikota + + + Verified + 2019-03-31 + + Project description + http://amsatindia.org/ + This experimental radio payload on the fourth stage platform is an Automatic Packet Reporting System (APRS) – also called a digipeater. + + Charge utile radioamateur fixée sur le quatriéme étage de la fusée PSLV. La charge utile est un digipeater + + + IARU Coordination + + Payload have not been coordinated - APRS default frequency + La fréquence utilisée par la charge utile n'a pas été coordonnée - Utilisation de la fréquence APRS par défaut + + + + APRS + + 1458250000 + + + 1458250000 + + AFSK 1200 + + + + + + + + + + + + + + + + + Aalto-2 (FI01) + 42729 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=362 + Timo Nikkanen OH2EGZ + 2013-11-13 + 2015-06-18 + timo.nikkanen@gmail.com.nospam + + INIT + 2019-08-07 + + + Beacon + 437.335 + + GFSK + 9600 bps + + AALTO2 + + + + + 3CAT1 + 43781 + No operational + + India + + + Verified + 2018-11-27 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=370 + 3CAT1 Hello World has been coordinated by IARU + 3CAT1 Hello World a été coordonné par l'IARU + + + + Telemetry 1 + 437250000 + + FSK + 9k6 + + + CW + + + + + + + + + + + + + + + + + + + + AAUSAT-4 + 41460 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 + Jens Frederick Dalsgaard OZ2JDN + 2014-01-24 + 2014-07-14 + jdn@es.aau.dk.nospam + + VERIFIED + 2019-08-07 + + Mission description + http://www.space.aau.dk/aausat4/ + + + + + Beacon + 437425000 + + GFSK + 2400 + + + GFSK + 9600 + + + GFSK + 19200 + + + CW + + + OZ4CUB + + + + + AISTECHSAT-2 + 43768 + Operational + Draft + 2019-08-07 + + + Beacon + 436730000 + + GMSK + 4800 + + + GMSK + 49600 + + + + + + + Al-Farabi-2 + 43805 + Operational + Draft + 2019-08-07 + + + Beacon + 436500000 + + GMSK + 4800bps + + + CW + + + UN1GWA + + + + + CADRE + 41475 + Decayed + Draft + 2019-08-07 + + + Beacon + 437485000 + + GMSK 1Mbit OQPSK + 9600bps + + + + + Beacon + 3404000000 + + OQPSK + 1Mbit + + + + + + + DeorbitSail + 40719 + No operational + Drfat + 2019-08-07 + + + Beacon + 145975000 + + BPSK + 1200bps + + DOS + + + + + FO-12 (JAS-1) + 16909 + No operational + FO-12 + Draft + 2019-08-07 + + + Beacon + 435795000 + + CW + + + + + + + + Fox-1B (RadFxSat AO-91) + 43017 + Operational + Draft + 2019-08-07 + + + Beacon + 145960000 + + DUV + 200 Bps + + + + + FM voice repeater mode 1 + + 435250000 + + + 145960000 + + FM + 67 + + + + + KAZSCISAT-1 + 43787 + Operational + Draft + 2019-08-07 + + + Beacon + 435500000 + + GMSK + 9600bps + + + + + + + MakerSat-0 + 43016 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + NO-83 (BRICsat) + 40655 + No operational + AO-83 + INIT + 2019-08-07 + + + Beacon + 437975000 + + FSK PSK31 + 9600 bps + + BRCSAT + + + PSK31 + + 28120000 + + + 435350000 + + APRS 1200 bauds + + + + + Nodes-1 + 41478 + Decayed + INIT + 2019-08-07 + + + Beacon + 437100000 + + AFSK + 1200 + + KE6QLL + + + + + Nodes-2 + 41477 + No operational + INIT + 2019-08-07 + + + Beacon + 437100000 + + AFSK + 1200 + + KE6QLL + + + + + PW-Sat 2 + 43814 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-28 + + Project Site + https://pw-sat.pl/en/home-page/ + PW-Sat2 is a student satellite project started in 2013 at Warsaw University of Technology by the Students Space Association members. Its main technical goal is to test new deorbit technology in form of a large deorbit sail whereas the project purpose is to educate a group of new space engineers + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=545 + PW-Sat 2 has been coordinated by IARU + PW-Sat 2 a été coordonné par l'IARU + + + + Telemetry 1 + 435275000 + + BPSK + 9600 + + + BPSK + 1200 + + + + + + + Ham radio information + https://pw-sat.pl/en/information-for-radio-amateurs/ + + + + + + + https://radio.pw-sat.pl/communication/desktopsoftware + + + + RS-2 (Radio Sputnik 2) + 11086 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-1 (Radio Sputnik 1) + 11085 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-19 (Sputnik 99) + 25685 + Decayed + INIT + 2019-08-07 + + + Beacon + 145815000 + + CW + + + + + + + + RS-39 (Chibis-M) + 38051 + No operational + INIT + 2019-08-07 + + + Beacon + 435315000 + + CW + + + + + + Beacon + 435215000 + + CW + + + + + + + + RS-40 (Yubileyny-2 MiR) + 38735 + No operational + INIT + 2019-08-07 + + + Beacon + 435365000 + + CW + + + + + + + + RS-46 (COSMOS-2491) + 39497 + No operational + INIT + 2019-08-07 + + + Beacon + 435465000 + + CW + + + + + + Beacon + 435565000 + + CW + + + + + + + + RS-14 (Informator-1) + 21087 + No operational + INIT + 2019-08-07 + + + Beacon + 145822000 + + CW + + + + + + Beacon + 145948000 + + CW + + + + + + + + RS-17 (Sputnik 40) + 24958 + Decayed + INIT + 2019-08-07 + + + Beacon + 145820000 + + CW + + + + + + + + RS-10 (COSMOS 1861) + 18129 + No operational + Draft + 2019-08-07 + + + Beacon + 29357000 + + CW + + + + + + Beacon + 29403000 + + CW + + + + + + + + ALSat-1N + 41789 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=485 + Djamel Eddine Baba Hamed 7X4TS + 2015-11-06 + 2016-01-11 + debabahamed@cds.asal.dz.nospam + + Draft + 2019-08-07 + + + Beacon + 437650000 + + FSK9k6 + 9600 bps + + AL1N + + + + + 1KUNS-PF + 43466 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=559 + 5Z4HL Heywood Ouma + 2017-06-03 + 2017-06-23 + houma@ieee.org.nospam + + Draft + 2019-08-07 + + Information page + https://1kuns-pf.ns0.it/ + + + + Beacon + 437300000 + + GMSK + 9600 + + + GMSK + 1200 + + + GMSK + 2400 + + + GMSK + 4800 + + + + + + + 3CAT-2 + 41732 + No operational + + true + coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=371 + Vicente J. Gomez Oviedo EA3GP + 2014-01-23 + 2014-06-09 + vjgomez@tsc.upc.edu.nospam + + Draft + 2019-08-07 + + + Beacon + 24010000000 + + BPSK + 1000000 + + + + + Beacon + 145970000 + + BPSK + 9600 + + + + + + + ISX (CP-11) + 43856 + No operational + INIT + 2019-08-07 + + + Beacon + 437150000 + + FSK + 9600 bps + + + CW + 0 + + + + + + + AISTECHSAT-3 + 44103 + Operational + Draft + 2019-08-07 + + + Beacon + 436730000 + + GFSK + 9600 + + + GFSK + 4800 + + + + + + + SaudiSat-4 + 40016 + No operational + INIT + 2019-08-07 + + + Beacon + + + Ka-band SSB + 0 + + + + + + + ANUSAT + 34808 + Decayed + Draft + 2019-08-07 + + + Beacon + 137400000 + + AFSK + 1200 bps + + + + + + + INS-1C + 43116 + No operational + Draft + 2019-08-07 + + + Beacon + 435080000 + + FSK + 1200 bps + + INDUSR-10 + + + + + Kaidun-1 + 41915 + Operational + Draft + 2019-08-07 + + + Beacon + 437600000 + + G3RUH BPSK + 1200 bps + + AXNWPU-4 + + + + + LQSat + 40958 + No operational + Draft + 2019-08-07 + + + Beacon 1 + 437650000 + + 4k8 MSK + 4800 Bps + + + CW + 0 + + + + + Beacon + + MSK4k8 + 0 + + + + + Beacon + 2404035000 + + QPSK + 1Mbps + + + + + + + M6P + 44109 + Operational + Draft + 2019-08-07 + + + Beacon + 437265000 + + FSK + 9600 bps + + LY0LS + + + + + X-CubeSat (FR01) + 42707 + Decayed + Draft + 2019-08-07 + + + Beacon + 437020000 + + GMSK + 9600 + + + AFSK1k2 + 1200 + + ON01FR + + + + + RS-16 (Mozhayets-2) + 24744 + Decayed + Draft + 2019-08-07 + + + Beacon + 435510000 + + CW + 0 + + + + + + + STMSat-1 + 41476 + No operational + Draft + 2019-08-07 + + + Beacon + 437800000 + + SSTV + 0 + + + GMSK + 9600 bps + + + + + + + SamSat-218D + 41466 + No operational + Draft + 2019-08-07 + + + Beacon + 145870000 + + CW + 0 + + SAMSAT-218D + + + + + NuSat-1 (LO-87) + 41557 + Operational + LO-87 + Draft + 2019-08-07 + + + Beacon 1 + 145900000 + + SSB CW + 0 + + + + + Beacon 2 + 436445000 + + FSK + 19200 + + + + + Repeater + + 436935000 + 436965000 + + + 145935000 + 145965000 + + Linear + + + + + AAUSAT-5 + 40948 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 + Jens Frederick Dalsgaard OZ2JDN + 2014-02-01 + 2014-05-04 + jdn@es.aau.dk.nospam + + INIT + 2019-08-07 + + Mission description + http://www.space.aau.dk/aausat5/ + + + + + Beacon + 437425000 + + GMSK9k6 + 9600 bps + + + + + + + HA-1 (Zhou Enlai Huai'An-1) + 43156 + Operational + INIT + 2019-08-07 + + CITATION NEEDED - https://xkcd.com/285/ + + + + + + Beacon + 437350000 + + BPSK + 9600bps + + BI4ST + + + Beacon + 437644000 + + BPSK + 9600bps + + BI4ST + + + Repeater + + 145930000 + + + 436950000 + + FM + + + + + SOMP-2 (DE02) + 42700 + Decayed + Draft + 2019-08-07 + + + Beacon + 437405000 + + GMSK + 9600 bps + + + CW + 0 + + ON02TR + + + + + Hoopoe (IL01) + 42718 + Decayed + Draft + 2019-08-07 + + + Beacon + 437740000 + + BPSK + 9600 bps + + ON01IL + + + + + IceCube + 42705 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + i-INSPIRE II (AU03) + 42731 + Decayed + INIT + 2019-08-07 + + + + + GMSK + 4800 bps + + ON03AU + + + + + InflateSail (GB06) + 42770 + Decayed + Draft + 2019-08-07 + + + Beacon + 436060000 + + BPSK + 1200bps + + ON06GB + + + + + D-Star ONE iSat + 43879 + Operational + Draft + 2019-08-07 + + + Beacon + 435700000 + + GMSK + 4800 + + + GMSK4k8 + 9600 + + DP2GOS + + + Repeater + + 437325000 + + + 435525000 + + FM + + + + + Delphini-1 + 44030 + Operational + Draft + 2019-08-07 + + + Beacon + + + 1k2/4k8/9k6* GMSK + 0 + + + + + Beacon + 437500000 + + GMSK + 1200 Bps + + + GMSK + 4800 Bps + + + GMSK + 9600 Bps + + + + + + + CXBN-2 + 42704 + Decayed + Draft + 2019-08-07 + + + Beacon + 437525000 + + FSK + 9600 bps + + + + + + + CSUNSat1 + 42715 + Decayed + Draft + 2019-08-07 + + + Beacon + 437400000 + + CW + 0 + + + GMSK + 9600 bps + + CSUNSAT1 + + + + + Columbia (US04) + 42702 + No operational + Draft + 2019-08-07 + + + Beacon + 437055000 + + GMSK + 9600 bps + + KD8CJT + + + + + Challenger (US01) + 42721 + Decayed + Draft + 2019-08-07 + + + Beacon + 437510000 + + GMSK + 9600 bps + + QBUS01 + + + + + Irazu + 43468 + Operational + Draft + 2019-08-07 + + + Beacon + 436500000 + + FSK + 9600bps + + TI0IRA + + + + + IO-86 (LAPAN-A2 ORARI) + 40931 + Operational + IO-86 + INIT + 2019-08-07 + + + Beacon + 437325000 + + AFSK + 1200 Bps + + YBSAT/YBOX-1 + + + Repeater + + 145825000 + + + 145825000 + + APRS + + + Repeater + + 145880000 + + + 435880000 + + FM + + + + + CAS-3E (XW-2E) + 40909 + Operational + Draft + 2019-08-07 + + + Beacon + 145910000 + + CW + 0 + + BJ1SF + + + Beacon + 145890000 + + GMSK + 9600 + + BJ1SF + + + Repeater + + 435270000 + 435290000 + + + 145915000 + 145935000 + + + + + + + CAS-4A (ZHUHAI-1 01) + 42761 + Operational + Draft + 2019-08-07 + + + Beacon 1 + 145855000 + + CW + 0 + + + GMSK + 4800bps + + BJ1SK + + + Beacon 2 + 145835000 + + CW + 0 + + + GMSK + 4800bps + + BJ1SK + + + Repeater + + 435210000 + 435230000 + + + 145860000 + 145880000 + + SSB 20_kHz bandwidth inverted + + + + + BY70-1 + 41909 + Decayed + Draft + 2019-08-07 + + + Beacon + 436200000 + + BPSK + 9600 bps + + + + + Repeater + + 145920000 + + + 436200000 + + + + + + + D-Star ONE Phoenix + 43188 + No operational + INIT + 2019-08-07 + + + Beacon + 435525000 + + D-Star Telemetry + 0 + + DP1GOS + + + + + DUTHSat (GR01) + 42724 + Decayed + Draft + 2019-08-07 + + + Beacon + 436420000 + + BPSK + 1200 bps + + SZ2DUT + + + + + ExAlta-1 (CA03) + 42734 + Decayed + Draft + 2019-08-07 + + + Beacon + 436705000 + + 4k8*/9k6/19k2 GMSK + 4800 + + + 4k8*/9k6/19k2 GMSK + 9600 + + + 4k8*/9k6/19k2 GMSK + 19200 + + ON03CA + + + + + FMN-1 (FengMaNiu-1) + 43192 + Operational + INIT + 2019-08-07 + + CITATION NEEDED - https://xkcd.com/285/ + + + + + + Beacon + 435350000 + + BPSK + 9600bps + + BUAABJ + + + Repeater + + 145945000 + + + 435350000 + + FM + + + + + Galassia + 41170 + No operational + INIT + 2019-08-07 + + + Beacon + 145800000 + + GMSK + 9600 bps + + + + + + + GEARRSat-1 + 40456 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + GOMX-3 + 40949 + Decayed + Draft + 2019-08-07 + + + Beacon + 437250000 + + GMSK + 19200 + + + GMSK + 4800 + + + + + + + CNUSail-1 + 43133 + Unknown + Draft + 2019-08-07 + + + Beacon + 437100000 + + GMSK + 9600 bps + + + + + + + Aoba-VELOX-III + 41935 + Decayed + Draft + 2019-08-07 + + + Beacon + 437375000 + + CW + 0 + + + AFSK + 1200 bps + + JG6YBW + + + + + AO-92 (Fox-1D) + 43137 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=456 + Andrew Glassbrenner KO4MA + 2015-04-01 + 2015-04-08 + ko4ma@amsat.org.nospam + + AO-92 + Draft + 2019-08-07 + + + Beacon + 145880000 + + DUV + 200 bps + + + + + Repeater + + 435350000 + + + 145880000 + + FM + + + Repeater + + 1267350000 + + + 145880000 + + FM + + + + + ANDE-2 (Castor) + 35694 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=144 + Iavan Galysh KD4HBO + 2009-01-03 + 2009-07-02 + Ivan.galysh@nrl.navy.mil.nospam + + Draft + 2019-08-07 + + + Beacon + 145825000 + + AFSK + 1200 bps + + KD4HBO-1 + + + + + Athenoxat-1 + 41168 + Operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + CW + 0 + + + GMSK + 4800 bps + + ATX1 + + + + + BEESAT-4 + 41619 + Operational + INIT + 2019-08-07 + + CITATION NEEDED - https://xkcd.com/285/ + + + + + + Beacon + 435950000 + + FM + 0 + + + GMSK + 4800 bps + + DP0BEH + + + Digipeater + + 435950000 + + + 435950000 + + + + + + + CAS-4B (ZHUHAI-1 02) + 42759 + Operational + Draft + 2019-08-07 + + + Beacon + 145910000 + + CW + 0 + + + GMSK + 4800 bps + + BJ1SL + + + Beacon + 145890000 + + FSK + 4800 + + + + + Repeater + + 435270000 + 435290000 + + + 145915000 + 145935000 + + SSB 20_kHz bandwidth inverted + + + + + Astrocast-0.2 + 44083 + Operational + INIT + 2019-08-07 + + project information + https://www.astrocast.com/ + + + + + Beacon + 437175000 + + FSK + 1200 bps + + HB9GSF + + + Beacon + 2406000000 + + FM + 0 + + + + + + + BIROS + 41604 + No operational + Draft + 2019-08-07 + + + Beacon + 437525000 + + GMSK + 4800 bps + + + + + + + RS-23 (Tatyana) + 28523 + No operational + Draft + 2019-08-07 + + + Beacon + 435215000 + + CW + 0 + + + + + Beacon + 435315000 + + CW + 0 + + + + + + + Sathyabamasat + 41600 + No operational + INIT + 2019-08-07 + + + Beacon + 145980000 + + CW + 0 + + + BPSK CW + 2400 bps + + SNSAT + + + + + STEP Cube Lab (STEP-1) + 43138 + Operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + FSK + 9600 bps + + + CW + 0 + + + + + + + ITF-2 (TO-89) + 41932 + Decayed + TO-89 + Draft + 2019-08-07 + + + Beacon + 437525000 + + FM CW + 1200 bps + + + CW + 0 + + JQ1ZTK + + + + + Juvenile-1F(Shaonian-Xing) + 43199 + Operational + INIT + 2019-08-07 + + + Beacon + 436370000 + + BPSK + 9600 bps + + MXSAT-1 + + + + + KAITUO-1B (CAS-3G DCBB) + 40912 + Operational + Draft + 2019-08-07 + + + Beacon + 437950000 + + GMSK + 9600 + + BJ1SH + + + Beacon + 145475000 + + GMSK + 9600 + + BJ1SH + + + + + KALAMSAT-V2 + 43948 + Unknown + Draft + 2019-08-07 + + + Beacon + 436500000 + + + 0 + + + + + + + KAUSAT-5 + 43135 + Unknown + INIT + 2019-08-07 + + + Beacon + 437465000 + + FSK + 9600 Bps + + + + + Beacon 2 + 2413000000 + + MSK + 115200 + + + + + + + PicSat + 43132 + No operational + INIT + 2019-08-07 + + + Beacon + 435525000 + + BPSK + 1200 + + + BPSK + 9600 + + PICSAT + + + Repeater + + 145910000 + + + 435525000 + + FM + + + + + PACE + 40022 + No operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + CW + 0 + + + AFSK + 1200bps + + + + + + + QBITO (ES01) + 42728 + Decayed + INIT + 2019-08-07 + + + Beacon + 436810000 + + GFSK + 9600bps + + + + + + + KS-1Q + 41847 + No operational + Drfat + 2019-08-07 + + + Beacon + 436500000 + + GMSK + 20000 bps + + + + + + + KickSat-2 + 44046 + Decayed + Draft + 2019-08-07 + + + Beacon + 437505000 + + FSK + 1200bps + + KD2BHC + + + + + OUFTI-1 + 41458 + No operational + Draft + 2019-08-07 + + + Beacon + 145980000 + + FSK + 9600 bps + + + CW + 0 + + OUFTI-1 + + + DSTAR + + 435045000 + + + 145950000 + + DSTAR + + + + + LUME-1 + 43908 + No operational + Draft + 2019-08-07 + + + Beacon + 437060000 + + GMSK + 4800bps + + + + + + + Tianwang-1A (TW-1A SECM-1) + 40928 + Operational + INIT + 2019-08-07 + + + Beacon + 435645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + + Tianwang-1B (TW-1B NJUST-2) + 40927 + No operational + Draft + 2019-08-07 + + + Beacon + 437645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + + Tianwang-1C (TW-1C NJFA-1) + 40926 + Operational + Draft + 2019-08-07 + + + Beacon + 435645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + + Swayam COEP + 41607 + No operational + Draft + 2019-08-07 + + + Beacon + 437025000 + + CW + 0 + + + BPSK + 1200 bps + + SWAYAM + + + + + STARS-C (Daughter) + 41895 + Decayed + Draft + 2019-08-07 + + + Beacon + 437245000 + + AFSK + 1200bps + + + CW + 0 + + JJ2YPM + + + Beacon + 437405000 + + AFSK + 1200bps + + JJ2YPM + + + + + HAVELSAT (TR02) + 42701 + No operational + Draft + 2019-08-07 + + + Beacon + 436845000 + + GMSK + 9600 bps + + + + + Beacon + 436843500 + + CW + 0 + + + + + + + Pratham + 41783 + No operational + Draft + 2019-08-07 + + + Beacon + 145980000 + + AFSK + 1200bps + + + CW + 0 + + PRATHAM + + + + + Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6) + 43158 + No operational + INIT + 2019-08-07 + + + Beacon + 436100000 + + GMSK + 9600 + + + + + T1 + + 436100000 + + + 436100000 + + 9k6 GMSK + + + T2 + + 2415000000 + + + 2415000000 + + 5Mbps OFDM + + + T3 + + 5667000000 + + + 5845000000 + + 5Mbps OFDM + + + + + RASAT + 37791 + No operational + INIT + 2019-08-07 + + + Beacon + 437400000 + + FSK + 9600 bps + + RASAT0-11 -12 + + + + + RS-18 (Sputnik 41) + 25533 + Decayed + Draft + 2019-08-07 + + + Beacon + 145812000 + + CW + 0 + + + + + + + Xiaoxiang-1 (TY-1 Tianyi-1) + 41842 + Unknown + Drfaft + 2019-08-07 + + + Beacon + 2401600000 + + GMSK + 9600 bps + + + + + Beacon + 437500000 + + GMSK + 9600 bps + + + + + Beacon + 437525000 + + GMSK + 9600 bps + + + + + + + Xiaoxiang-2 (TY-2 Tianyi-2) + 43155 + Operational + Draft + 2019-08-07 + + + Beacon + 435350000 + + FSK + 9600 Bds + + + + + T1 + + 435350000 + + + 435350000 + + 9k6 GMSK + + + T2 + + 2403000000 + + + 2403000000 + + 5Mbps OFDM + + + T3 + + 5653000000 + + + 5833000000 + + 5Mbps OFDM + + + + + TSAT (TestSat-Lite) + 39682 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + UCLSat (GB03) + 42765 + No operational + Draft + 2019-08-07 + + + Beacon + 435975000 + + GMSK + 9600bps + + ON03GB + + + + + MicroMAS-1 + 40457 + Unknown + Draft + 2019-08-07 + + + Beacon + 468000000 + + OQPSK + 1.5Mbit/s + + + + + + + NIUSAT + 42766 + Operational + INIT + 2019-08-07 + + + Beacon + 436000000 + + FSK + 1200 bps + + NIUOBT + + + Beacon + 2240000000 + + + 0 + + + + + + + nSight-1 (AZ02) + 42726 + Operational + Draft + 2019-08-07 + + DK3WN information + http://www.dk3wn.info/p/?page_id=29535 + + + + + Beacon + 435900000 + + GMSK + 9600bps + + ON02AZ + + + Beacon + 2405000000 + + GMSK + 9600b ps + + ON02AZ + + + + + PO-63 (PehuenSat) + 29712 + No operational + PO-63 + Draft + 2019-08-07 + + + Beacon + 145825000 + + AFSK + 1200bps + + LU1YUC + + + + + SUSat (AU01) + 42730 + No operational + Draft + 2019-08-07 + + + Beacon + 436775000 + + FSK + 9600bps + + + + + + + SNUSAT-1b (KR03) + 42727 + Decayed + Draft + 2019-08-07 + + + Beacon + 435950000 + + BPSK + 1200bps + + ON03KR + + + + + SNUSAT-1 (KR02) + 42733 + Decayed + Draft + 2019-08-07 + + + Beacon + 436090000 + + BPSK + 1200bps + + ON02KR + + + + + PolyITAN-2-SAU (UA01) + 42732 + Decayed + Draft + 2019-08-07 + + + Beacon + 436600000 + + BPSK + 9600bps + + QBUA01 + + + + + TechEdSat-4 + 40455 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + ZA-AeroSat(AZ01) + 42713 + No operational + INIT + 2019-08-07 + + + Beacon + 437200000 + + GMSK + 9600bps + + ON01AZ + + + + + UPSat (GR02) + 42716 + No operational + Draft + 2019-08-07 + + + Beacon + 435765000 + + GMSK + 9600 Bps + + + + + + + VELOX-2 + 41171 + No operational + INIT + 2019-08-07 + + + Beacon + 145930000 + + BPSK CW + 1200bps + + + CW + 0 + + VELOX2 + + + + + LituanicaSAT-2 (LT01) + 42768 + No operational + Draft + 2019-08-07 + + + Beacon + 437265000 + + FSK + 9600bps + + LY0LS + + + + + LO-90 (LilacSat-1 CN02) + 42725 + Operational + LO-90 + Draft + 2019-08-07 + + + Beacon + 436510000 + + BPSK + 9600bps + + ON02CN + + + FM Transpondeur + + 145985000 + + + 436510000 + + FM + + + + + NJUST-1 (CN03) + 42722 + Decayed + Draft + 2019-08-07 + + + Beacon + 436570000 + + BPSK + 1200bps + + BI4ST + + + + + PHOENIX (TW01) + 42706 + Decayed + Draft + 2019-08-07 + + + Beacon + 436915000 + + GMSK + 9600bps + + ON01TW + + + + + QBEE (SE01) + 42708 + Decayed + Draft + 2019-08-07 + + + Beacon + 435800000 + + GFSK + 9600bps + + ON01SE + + + + + SGSat + 42703 + Unknown + Draft + 2019-08-07 + + + Beacon + 437450000 + + FSK + 9600bps + + + + + + + SpaceCube (FR05) + 42717 + Decayed + INIT + 2019-08-07 + + + Beacon + 436880000 + + 1200bps AFSK FM + 0 + + ON05FR + + + FM voice repeater + + 436880000 + + + 145860000 + + FM + + + + + TuPOD + 41936 + Decayed + Draft + 2019-08-07 + + + Beacon + 437425000 + + GMSK CW + 1200bps + + + CW + + + TUPOD + + + + + UNSW-EC0 (AU02) + 42723 + Decayed + Draft + 2019-08-07 + + + Beacon + 436530000 + + 4800bps GMSK + 0 + + ON02AU + + + Beacon + 2400500000 + + + 0 + + + + + + + MO-30 (UNAMSAT-B) + 24305 + No operational + MO-30 + Draft + 2019-08-07 + + + Beacon + 435138000 + + BPSK + 1200bps + + + + + + + LO-93 (DSLWP-A1) + 43471 + No operational + LO-93 + Draft + 2019-08-07 + + + Beacon + 436425000 + + 500/250bps GMSK + 0 + + BJ1SM + + + Beacon + 435425000 + + 500/250bps GMSK + 0 + + BJ1SM + + + Beacon + 2222810000 + + 500/250bps GMSK + 0 + + BJ1SM + + + + + LO-94 (DSLWP-A2) + 43472 + Operational + LO-94 + INIT + 2019-08-07 + + + Beacon + 436400000 + + 500/250bps GMSK + 0 + + BJ1SN + + + Beacon + 435400000 + + 500/250bps GMSK + 0 + + BJ1SN + + + Beacon + 2275220000 + + 500/250bps GMSK + 0 + + BJ1SN + + + + + LilacSat-2 (CAS-3H) + 40908 + Operational + Draft + 2019-08-07 + + + Beacon + 437200000 + + 1k2/4k8*/9k6 AFSK/GFSK + 0 + + BJ1SI + + + Repeater + + 144350000 + + + 437250000 + + + + + Repeater + + 144390000 + + + 144390000 + + + + + + + MYSAT-1 + 44045 + Operational + Draft + 2019-08-07 + + + Beacon + 435775000 + + BPSK + 1200 + + + BPSK + 4800 + + + BPSK + 9600 + + A68MY + + + + + NUDT-PhoneSat (CAS-3I) + 40900 + No operational + INIT + 2019-08-07 + + + Beacon + 437300000 + + GFSK + 96000 + + BJ1SJ + + + + + UBAKUSAT + 43467 + No operational + Draft + 2019-08-07 + + + Beacon + 437225000 + + CW + 0 + + YM1RAS + + + Beacon + 437325000 + + GMSK + 9600bps + + YM1RAS + + + Repeater + + 145935000 + 145960000 + + + 435200000 + 435250000 + + SSB linear + + + + + UbatubaSat (Tancredo-1) + 41931 + No operational + Draft + 2019-08-07 + + + Beacon + 437200000 + + AFSK + 1200 Bps + + + CW + 0 + + PY0ETA + + + + + UO-15 (UoSAT-4) + 20438 + Decayed + UO-15 + Draft + 2019-08-07 + + + Beacon + 435120000 + + CW + 0 + + + + + + + WASEDA-SAT3 + 41933 + No operational + Draft + 2019-08-07 + + + Beacon + 437290000 + + CW + 0 + + + FSK + 1200 Bps + + + + + + + XW-2F (CAS-3F) + 40910 + Operational + INIT + 2019-08-07 + + + Beacon + 145975000 + + CW + 0 + + BJ1SG + + + Beacon + 145955000 + + GMSK + 9600 bps + + BJ1SG + + + Repeater + + 435330000 + 435350000 + + + 145980000 + 146000000 + + + + + + + LINK (KR01) + 42714 + No operational + Draft + 2019-08-07 + + + Beacon + 436030000 + + BPSK + 1200bps + + D80LW + + + + + RANGE-A + 43772 + No operational + Draft + 2019-08-07 + + + Beacon + 437150000 + + 0.1kbps-115.2kbps FSK/MSK/GFSK/GMSK + 0 + + + + + + + AO-24 (ARSENE) + 22654 + No operational + AO-24 + Draft + 2019-08-07 + + + Beacon + 2446540000 + + AFSK + 1200bps + + + + + Beacon + 145975000 + + AFSK + 1200bps + + + + + + + NuSat-2 + 41558 + Operational + INIT + 2019-08-07 + + + Beacon + 145900000 + + SSB CW + 0 + + + + + + + EntrySat + 44429 + Not Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=334 + Nicolas Nolhier F5MDY + 2013-10-15 + 2015-01-08 + nolhier@laas.fr.nospam + + + 2019-07-03 + ISS + + + Verified + 2019-06-26 + + Mission description + https://www.csut.eu/en/project/entrysat/ + The objective of the mission, to study the atmospheric re-entry of debris, is well described, the scientific requirements and the system requirements are fully specified. However, given the short duration of analysis of atmospheric re-entry phenomena, this mission is ambitious and requires additional technical studies to show its full feasibility. +The mission analysis is to consolidate, when information about the orbit and the launcher will be well known. + + + + Mission description + https://websites.isae-supaero.fr/entrysat/ + + + + + Telemetry 1 + 436950000 + + BPSK + 9k6 + + ON02FR + + + + + EntrySat reception + https://www.csut.eu/en/recevoir-entrysat/ + + + AMSAT-F : Kaitai file Description (*.ksy) + https://code.electrolab.fr/xtof/telemetrydescription/tree/master/EntrySat + + + SatNogGS: Kaitai file Description (*.ksy) + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/entrysat.ksy + + + + + + + http://site.amsat-f.org/entrysat/ + + + + Taurus-1 (Jinniuzuo-1) + 44530 + Operational + + 2013-09-12 + Taiyuan Satellite Launch Center, Chine + + + Draft + 2019-09-14 + + Digital FM to Codec 2 transpondeur + https://www.amsat.org/wordpress/wp-content/uploads/2019/03/N8HM_LilacSat_LO-90.pdf + + + + + Beacon + 435840000 + + + + + + + + FM to Codec-2 + + 145820000 + + + 436760000 + + FM to Codec-2 + 67 + + + + + + + + + + + + + + + + + Orbital Factory 2 (OF-2) + 0 + To Be Launch + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + IARU information + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=685 + + + + + Beacon + 435040000 + + GMSK + 9600 + + + + + Beacon + 2426000000 + + QPSK + 3-5 Mbps + + + + + + + + + + + + + + + + + + + SwampSat II + 0 + To Be Launch + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=677 + Jay Garlitz AA4FL + 2019-06-26 + 2019-09-09 + jgarlitz@ufl.edu.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + Large Square-Loop Antenna Deployment from CubeSats + http://digitalcommons.usu.edu/cgi/viewcontent.cgi?article=3510 + + + + + Beacon + 145875000 + + GMSK + 9600 + + + + + Beacon + 436350000 + + GMSK + 9600 + + + + + Beacon + 2432000000 + + QPSK + 3 Mbps + + + + + + + + + + + + + + + + + + + Argus-2 + 0 + To Be Launch + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + IARU information + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=682 + + + + + Beacon + 437290000 + + GMSK + 9600 + + + + + + + + + + + + + + + + + + + RadSat-u + 0 + To Be Launch + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=551 + Larry Springer expérimental + 2017-03-08 + 2017-04-26 + Larry.springer@msu.edu.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + RadSat-U publication + https://scholarworks.montana.edu/xmlui/handle/1/12916 + Les chercheurs de MSU travaillent depuis huit ans sur un système informatique tolérant aux rayonnements ionisants pour les applications spatiales. Afin de quantifier la quantité de rayonnement ressentie par l'ordinateur, l'équipe RadSat-U développe un capteur de rayonnement photo-voltaïque. RadSat-U, un satellite 3U conçu pour transporter l'ordinateur tolérant aux radiations dans l'espace, est la plate-forme de test idéale. L'expérience consiste en une cellule solaire entièrement intégrée et un circuit de conditionnement de signaux conçus pour s'adapter à RadSat-U. RadSat-U transportera ensuite à la fois l'ordinateur tolérant aux radiations et l'expérience sur les cellules solaires en orbite où l'environnement de rayonnement spatial testera les limites des deux systèmes. Un test à grande échelle élèvera cette nouvelle technologie au plus haut niveau de la NASA pour les technologies émergentes, ce qui lui permettra d'être utilisé dans de futures missions. + + + An FPGA-based Radiation Tolerant SmallSat Computer System + http://www.montana.edu/blameres/vitae/publications/d_conference_full/conf_full_033_fpga_based_smallsat_computer.pdf + + + + + Beacon + 437425000 + + GMSK + 19200 + + + + + + + + + + + + + + + + + + + ATL 1 (MO-106) + 44830 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=640 + Levente Dudas HA7WEN + 2018-08-13 + 2018-11-19 + dudas@hvt.bme.hu.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + Magyar-OSCAR 106 (MO-106) + Verified + 2019-11-26 + + Project information + http://gnd.bme.hu + + + + + + Beacon + 437175000 + + GMSK + 12500 + + + + + + + TRSI-Sat + 0 + Launch + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + INIT + 2019-11-26 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=649 + + + + + + Beacon (IARU) Deprecated + 437150000 + + GMSK + 12500 + + + CW + 12500 + + + + + Beacon (IARU) Deprecated + 437075000 + + GMSK + 12500 + + + CW + 12500 + + + + + + + TRSI Sat telemetry information Center frequency: 437.075 MHz + http://www.kocyla.de/spaceblog/?page_id=292 + + + + + + radio@satrevolution.com + https://github.com/daniestevez/gr-satellites. + + + + SMOG-P (MO-105) + 44832 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=641 + Levente Dudas HA7WEN + 2018-08-13 + 2018-11-19 + dudas@hvt.bme.hu.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + Magyar-OSCAR 105 (MO-105) + Verified + 2019-11-26 + + Project information + http://gnd.bme.hu + + + + + + Beacon + 437150000 + + GMSK + 12500 + + + + + + + FossaSat-1 + 44829 + Launch + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=652 + Julian Ismael Fernandez Barcellona EA4HCD + 2018-10-29 + 2019-05-27 + julian.ismael.fernandez@gmail.com.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + INIT + 2019-11-26 + + The FossaSat-1 Pocketqube + https://fossa.systems/fossasat-1/ + + + + + + Beacon + 436700000 + + LORA + : Bandwidth 125 kHz , Spreading factor 11 , Coding rate 4/8 , Sync word 0x0F0F + + + RTTY + Frequency shift 182 Hz, Baudrate 45 baud , Encoding ITA2 (5-bit, aka “Baudot code”), Single stop bit, no parity + + + + + + + To use and decode the FossaSat-1 Satellite, please consult our ground station database and instructional guides. + http://groundstationdatabase.com/index.php + + + + + + + + + + + FloripaSat-1 + 44885 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 + Mauricio Sinigaglia PP5BMS + 2018-09-27 + 2018-10-23 + mauricio.sinigaglia@gmail.com.nospam + + + 2019-12-20 + CZ-4B launch vehicle from Taiyuan Satellite Launch Center + + INIT + 2019-12-19 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 + + + + + FloripaSat-1 web site + https://floripasat.ufsc.br/ + + + + + + VHF Beacon + 145900000 + + GFSK + 1200 + + + + + UHF Beacon + 436100000 + + GFSK + 2400 + + + + + Repeater + + 436100000 + + + 436100000 + + GFSK -2400 + + + + + INFORMATION FOR COMMUNICATING WITH FLORIPASAT-1 + https://floripasat.ufsc.br/communication-info/ + + + + + + + https://github.com/floripasat/grs/releases + + + + OPS-Sat + 44878 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=478 + Allesandro Donati DJ0MDO + 2015-07-15 + 2015-10-04 + alessandro.donati@esa.int.nospam + + + 2019-12-18 + Kourou, French Guiana + + Verified + 2019-12-23 + + Calling radio amateurs: help find OPS-SAT! + http://www.esa.int/Enabling_Support/Operations/Calling_radio_amateurs_help_find_OPS-SAT + + + + + OPS-SAT: your flying laboratory! + http://www.esa.int/Enabling_Support/Operations/OPS-SAT_your_flying_laboratory + + + + + + Beacon + 437200000 + + GMSK + 9600 + + + + + + + OPS-SAT UHF Handbook + https://github.com/esa/gr-opssat/blob/master/docs/os-uhf-specs.pdf + + + OPS-SAT UHF beacon reception report + https://docs.google.com/forms/d/e/1FAIpQLSfkHF_wN2IxBb2WNYm6RuA_iT6qJH4Hz_pA9hCbcp0AcG5TbA/viewform + + + https://github.com/esa/gr-opssat + + + + Duchifat3 + 44854 + Operationnal + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=586 + Shamai Opfer 4Z1WS and David Greenberg 4X1DG + 2017-10-17 + 2017-11-22 + 4z1ws@amsat.org.nospam and david.greenberg@bezeqint.net.nospam + + + 2019-12-11 + + + + INIT + 2019-12-19 + + + + + + + + + + Beacon + 436400000 + + PBSK + 9600 + + + + + U/V FM + + 145970000 + + + 436400000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + CAMSAT CAS-6 + 44880 + Operationnal + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=622 + Alan Kung BA1DU + 2018-05-18 + 2018-07-19 + alankung@vip.sina.com.nospam + + + 2019-12-20 + CZ-4B launch vehicle from Taiyuan Satellite Launch + Center + + + INIT + 2019-12-19 + + Information document + https://ukamsat.files.wordpress.com/2019/12/camsat-news-release-for-cas-6-satellie.pdf + + + + + + + CW Beacon + 145910000 + + CW + + + BJ1SO + + + GMSK Beacon + 145890000 + + GMSK + 4800 + + BJ1SO + + + U/V Linear Transponder + + 435282000 + + + 145945000 + + + true + + + + + Digital telemetry format + + https://ukamsat.files.wordpress.com/2019/12/cas-6-satellites-digital-telemetry-description.pdf + + + + CW telemetry format + + https://ukamsat.files.wordpress.com/2019/12/cas-6-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + HuskySat-1 + 0 + To be Launched + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=604 + Jeffrey Chrisope KI7ORW + 2018-03-07 + 2018-04-09 + jeffchrisope@live.com.nospam + + + Wallops Flight Facility, états unis + + Draft + 2020-01-26 + + Project Information page + https://sites.google.com/uw.edu/huskysatellitelab/huskysat-1 + + + + Beacon + 435800000 + + BPSK + 1200 + + + + + Beacon Experimental + 24049000000 + + + + + + + + U/V FM + + 145910000 + 145940000 + + + 435810000 + 435840000 + + + true + + + + + FoxTLM is used for this satellite + https://www.amsat.org/tlm/leaderboard.php?id=0 + + + + + + cubesat@uw.edu + https://www.g0kla.com/foxtelem/index.php + + + + PHOENIX + 0 + To be deployed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 + QB50 and National Cheng Kung University + 2013-10-15 + 2015-04-06 + bx1ad@ctarl.org.tw.nospam + + Draft + 2020-01-14 + + Project page + http://phxcubesat.asu.edu/ + + + Frequency coordination note + + 437350000 is used instead of 436915000. This frequency is also used by Quarman satellite. THe satellite allow a ping command + + + + Beacon + 437350000 + + GMSK + 9600 + + KIOO7Y - WJ2OXY + + + Ping Mode + + 437350000 + + + 437350000 + + + + + + + Radioamateur page including beacon description + https://github.com/ASU-cubesat/phxsat-gsw-public + + + + + + + https://github.com/ASU-cubesat/phxsat-gsw-public + + + + AZTECHSAT-1 + 0 + To Be Launch + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=661 + Enrique Sanchez Lara XE1SLE + 2018-11-27 + 2019-05-19 + enrique.sanchez@upaep.mx.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + Project page + http://www.upaep.mx/aztechsat + + + + + Beacon + 437300000 + + GMSK + 9600 + + + FSK + 9600 + + + + + + + + + + + + + + + + + + + QUETZAL-1 + 0 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=653 + José Bagur TG8JAB + 2018-11-15 + 2019-07-23 + jabagur@uvg.edu.gt.nospam + + + International Space Station + + Draft + 2020-05-01 + + Project page + https://www.uvg.edu.gt/cubesat-en/ + + + Telemetry description and associated SW + https://github.com/danalvarez/gr-quetzal1 + This repository includes the UHF specifications for Quetzal-1, information on demodulating and decoding beacons from the satellite, as well as a graphical application to view beacon data. + + + + + Beacon + 437200000 + + GMSK + 4800 + + + + + + + beacon description + https://github.com/danalvarez/gr-quetzal1/blob/master/docs/Beacon_Package_Data.xlsx + + + + + + satelite@uvg.edu.gt + https://github.com/danalvarez/gr-quetzal1 + + + + DOSAAF-85 (RS-44) + 44909 + Operational + + false + + + 2019-12-26 + Plesetsk Cosmodrome + + Draft + 2020-05-01 + + satellite information + https://r4uab.ru/2020/04/30/na-sputnike-dosaaf-85-rs-44-dlya-testirovaniya-byl-vklyuchen-radiolyubitelskij-retranslyator/ + + + + Beacon + 435605000 + + CW + RS44 + + + + + Transpondeur + + 145935000 + 145995000 + + + 435610000 + 435670000 + + SSB/CW + yes + + + + + + + + + + + + + + + + diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/AAUSAT-4.xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/AAUSAT-4.xml new file mode 100644 index 00000000..cddab530 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/AAUSAT-4.xml @@ -0,0 +1,33 @@ + + + + AAUSAT-4 + Operational + 41460 + 2019-08-07 + INIT + + + Beacon + 437425000 + + GFSK + 2400 + + + GFSK + 9600 + + + GFSK + 19200 + + + CW + + + OZ4CUB + + + + \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/ACRUX-1.xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/ACRUX-1.xml new file mode 100644 index 00000000..112c2d56 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/ACRUX-1.xml @@ -0,0 +1,43 @@ + + + + ACRUX-1 + Operational + 44369 + 2019-08-07 + + 2019-06-29 + + + draft + + ACRUX-1 + https://melbournespace.com.au/projects/ + + + + + Beacon + 437200000 + + GMSK + 9600bps + + CQCQCQ + + + + + + <Value/> + </DescriptionURL> + <ReportURL> + <Title/> + <Value/> + </ReportURL> + <ReportEmail/> + <SoftwareURL/> + <Description/> + </TelemetryData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/AISTECHSAT-2.xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/AISTECHSAT-2.xml new file mode 100644 index 00000000..b7e18346 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/AISTECHSAT-2.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>AISTECHSAT-2</Name> + <Status>Operational</Status> + <NasaID>43768</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>Draft</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>436730000 </Frequency> + + <Modes> + <Mode> GMSK </Mode> + <Speed>4800 </Speed> + </Modes> + <Modes> + <Mode> GMSK </Mode> + <Speed>49600</Speed> + </Modes> + <CallSign/> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-1.xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-1.xml new file mode 100644 index 00000000..9c406374 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-1.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>Aalto-1</Name> + <Status>Operational</Status> + <NasaID>42775</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>INIT</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>437220000 </Frequency> + <Modes> + <Mode>FSK CW </Mode> + <Speed>9600bps</Speed> + </Modes> + <Modes> + <Mode> CW </Mode> + <Speed> </Speed> + </Modes> + <CallSign>OH2A1S</CallSign> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-2 (FI01).xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-2 (FI01).xml new file mode 100644 index 00000000..f6348ec7 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-2 (FI01).xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>Aalto-2 (FI01)</Name> + <Status>Decayed</Status> + <NasaID>42729</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>INIT</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>437.335</Frequency> + <Modes> + <Mode> GFSK </Mode> + <Speed>9600 bps</Speed> + </Modes> + <CallSign>AALTO2</CallSign> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/Al-Farabi-2.xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/Al-Farabi-2.xml new file mode 100644 index 00000000..7bee14a8 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/Al-Farabi-2.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>Al-Farabi-2</Name> + <Status>Operational</Status> + <NasaID>43805</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>Draft</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>436500000 </Frequency> + <Modes> + <Mode> GMSK </Mode> + <Speed>4800bps </Speed> + </Modes> + <Modes> + <Mode>CW </Mode> + <Speed/> + </Modes> + <CallSign>UN1GWA</CallSign> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/AmurSat (AmGU-1).xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/AmurSat (AmGU-1).xml new file mode 100644 index 00000000..97704389 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/AmurSat (AmGU-1).xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>AmurSat (AmGU-1)</Name> + <Status>Operational</Status> + <NasaID>44394</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>Draft</SatelliteInformationStatus> + <Information> + <Title>IARU coordination Declined + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + + + + Beacon + 436250000 + + mobitex + 4800bps + + + + + + \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/AoXiang-1 (CN04).xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/AoXiang-1 (CN04).xml new file mode 100644 index 00000000..8f032330 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/AoXiang-1 (CN04).xml @@ -0,0 +1,39 @@ + + + + AoXiang-1 (CN04) + Decayed + 42735 + 2019-08-07 + Draft + + + Beacon + 2401600000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437525000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437500000 + + BPSK + 9600 bps + + NPUAX1 + + + + \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/Aoba-Velox-4.xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/Aoba-Velox-4.xml new file mode 100644 index 00000000..9474b7dc --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/Aoba-Velox-4.xml @@ -0,0 +1,67 @@ + + + Aoba-Velox 4 + Not operational + 43940 + + Draft + 2019-08-05 + 2019-003J + + 2019-01-19 + Verified + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=499 + + + + + + + AOBA VELOX-IV site + http://www.eee.ntu.edu.sg/research/SaRC/Research/Projects/Pages/AOBA-VELOX-IV.aspx + + + + + + + + + Telemetry 1 + 437225000 + + GMSK + 9600 + + + + + + + + + + + + + + + + + + + av4mail@googlegroups.com + + + + + \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/Armadillo.xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/Armadillo.xml new file mode 100644 index 00000000..d32b04b2 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/Armadillo.xml @@ -0,0 +1,52 @@ + + + + Armadillo + Operational + 44352 + 2019-08-07 + Draft + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=237 + + + + Project information + https://www.facebook.com/UTSatLab/app/208195102528120/?ref=page_internal + + + + + Beacon + 437525000 + + GMSK + 19200 bps + + + GMSK + 38400 bps + + + CW + + + KE5DTW + + + + + SATNOGS : Kaitai Struct for telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/armadillo.ksy + + + + <Value/> + </ReportURL> + <ReportEmail/> + <SoftwareURL/> + <Description/> + </TelemetryData> + </Satellites> +</AmsatList> diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/Atlantis (US02).xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/Atlantis (US02).xml new file mode 100644 index 00000000..33bcf6cd --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/Atlantis (US02).xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>Atlantis (US02)</Name> + <Status>Decayed</Status> + <NasaID>42737</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>INIT</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>436390000 </Frequency> + + <Modes> + <Mode> GMSK </Mode> + <Speed>9600bps </Speed> + </Modes> + <CallSign>WD8DOX</CallSign> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmdTest.java b/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmdTest.java new file mode 100644 index 00000000..6872c82e --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmdTest.java @@ -0,0 +1,40 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import static org.junit.Assert.*; + +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +public class CheckCmdTest { + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + } + + @Before + public void setUp() throws Exception { + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void test() { + ParameterSingleton parameter = ParameterSingleton.getInstance(); + + parameter.setInputFile("src/test/data/FileIn/AmsatList.xml"); + CheckCmd cmd = new CheckCmd(); + cmd.excute(); + // si il n'y a pas d'erreur généré. + assertTrue( true ); + } + +} diff --git a/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmdTest.java b/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmdTest.java new file mode 100644 index 00000000..b34129f5 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmdTest.java @@ -0,0 +1,41 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import static org.junit.Assert.*; + +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +public class MergeCmdTest { + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + } + + @Before + public void setUp() throws Exception { + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testExcute() { + ParameterSingleton parameter = ParameterSingleton.getInstance(); + parameter.setOutputFile("outputFile.xml"); + parameter.setInputDirectory("src/test/data/in"); + + MergeCmd cmd = new MergeCmd(); + cmd.excute(); + // si il n'y a pas d'erreur généré. + assertTrue( true ); + } + +} diff --git a/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmdTest.java b/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmdTest.java new file mode 100644 index 00000000..3eb7085b --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmdTest.java @@ -0,0 +1,42 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import static org.junit.Assert.*; + +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +public class UpdateCmdTest { + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + } + + @Before + public void setUp() throws Exception { + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void test() { + ParameterSingleton parameter = ParameterSingleton.getInstance(); + + + parameter.setInputDirectory("src/test/data/in"); + parameter.setOutputDirectory("src/test/data/out"); + UpdateCmd cmd = new UpdateCmd(); + cmd.excute(); + // si il n'y a pas d'erreur généré. + assertTrue( true ); + } + +} diff --git a/ModuleSatelliteDatabase/pom.xml b/ModuleSatelliteDatabase/pom.xml index cb8414d1..0478ec14 100644 --- a/ModuleSatelliteDatabase/pom.xml +++ b/ModuleSatelliteDatabase/pom.xml @@ -37,6 +37,15 @@ <version>4.11</version> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.glassfish.jaxb</groupId> + <artifactId>jaxb-runtime</artifactId> + <version>2.3.1</version> + <scope>runtime</scope> +</dependency> + + <dependency> <groupId>com.sun.activation</groupId> <artifactId>javax.activation</artifactId> @@ -55,23 +64,23 @@ <version>${jaxb.api.version}</version> </dependency> - <dependency> - <groupId>com.sun.xml.bind</groupId> - <artifactId>jaxb-core</artifactId> - <version>${jaxb.core.version}</version> - </dependency> +<!-- <dependency> --> +<!-- <groupId>com.sun.xml.bind</groupId> --> +<!-- <artifactId>jaxb-core</artifactId> --> +<!-- <version>${jaxb.core.version}</version> --> +<!-- </dependency> --> - <dependency> - <groupId>com.sun.xml.bind</groupId> - <artifactId>jaxb-impl</artifactId> - <version>${jaxb.impl.version}</version> - </dependency> +<!-- <dependency> --> +<!-- <groupId>com.sun.xml.bind</groupId> --> +<!-- <artifactId>jaxb-impl</artifactId> --> +<!-- <version>${jaxb.impl.version}</version> --> +<!-- </dependency> --> - <dependency> - <groupId>com.sun.xml.bind</groupId> - <artifactId>jaxb-osgi</artifactId> - <version>${jaxb.osgi.version}</version> -</dependency> +<!-- <dependency> --> +<!-- <groupId>com.sun.xml.bind</groupId> --> +<!-- <artifactId>jaxb-osgi</artifactId> --> +<!-- <version>${jaxb.osgi.version}</version> --> +<!-- </dependency> --> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core --> <dependency> @@ -92,11 +101,7 @@ <version>20190722</version> </dependency> -<dependency> - <groupId>com.github.spotbugs</groupId> - <artifactId>spotbugs-maven-plugin</artifactId> - <version>4.0.0</version> -</dependency> + @@ -168,14 +173,6 @@ </pluginManagement> </build> - <reporting> - <plugins> - <plugin> - <groupId>com.github.spotbugs</groupId> - <artifactId>spotbugs-maven-plugin</artifactId> - <version>4.0.0</version> - </plugin> - </plugins> - </reporting> + </project> diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java new file mode 100644 index 00000000..02e003bd --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java @@ -0,0 +1,103 @@ +package org.josast.ModuleSatelliteDatabase; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; + +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Marshaller; +import javax.xml.bind.PropertyException; +import javax.xml.bind.Unmarshaller; + +import org.josast.AmsatList.generated.AmsatList; + +public class AmsatListFile { + + + + + public AmsatList openAmsatList(String filein) + { + File fileIn = new File(filein); + return openAmsatList(fileIn); + } + + + public AmsatList openAmsatList(File filein) + { + AmsatList amsatList=null; + + JAXBContext jaxbContext = null; + try { + jaxbContext = JAXBContext.newInstance ("org.josast.AmsatList.generated"); + } catch (JAXBException e) { + + e.printStackTrace(); + } + + Unmarshaller unmarshaller = null; + try { + unmarshaller = jaxbContext.createUnmarshaller(); +// unmarshaller.setValidating(true); + } catch (JAXBException e) { + + e.printStackTrace(); + } + + + try { + amsatList = (AmsatList) unmarshaller.unmarshal(filein); + } catch (JAXBException e) { + + e.printStackTrace(); + } + + + return amsatList; + + } + + public void save(String fichOutSring,AmsatList amsatList) + { + File fichOut = new File(fichOutSring); + JAXBContext jc = null; + Marshaller mrs = null; + try { + jc = JAXBContext.newInstance("org.josast.AmsatList.generated"); + } catch (JAXBException e) { + + e.printStackTrace(); + } + + try { + mrs = jc.createMarshaller(); + } catch (JAXBException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + try { + mrs.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE); + } catch (PropertyException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } // indenter + + if( fichOut != null){ + try { + mrs.marshal(amsatList, new FileOutputStream(fichOut)); + } catch (FileNotFoundException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } catch (JAXBException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + } + + + + +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AppCli.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AppCli.java deleted file mode 100644 index f7718fe0..00000000 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AppCli.java +++ /dev/null @@ -1,162 +0,0 @@ -package org.josast.ModuleSatelliteDatabase; - -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileOutputStream; -import java.util.List; -import java.util.ListIterator; - -import javax.xml.bind.JAXBContext; -import javax.xml.bind.JAXBException; -import javax.xml.bind.Marshaller; -import javax.xml.bind.PropertyException; -import javax.xml.bind.Unmarshaller; - -import org.apache.commons.cli.CommandLine; -import org.apache.commons.cli.CommandLineParser; -import org.apache.commons.cli.DefaultParser; -import org.apache.commons.cli.HelpFormatter; -import org.apache.commons.cli.Option; -import org.apache.commons.cli.Options; -import org.apache.commons.cli.ParseException; -import org.josast.AmsatList.generated.AmsatList; -import org.josast.AmsatList.generated.ObjectFactory; -import org.josast.AmsatList.generated.Satellites; - -/** - * Classe Java for mergin AMSAT-LIST Xml file - * - * Concept : read all files from a directory add this file data in memory save - * all data in one file - * - * @author chris - * - */ - -public class AppCli { - - private static String version = "0.7"; - AmsatList amsatList = null; - List<Satellites> liste = null; - - - - private static Options configParameters() { - - final Option versionOption = Option.builder("V") - - .longOpt("Version") // - - .desc("Return application version") - - .hasArg(false) - - .required(false) - - .build(); - - final Option directoryOption = Option.builder("D") - - .longOpt("Directory") // - - .desc("give directory with all files to merge") - - .hasArg(true) - - .argName("Repository") - - .required(false) - - .build(); - - final Option outputFileOption = Option.builder("O") - - .longOpt("OutputFile") // - - .desc("output file wherre all files are merged") - - .hasArg(true) - - .argName("OutputFile") - - .required(false) - - .build(); - - final Option helpFileOption = Option.builder("h") - - .longOpt("help") - - .desc("display help message") - - .build(); - - final Options options = new Options(); - - options.addOption(versionOption); - - options.addOption(directoryOption); - options.addOption(outputFileOption); - options.addOption(helpFileOption); - - return options; - - } - - - - public static void main(String[] args) throws ParseException { - - final Options options = configParameters(); - - final CommandLineParser parser = new DefaultParser(); - - final CommandLine line = parser.parse(options, args); - - // Si mode aide - - boolean helpMode = line.hasOption("help"); - - if (helpMode) { - - final HelpFormatter formatter = new HelpFormatter(); - - formatter.printHelp(args[0], options, true); - - System.exit(0); - - } - boolean versionpMode = line.hasOption("Version"); - - if (versionpMode) { - - System.out.println(args[0] + version); - - System.exit(0); - - } - - boolean configMode = line.hasOption("Directory"); - - if (configMode) { - - String OutputFile = line.getOptionValue("OutputFile", ""); - String Repository = line.getOptionValue("Directory", ""); - System.out.println("Repository " + Repository + " Output File" + OutputFile); - - -// AppCli merge = new AppCli(); -// merge.createAmsatList(); -// merge.merge(Repository, OutputFile); - - - MergeAmsatListFile merge = new MergeAmsatListFile(); - merge.merge(Repository, OutputFile); - merge.save(OutputFile); - - } - - - } - -} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFile.java new file mode 100644 index 00000000..b5b0362b --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFile.java @@ -0,0 +1,110 @@ +package org.josast.ModuleSatelliteDatabase; + +import java.util.Hashtable; +import java.util.List; +import java.util.ListIterator; +import java.util.Vector; + +import org.josast.AmsatList.generated.AmsatList; +import org.josast.AmsatList.generated.Satellites; + +public class CheckAmsatListFile { + AmsatList al =null; + + public CheckAmsatListFile(String file) + { + AmsatListFile alf = new AmsatListFile(); + al = alf.openAmsatList(file); + + + } + + + public Vector<String> checkUniqueSatelliteName() + { + + Hashtable<String, Satellites> AMSATListSatellite = new Hashtable<String, Satellites>(); + + List<Satellites> listSatellite = al.getSatellites(); + ListIterator<Satellites> it = listSatellite.listIterator(); + Vector<String> satNameVec = new Vector<String>(); + // vérifier qu'un satellite n'est pas deux fois dans la base + + while (it.hasNext()) { + Satellites sat = it.next(); + String satelliteName = sat.getName(); + + if (AMSATListSatellite.containsKey(satelliteName) == true) { + satNameVec.addElement(satelliteName); + }else + { + AMSATListSatellite.put(satelliteName, sat); + } + + + + } + return satNameVec; + } + + public Vector<String> checkUniqueSatelliteNasaID() + { + + Hashtable<Integer, Satellites> AMSATListSatellite = new Hashtable<Integer, Satellites>(); + + List<Satellites> listSatellite = al.getSatellites(); + ListIterator<Satellites> it = listSatellite.listIterator(); + Vector<String> satNameVec = new Vector<String>(); + // vérifier qu'un satellite n'est pas deux fois dans la base + + while (it.hasNext()) { + Satellites sat = it.next(); + int satelliteId = sat.getNasaID(); + + if (AMSATListSatellite.containsKey(satelliteId) == true) { + satNameVec.addElement(sat.getName()+ " "+satelliteId); + }else + { + AMSATListSatellite.put(satelliteId, sat); + } + + } + return satNameVec; + } + + + public Vector<String> getListSatelliteStatus () + { + Hashtable<String, Vector<Satellites>> AMSATListStatus = new Hashtable<String, Vector<Satellites>>(); + + List<Satellites> listSatellite = al.getSatellites(); + Vector<String> satelliteStatus = new Vector<String>(); + + ListIterator<Satellites> it = listSatellite.listIterator(); + while (it.hasNext()) { + Satellites sat = it.next(); + String status = sat.getStatus(); + + if (status == null) + { + System.out.println("Status Null"); + status="Not Defined"; + + } + Vector<Satellites> vsat; + if (AMSATListStatus.containsKey(status) == true) { + vsat = AMSATListStatus.get(status); + + }else + { + vsat = new Vector<Satellites>(); + AMSATListStatus.put(status, vsat); + satelliteStatus.add(status); + } + vsat.addElement(sat); + } + + return satelliteStatus; + } + +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java index d2da2a6b..86e9a452 100644 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java @@ -13,10 +13,12 @@ import javax.xml.bind.Marshaller; import javax.xml.bind.PropertyException; import javax.xml.bind.Unmarshaller; + import org.josast.AmsatList.generated.AmsatList; import org.josast.AmsatList.generated.ObjectFactory; import org.josast.AmsatList.generated.Satellites; + public class MergeAmsatListFile { private Logger log = Logger.getLogger(getClass().getName()); @@ -168,4 +170,7 @@ public class MergeAmsatListFile { } + + + } diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java new file mode 100644 index 00000000..bf48d7c5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java @@ -0,0 +1,94 @@ +package org.josast.ModuleSatelliteDatabase; + +import java.util.Hashtable; +import java.util.List; +import java.util.ListIterator; + + +import org.josast.AmsatList.generated.AmsatList; +import org.josast.AmsatList.generated.Satellites; + +public class UpdateAmsatListFile { + + + private AmsatList al; + AmsatListFile alf = null; + public UpdateAmsatListFile(String filein) + { + alf = new AmsatListFile(); + al = alf.openAmsatList(filein); + } + + public void saveUpdateFile (String filename ) + { + alf.save(filename,al); + } + + public void updateStatus() + { + Hashtable<String, String> AMSATListStatus = new Hashtable<String, String>(); + // init table status + + AMSATListStatus.put("decayed ","Decayed"); + AMSATListStatus.put("Decayed ","Decayed"); + AMSATListStatus.put("Deep Space","Deep Space"); + AMSATListStatus.put("Deep space","Deep Space"); + AMSATListStatus.put("Fail","Failed"); + AMSATListStatus.put("Failed","Failed"); + AMSATListStatus.put("Launch","Launch"); + AMSATListStatus.put("No operational","Not operational"); + AMSATListStatus.put("No operational","Not operational"); + AMSATListStatus.put("Not amateur Satellite","Not amateur satellite"); + AMSATListStatus.put("Unknown","Unknown"); + AMSATListStatus.put("Not operational","Not operational"); + AMSATListStatus.put("Not Operational","Not operational"); + AMSATListStatus.put("Operational","Operational"); + AMSATListStatus.put("Operationnal","Operational"); + AMSATListStatus.put("To be deployed","To be deployed"); + AMSATListStatus.put("To Be Laucnh","To be launch"); + AMSATListStatus.put("To Be Launch","To be launch"); + AMSATListStatus.put("To be launched","To be launch"); + AMSATListStatus.put("To be Launched ","To be launch"); + AMSATListStatus.put("unknown","Unknown"); + AMSATListStatus.put("Unknown","Unknown"); + + List<Satellites> listSatellite = al.getSatellites(); + + ListIterator<Satellites> it = listSatellite.listIterator(); + while (it.hasNext()) { + Satellites sat = it.next(); + String status = sat.getStatus(); + System.out.println(sat.getName()+" "+status); + if (status == null) + { + sat.setStatus("Unknown"); + System.out.println("add status to :"+ sat.getStatus()); + + } + else + { + status = status.trim(); + + if (AMSATListStatus.containsKey(status) == true) + { + String refstatus = AMSATListStatus.get(status); + + if (refstatus.compareTo(status)!=0) + { + sat.setStatus(refstatus); + System.out.println("Status change :"+status+"to"+refstatus); + } + } + else + { + sat.setStatus("Unknown"); + System.out.println("add status to empty :"+ sat.getStatus()); + } + } + } + + } + + + +} diff --git a/ModuleSatelliteDatabase/src/test/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFileTest.java b/ModuleSatelliteDatabase/src/test/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFileTest.java new file mode 100644 index 00000000..28ed673a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFileTest.java @@ -0,0 +1,40 @@ +package org.josast.ModuleSatelliteDatabase; + +import static org.junit.Assert.*; + +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +public class CheckAmsatListFileTest { + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + } + + @Before + public void setUp() throws Exception { + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void test() { + String file = "src\\test\\data\\FileIn\\AmsatList.xml"; + CheckAmsatListFile check = new CheckAmsatListFile(file); + System.out.println(check.checkUniqueSatelliteName().toString()); + System.out.println(check.checkUniqueSatelliteNasaID().toString()); + System.out.println(check.getListSatelliteStatus()); + // si il n'y a pas d'erreur généré. + assertTrue( true ); + } + +} diff --git a/ModuleSatelliteDatabase/src/test/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFileTest.java b/ModuleSatelliteDatabase/src/test/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFileTest.java new file mode 100644 index 00000000..2f9928ec --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFileTest.java @@ -0,0 +1,38 @@ +package org.josast.ModuleSatelliteDatabase; + +import static org.junit.Assert.*; + +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +public class UpdateAmsatListFileTest { + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + } + + @Before + public void setUp() throws Exception { + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void test() { + String file = "src\\test\\data\\FileIn\\AmsatList.xml"; + UpdateAmsatListFile uf = new UpdateAmsatListFile(file); + uf.updateStatus(); + + assertTrue( true ); + } + +} -- GitLab From 8fcff69e70f2537703bb8d7a02900614ca8f9b6b Mon Sep 17 00:00:00 2001 From: xtof <christophe.mcr@gmail.com> Date: Sat, 9 May 2020 12:15:39 +0200 Subject: [PATCH 02/10] feat: add cmd to ApplicationSatelliteDatabase Merge, update & Check --- ApplicationSatelliteDatabaseCli/pom.xml | 31 ----- .../cmd/MergeCmd.java | 2 +- .../cmd/OptionsAnalysis.java | 120 +++++++++++++++--- .../cmd/ParameterSingleton.java | 41 ++++-- .../cmd/UpdateCmd.java | 6 +- .../src/test/data/in/Aalto-1.xml | 2 +- 6 files changed, 143 insertions(+), 59 deletions(-) diff --git a/ApplicationSatelliteDatabaseCli/pom.xml b/ApplicationSatelliteDatabaseCli/pom.xml index ed886d97..f71e48b0 100644 --- a/ApplicationSatelliteDatabaseCli/pom.xml +++ b/ApplicationSatelliteDatabaseCli/pom.xml @@ -54,38 +54,7 @@ <version>1.4</version> </dependency> - <dependency> - <groupId>org.glassfish.jaxb</groupId> - <artifactId>jaxb-runtime</artifactId> - <version>2.3.1</version> - <scope>runtime</scope> -</dependency> - - <dependency> - <groupId>javax.xml.bind</groupId> - <artifactId>jaxb-api</artifactId> - <version>${jaxb.api.version}</version> - </dependency> - - - <dependency> - <groupId>com.sun.xml.bind</groupId> - <artifactId>jaxb-core</artifactId> - <version>${jaxb.core.version}</version> - </dependency> - - <dependency> - <groupId>com.sun.xml.bind</groupId> - <artifactId>jaxb-impl</artifactId> - <version>${jaxb.impl.version}</version> - </dependency> - - <dependency> - <groupId>com.sun.xml.bind</groupId> - <artifactId>jaxb-osgi</artifactId> - <version>${jaxb.osgi.version}</version> -</dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core --> <dependency> diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java index 641c3fd3..13d2cf3c 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java @@ -11,7 +11,7 @@ public class MergeCmd implements Cmd { log.info(MergeCmd.class.getName()); ParameterSingleton parameter = ParameterSingleton.getInstance(); MergeAmsatListFile merge = new MergeAmsatListFile(); - merge.merge(parameter.getRepository(), parameter.getOutputFile()); + merge.merge(parameter.getInputDirectory(), parameter.getOutputFile()); merge.save(parameter.getOutputFile()); } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java index 3342bd55..f75b4e97 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java @@ -28,7 +28,7 @@ public class OptionsAnalysis { listeCmd = interprete(line, args); } catch (ParseException e) { log.severe(" Unrecognise option " + e.toString()); - System.exit(0); + } } @@ -65,22 +65,61 @@ public class OptionsAnalysis { .required(false) .build(); + + final Option checkOption = Option.builder("C") + + .longOpt("Check") // + + .desc("verify AmsatList File data") - final Option directoryOption = Option.builder("D") + .hasArg(false) + + .required(false) - .longOpt("Directory") // + .build(); + + final Option updateOption = Option.builder("U") + + .longOpt("Update") // + + .desc("update AmsatList File data") + + .hasArg(false) + + .required(false) + + .build(); + + final Option inputDirectoryOption = Option.builder("I") + + .longOpt("Input Directory") // .desc("Input directory with all input xml files (*.xml) ") .hasArg(true) - .argName("Repository") + .argName("InputRepository") + + .required(false) + + .build(); + + final Option outputDirectoryOption = Option.builder("O") + + .longOpt("Output Directory") // + + .desc("Output directory with all input xml files (*.xml) ") + + .hasArg(true) + + .argName("OutputDirectory") .required(false) .build(); - final Option outputFileOption = Option.builder("O") + + final Option outputFileOption = Option.builder("o") .longOpt("OutputFile") // @@ -94,6 +133,21 @@ public class OptionsAnalysis { .build(); + + final Option inputFileOption = Option.builder("i") + + .longOpt("InputFile") // + + .desc("Input file") + + .hasArg(true) + + .argName("InputFile") + + .required(false) + + .build(); + final Option helpFileOption = Option.builder("h") .longOpt("help") @@ -103,10 +157,15 @@ public class OptionsAnalysis { .build(); final Options options = new Options(); - + + + options.addOption(updateOption); + options.addOption(inputFileOption); + options.addOption(checkOption); options.addOption(versionOption); options.addOption(mergeOption); - options.addOption(directoryOption); + options.addOption(inputDirectoryOption); + options.addOption(outputDirectoryOption); options.addOption(outputFileOption); options.addOption(helpFileOption); @@ -120,33 +179,62 @@ public class OptionsAnalysis { Vector<Cmd> cmdList = new Vector<Cmd>(); ParameterSingleton parameter = ParameterSingleton.getInstance(); - + + parameter.setOutputFile( line.getOptionValue("o")); + System.out.println("Output file dir"+ line.getOptionValue("o")); + parameter.setInputDirectory( line.getOptionValue("I")); + System.out.println("Input dir"+ line.getOptionValue("I")); + parameter.setOutputDirectory( line.getOptionValue("O")); + System.out.println("OUtput dir"+ line.getOptionValue("O")); + parameter.setInputFile( line.getOptionValue("InputFile", "")); cmdList.add(new VersionCmd()); if (line.hasOption("help")) { parameter.setArg0(args[0]); parameter.setOption(options); cmdList.add(new HelpCmd()); - } - if (line.hasOption("Version")) { return cmdList; } - - - if (line.hasOption("Merge")) { + if (parameter.getInputDirectory()==null) + { + System.err.println("Merge : inputDirectory not defined"); + } else if( parameter.getOutputFile()==null){ + System.err.println("Merge : Output file name not defined"); + } + else + { MergeCmd cmd = new MergeCmd(); cmdList.add(cmd); - + } } + if (line.hasOption("Check")) { + if( parameter.getInputFile()==null){ + System.err.println("Check : Input file name not defined"); + } + CheckCmd cmd = new CheckCmd(); + cmdList.add(cmd); + } - parameter.setOutputFile( line.getOptionValue("OutputFile", "")); - parameter.setRepository( line.getOptionValue("Directory", "")); + if (line.hasOption("Update")) { + if (parameter.getInputDirectory()==null) + { + System.err.println("Update : input Directory not defined"); + } else if( parameter.getOutputDirectory()==null){ + System.err.println("Update : Output Directory not defined"); + } + else + { + UpdateCmd cmd = new UpdateCmd(); + cmdList.add(cmd); + } + + } return cmdList; diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java index 71fb3455..453e321e 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java @@ -5,8 +5,13 @@ import org.apache.commons.cli.Options; public class ParameterSingleton { private static ParameterSingleton INSTANCE; - private String Repository; + private String OutputFile; + private String InputFile; + private String inputDirectory; + private String outputDirectory; + + private String arg0; private Options option; @@ -21,17 +26,29 @@ public class ParameterSingleton { return INSTANCE; } + + // getters and setters + + - public String getRepository() { - return Repository; + public String getOutputFile() { + return OutputFile; } - public void setRepository(String repository) { - Repository = repository; + public String getInputDirectory() { + return inputDirectory; } - public String getOutputFile() { - return OutputFile; + public void setInputDirectory(String inputDirectory) { + this.inputDirectory = inputDirectory; + } + + public String getOutputDirectory() { + return outputDirectory; + } + + public void setOutputDirectory(String outputDirectory) { + this.outputDirectory = outputDirectory; } public void setOutputFile(String outputFile) { @@ -54,9 +71,15 @@ public class ParameterSingleton { this.option = option; } + public void setInputFile(String optionValue) { + InputFile = optionValue; + + } + public String getInputFile() { + return InputFile; + } + - - // getters and setters } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java index b2fbaccf..2842f0b7 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java @@ -25,7 +25,11 @@ public class UpdateCmd implements Cmd { } if (outputRepertoire.exists() == false) { log.info("create "+ inputRepository); - outputRepertoire.mkdir(); + if (!outputRepertoire.mkdir()) + { + log.severe(outputRepertoire+"is not created"); + } + // System.err.println("not a repository"); // return -1; } else if (outputRepertoire.isDirectory() == false) { diff --git a/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-1.xml b/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-1.xml index 9c406374..2c9f304a 100644 --- a/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-1.xml +++ b/ApplicationSatelliteDatabaseCli/src/test/data/in/Aalto-1.xml @@ -2,7 +2,7 @@ <AmsatList> <Satellites> <Name>Aalto-1</Name> - <Status>Operational</Status> + <Status></Status> <NasaID>42775</NasaID> <UpdateDate>2019-08-07</UpdateDate> <SatelliteInformationStatus>INIT</SatelliteInformationStatus> -- GitLab From cfe691a4381782a24c528244f910f665c903d190 Mon Sep 17 00:00:00 2001 From: xtof <christophe.mcr@gmail.com> Date: Sat, 9 May 2020 12:21:14 +0200 Subject: [PATCH 03/10] test: add files for test --- .../src/test/data/FileIn/AmsatList.xml | 15821 ++++++++++++++++ .../src/test/data/in/AAUSAT-4.xml | 33 + .../src/test/data/in/ACRUX-1.xml | 43 + .../src/test/data/in/AISTECHSAT-2.xml | 26 + .../src/test/data/in/Aalto-1.xml | 25 + .../src/test/data/in/Aalto-2 (FI01).xml | 21 + .../src/test/data/in/Al-Farabi-2.xml | 25 + .../src/test/data/in/AmurSat (AmGU-1).xml | 26 + .../src/test/data/in/AoXiang-1 (CN04).xml | 39 + .../src/test/data/in/Aoba-Velox-4.xml | 67 + .../src/test/data/in/Armadillo.xml | 52 + .../src/test/data/in/Atlantis (US02).xml | 22 + 12 files changed, 16200 insertions(+) create mode 100644 ModuleSatelliteDatabase/src/test/data/FileIn/AmsatList.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AAUSAT-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/ACRUX-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AISTECHSAT-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/Aalto-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/Aalto-2 (FI01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/Al-Farabi-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AmurSat (AmGU-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AoXiang-1 (CN04).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/Aoba-Velox-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/Armadillo.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/Atlantis (US02).xml diff --git a/ModuleSatelliteDatabase/src/test/data/FileIn/AmsatList.xml b/ModuleSatelliteDatabase/src/test/data/FileIn/AmsatList.xml new file mode 100644 index 00000000..81f94589 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/FileIn/AmsatList.xml @@ -0,0 +1,15821 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<AmsatList> + <Satellites> + <Name>SwampSat</Name> + <NasaID>39402</NasaID> + <Status>Not operational</Status> + <RadioData> + <Beacons> + <Name>Main</Name> + <Frequency>437385000</Frequency> + <Modes> + <Mode>FSK</Mode> + <Speed>9600</Speed> + </Modes> + </Beacons> + </RadioData> + </Satellites> + <Satellites> + <Name>Ho'oponopono-2</Name> + <NasaID>39403</NasaID> + <InternationalID>2013-064Z</InternationalID> + <Status>Not operational</Status> + <RadioData> + <Beacons> + <Name>Main</Name> + <Frequency>427220000</Frequency> + <Modes> + <Mode>GMSK</Mode> + <Speed>9600</Speed> + </Modes> + </Beacons> + </RadioData> + </Satellites> + <Satellites> + <Name>ChargerSat-1</Name> + <NasaID>39405</NasaID> + <Status>Not operational</Status> + <RadioData> + <Beacons> + <Name>Main</Name> + <Frequency>437405000</Frequency> + <Modes> + <Mode>FSK</Mode> + <Speed>9600</Speed> + </Modes> + </Beacons> + </RadioData> + </Satellites> + <Satellites> + <Name>Vermont Lunar</Name> + <NasaID>39407</NasaID> + <Status>decayed</Status> + <RadioData> + <Beacons> + <Name>Main</Name> + <Frequency>437305000</Frequency> + <Modes> + <Mode>FSK</Mode> + <Speed>9600</Speed> + </Modes> + <CallSign>W1VTC2</CallSign> + </Beacons> + </RadioData> + </Satellites> + <Satellites> + <Name>ArduSat-1</Name> + <NasaID>39412</NasaID> + <Status>decayed</Status> + <RadioData> + <Beacons> + <Name>Main</Name> + <Frequency>437000000</Frequency> + <Modes> + <Mode>MSK</Mode> + <Speed>9600</Speed> + </Modes> + <Modes> + <Mode>CW</Mode> + </Modes> + <CallSign>WG9XFC-1</CallSign> + </Beacons> + </RadioData> + </Satellites> + <Satellites> + <Name>PicoDragon</Name> + <NasaID>39413</NasaID> + <Status>decayed</Status> + <RadioData> + <Beacons> + <Name>Main</Name> + <Frequency>437250000</Frequency> + <Modes> + <Mode>AFSK</Mode> + <Speed>1200</Speed> + </Modes> + <Modes> + <Mode>CW</Mode> + </Modes> + <CallSign>XV9PID</CallSign> + </Beacons> + </RadioData> + </Satellites> + <Satellites> + <Name>ArduSat-X</Name> + <NasaID>39414</NasaID> + <Status>decayed</Status> + <RadioData> + <Beacons> + <Name>Main</Name> + <Frequency>437007000</Frequency> + <Modes> + <Mode>MSK</Mode> + <Speed>9600</Speed> + </Modes> + <Modes> + <Mode>CW</Mode> + </Modes> + <CallSign>WG9XFC-X</CallSign> + </Beacons> + </RadioData> + </Satellites> + <Satellites> + <Name>TechEdSat-3</Name> + <NasaID>39415</NasaID> + <Status>Not operational</Status> + <RadioData> + <Beacons> + <Name>Main</Name> + <Frequency>437465000</Frequency> + <Modes> + <Mode>AFSK</Mode> + <Speed>9600</Speed> + </Modes> + <Modes> + <Mode>CW</Mode> + </Modes> + </Beacons> + </RadioData> + </Satellites> + <Satellites> + <Name>ZACube-1</Name> + <NasaID>39417</NasaID> + <InternationalID>2013-066B</InternationalID> + <Status>Operational</Status> + <LaunchData> + <LaunchDate>2013-11-21</LaunchDate> + <LaunchingSite>Orenburg, Russia</LaunchingSite> + </LaunchData> + <SatelliteInformationStatus>Verified</SatelliteInformationStatus> + <UpdateDate>2019-05-06</UpdateDate> + <Information> + <Title> F'SATI Web Page + http://www.cput.ac.za/blogs/fsati/zacube-1/ + Project page + + + Twitter + https://www.twitter.com/fsatispace + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=204 + + + + + Main + 14099000 + + GMSK + 9600 + + + AFSK + 1200 + + + CW + + 123456 + + + Repeater + + 145860000 + + + 437245000 + + + + + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + fsatispace@gmail.com + + + + + UniSat-5 + 39421 + 2013-066F + Not operational + + + Main + 437175000 + + GMSK + 9600 + + + + + + Triton-1 + 39427 + 2013-066M + Not operational + + + Main + 2408000000 + + 1200bps RC-BPSK CW + + + CW + + TRIV0 TRIV1 + + + + + Delfi-n3Xt + 39428 + 2013-066N + Not operational + + + Main + 2405000000 + + BPSK MSK + 2400 + + + + + + GOMX-1 + 39430 + 2013-066Q + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=231 + + + + Twitter + https://gomspace.com/gomx-1.aspx + + + + + Main + 437250000 + + GMSK + 1200 + + + GMSK + 2400 + + + GMSK + 4800 + + + GMSK + 9600 + + + CW + + + + + + BRITE-PL + 39431 + 2013-066R + Not operational + + + Main + 145890000 + + 32Kbps-256Kbps + + + + + + ICUBE-1 + 39432 + 2013-066S + Not operational + + + Main + 145947000 + + 1200bps BPSK/FM-DSB_Transponder + + + + + + Humsat-D + 39433 + 2013-066T + Not operational + + + Main + 437325000 + + CW + + + + + + Wren + 39435 + 2013-066V + Not operational + + + Main + 437405000 + + FSK + 1200 + + + CW + + + + + + Eagle-2 ($50SAT MO-76) + 39436 + Decayed + MO-76 + Draft + 2015-05-30 + + project website + http://www.50dollarsat.info/ + $50SAT (aka Eagle-2 prelaunch) MO-76 was launched aboard Unisat-5 on November 21, 2013 from Dombarovsky, Russia on a Dnepr vehicle. This project is a joint effort involving Professor Bob Twiggs, Morehead State University, Howie DeFelice, AB2S, Michael Kirkhart, KD8QBA, and Stuart Robinson, GW7HPW. (Source AMSAT-NA) + + + Yahoo group Discution + https://groups.yahoo.com/neo/groups/50dollarsat/conversations/topics + + + + Main + 437505000 + + GFSK + 9600 + + + CW + + + RTTY + + + + + + Eagle-1 (BeakerSat-1) + 39437 + 2013-066X + Not operational + + + Main + 437465000 + + GFSK + 9600 + + + + + + VELOX-P2 + 39438 + 2013-066Y + Not operational + + + Main + 145980000 + + BPSK + 1200 + + + CW + + + + + + First-MOVE + 39439 + 2013-066Z + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=125 + + + + Mission information + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/first-move/ + First-MOVE On-Board Computer Damaged - As we posted on December 21st 2013, we are not receiving data beacons from First-MOVE anymore. In contrast to the nominal mode in which CW beacons and AX.25 beacons alternate every 60 seconds, we are now hearing only CW beacons every 60 seconds. After trying many different approaches to reset our on-board computer via telecommands we re-analyzed our current options again last week. This analysis resulted in the conclusion, that the on-board software has sustained irreparable damage. The fact that we are receiving CW beacons every 60 seconds indicates, that both the transceiver and the power supply are functioning properly. For the transceiver to return to the 60 second CW beacon mode, it has to be power cycled, since this mode cannot be activated by the on-board software. This means that there was definitively an interruption in the power supply. In case of an interruption, the computer should deactivate the 60 second CW beacon mode as the first task during the boot sequence. As this has obviously not happened, the only conclusion is, that the computer is not getting through the entire boot sequence, probably because it was damaged due to an erroneous write process on the memory chip. Since there is no way to upload new software to First-MOVE we see no possibility to continue the mission and perform the planned experiments. It seems that First-MOVE has become inactive after a very short lifetime. We will still receive the CW beacons, but we will not hear anything but his name. + + + + + Main + 145970000 + + BPSK + 1200 + + + CW + + MOVE1 + + + Repeater + + 435520000 + + + 145970000 + + + + + + + CubeBug-2 (LO-74) + 39440 + 2013-066AA + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=310 + + + + + Main + 437445000 + + FSK + 1200 + + + GMSK + 9600 + + CUBEB2-6 + + + + + Amateur Radio – PEØSAT - information on telemetry data + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/cubebug-2/ + + + + + + + + + + + PUCP-SAT-1 + 39442 + 2013-066AC + Not operational + + + Main + 145840000 + + AFSK + 1200 + + + + + + Qubescout-S1 + 39443 + 2013-066AD + Not operational + + + Main + 437525000 + + GMSK + 9600 + + + + + + FUNcube-1 (AO-73) + 39444 + 2013-066AE + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + project information page + https://funcube.org.uk/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=158 + + + + + BPSK + 145935000 + + BPSK + 1200 + + + + CW + 145815000 + + CW + + + + + Repeater + + 435130000 + 435150000 + + + 145950000 + 145970000 + + + + + + + HiNCube + 39445 + 2013-066AF + Not operational + + + Main + 438305000 + + + + + + + + UWE-3 + 39446 + 2013-066AG + Operational + + 2013-11-21 + Orenburg, Russia + + Verified + 2019-05-06 + + project information page + http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-3/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=134 + + + + + Main + 437385000 + + FSK + 9600 + + + CW + + DP0UWG + + + + + Amateur Radio – PEØSAT - information on telemetry data + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/uwe-3/ + + + + + + + http://www.dk3wn.info/files/uwe3_online.zip + + + + FIREBIRD-U1 + 39463 + 2013-072B + Not operational + + + Main + 437405000 + + FSK + 19200 + + K7MSU + + + + + FIREBIRD-U2 + 39464 + 2013-072C + Not operational + + + Main + 437230000 + + FSK + 19200 + + K7MSU + + + + + MCubed-2 + 39469 + 2013-072H + Operational + + 2013-12-06 + Air Force Western Test Range + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=265 + + + + MCubed-2 recovery + http://www.ne.jp/asahi/hamradio/je9pel/mc2recov.htm + + + + + Main + 437485000 + + GMSK + 9600 + + NOCALL + + + + + CUNYSAT-1 + 39470 + 2013-072J + Not operational + + + Main + 437505000 + + GMSK + 9600 + + + CW + + + + + + IPEX + 39471 + 2013-072K + Not operational + + + Main + 437270000 + + GMSK + 9600 + + + CW + + KJ6KSL-1 + + + + + AIST-1 (RS-41) + 39492 + 2013-078C + Not operational + + + Main + 435265000 + + CW + + + + + + E-Star-2 + 41459 + 2016-025D + Operational + + 2016-04-25 + Kourou, Guyanne Française + + Verified + 2019-02-14 + + Porject page + http://www.cubesatteam-polito.com/e-star-ii/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=241 + + + + + Main + 437485000 + + AFSK + 1200 + + + CW + + + + + + + CAERUS + 0 + Verified + 2019-02-14 + + + Main + 437600000 + + AFSK + 1200 + + KJ6FIX-1 + + + + + TetherSat + 0 + No operational + Verified + 2019-02-14 + + + Main + 437100000 + + GFSK + 9600 + + + + + + LitSat-1 + 39568 + decayed + + + Main + 145965000 + + SSB + + + + Main + 435138000 + + FSK + 9600 + + + CW + + LY1LS + + + + + LituanicaSAT-1 (LO-78) + 39569 + decayed + + + Main + 435176000 + + FM_tone 670Hz + + + + Main + 437275000 + + FSK + 9600 + + + CW + + LY5N + + + + + ArduSat-2 + 39570 + decayed + + + Main + 437000000 + + 9600bps MSK CCSDS + + + + + + UAPSat-1 + 39571 + Not operational + + + Main + 437385000 + + AFSK + 1200 + + OA0UAP-1 + + + + + ShindaiSat + 39572 + decayed + + + Main + 437485000 + + AFSK + 1200 + + + CW + + JR0ZST + + + + + ITF-1 + 39573 + decayed + + + Main + 437525000 + + CW + + JQ1ZLO + + + + + OPUSAT + 39575 + decayed + + + Main + 437154000 + + AFSK + 1200 + + + GFSK + 9600 + + + CW + + JL3ZCA + + + + + TeikyoSat-3 + 39576 + decayed + + + Main + 437450000 + + AFSK + 1200 + + + CW + + JQ1ZKM + + + + + ARTSAT1-INVADER (CO-77) + 39577 + decayed + + + Main + 437325000 + + 1k2AFSK DigiTalker CW + + + CW + + JQ1ZKK + + + + + STARS-II (Mother) + 39579 + decayed + + + Main + 437245000 + + AFSK + 1200 + + + CW + + JR5YDX + + + Main + 437255000 + + AFSK + 1200 + + + CW + + JR5YDY + + + + + SporeSat + 39681 + unknown + + + Main + 437100000 + + AFSK + 1200 + + + + + + All-Star - THEIA + 39683 + unknown + + + Main + 2401700000 + + BPSK + 256000 + + COSGC1AS + + + + + PhoneSat25 + 39684 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + + KickSat + 39685 + decayed + + + Main + 437505000 + + 1200bps AFSK + 1200 + + KD2BHC + + + + + SPROUT + 39770 + 2014-029E + Operational + + 2014-05-24 + Tanegashima Space Center + + None + Verified + 2015-08-10 + + SPace Research On Unique Technology Web Page + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/ + There are 3 main missions in SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector + Trois missions sont allouées au satellite SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector + + + + CW - FM Packet + 437525000 + + AFSK + 1200 + + + GMSK + 9600 + + + CW + + JQ1ZJQ + + + SSTV + 437600000 + + SSTV + + + + Digipeater + + 437600000 + + + 437600000 + + + + + + Sprout telemetry format + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Formats%20of%20telemetry-e.html + + + Sprout team propose different types of Report + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Amateur%20satellite-e.html + + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Software-e.html + + + + BugSat-1 + 40014 + 2014-033E + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=376 + + + + Wikipedia + https://en.wikipedia.org/wiki/BugSat_1 + + + + + Main + 437445000 + + GMSK + 9600 + + LU7AA + + + + + + + + + + + + + http://www.dk3wn.info/software.shtml + + + + TabletSat-Aurora + 40017 + 2014-033H + Not operational + + + Main + 437050000 + + 9600bps GMSK D-STAR + + + + + + DUCHIFAT-1 + 40021 + 2014-033M + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=258 + + + + Duchifat 1 site + http://www.h-space-lab.org/php/duchifat1-en.php + + + + + Main + 145980000 + + BPSK + 1200 + + + CW + + 4X4HSL + + + APRS Digipeater + + 435220000 + + + 145980000 + + AFSK / BPSK + 1200 + + + + + + + + + + + + + http://www.h-space-lab.org/download/Public%20Release.rar + + + + PACE + 40023 + No operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + + + + + NanosatC-Br1 + 40024 + 2014-033Q + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=209 + + + + NanosatC-Br1 + http://www.h-space-lab.org/php/duchifat1-en.php + + + + + Main + 145865000 + + BPSK + 1200 + + + CW + + NCBR1 + + + + + Operating for Amateur Radio + http://www.inpe.br/crs/nanosat/acompanhe/radio_amadores.php + + + Data acquisition page + http://www3.inpe.br/crs/nanosat/aquisicao_dados.php + + + http://www.dk3wn.info/files/ncbr1.zip + + + + QB50p1 - FUNcube3 + 40025 + 2014-033R + Not operational + + 2014-06-19 + Yasniy site + + EO-79 + Verified + 2015-06-04 + + QB50 Precursor Mission page + https://www.qb50.eu/index.php/precursor-flight + EO-79, also known as QB50p1 and FUNcube-3, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-NL constructed transponder as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months. (Source AMSAT-NA) + + + Funcube Home page + http://funcube.org.uk/ + Funcube project home page + + + + Main + 145815000 + + BPSK + 1200 + + + CW + + QB50P1 + + + Main + + 435035000 + 435065000 + + + 145935000 + 145965000 + + SSB/CW + yes + + + + + QB50 precursor amateur radio operator page + https://www.qb50.eu/index.php/precursor-amateur-radio-operator + + + CW beacon content + http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + operations@isispace.nl + + + + + POPSAT-HIP1 + 40028 + 2014-033U + Not operational + + + Main + 437405000 + + 1k2 9k6 CCSDS CW + + + CW + + POPSAT + + + + + DTUSat-2 + 40030 + 2014-033W + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=87 + + + + DTUsat Site + http://www.dtusat.dtu.dk/ + + + + + Main + 2401835000 + + MSK + 1200 + + + CW + + + + + + + QB50p2 (EO-80) + 40032 + 2014-033Y + Not operational + + 2014-06-19 + Yasniy site + + EO-80 + Verified + 2015-06-04 + + QB50 Precursor Mission page + https://www.qb50.eu/index.php/precursor-flight + EO-80, also known as QB50p2, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-F constructed repeater as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months.(source AMSAT-NA) + + + + Le@af 4 - Edition spéciale QB50 + http://www.amsat-f.org/spip/IMG/pdf/leaf4.pdf + Amsat-Francophone publication dedicated to QB50P2 + + + + Main + 145880000 + + BPSK + 1200 + + + CW + + QB50P2 + + + FM voice repeater + + 435080000 + + + 145840000 + + FM + 210.7 + + + + + QB50 precursor amateur radio operator page + https://www.qb50.eu/index.php/precursor-amateur-radio-operator + + + CW beacon content + http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + operations@isispace.nl + + + + + ANTELSat + 40034 + 2014-033AA + Not operational + + + Main + 437280000 + + AFSK GFSK/MSK + 1200 + + + CW + + CX1SAT + + + + + PolyITAN-1 + 40042 + 2014-033AJ + Operational + + + Main + 437675000 + + FSK + 9600 + + + CW + + EM0UKP + + + + + TigriSat + 40043 + 2014-033AK + Operational + + + Main + 436000000 + + FSK + 9600 + + HNATIG + + + + + ESTELLE + 0 + Unknown + Verified + 2019-02-14 + + + Main + 580000000 + + 1Mbps-10Mbps GFSK BPSK + + + + + + UNSA-SAT1 + 0 + Unknown + Verified + 2019-02-14 + + + Main + 34000000 + + BPSK + 230000 + + + + + + AISat + 40054 + 2014-034B + Not operational + + + Main + 437511000 + + CW + + DP0AIS + + + + + CanX-4 + 40055 + 2014-034C + Not operational + + + Main + 437365000 + + 32Kbps-256Kbps BPSK + + + + + + CanX-5 + 40056 + 2014-034D + Not operational + + + Main + 437365000 + + 32Kbps-256Kbps BPSK + + + + + + VELOX-I + 40057 + 2014-034E + Not operational + + + Main + 145980000 + + FSK + 9600 + + + CW + + VELOXI + + + + + IiNUSat + 0 + Unknown + Verified + 2019-02-14 + + + Main + 436915000 + + 1k2 9k6 2FSK + + + + + + DX-1 + 40071 + 2014-037C + Operational + + + Main + 438225000 + + GFSK + 9600 + + DAURIA + + + + + UKube-1-FUNcube-2 + 40074 + 2014-037F + Operational + + + Main + 145840000 + + BPSK + 1200 + + + CW + + UKUBE1 + + + Main + 145915000 + + BPSK + 1200 + + + + + + myPocketQub + 0 + Unknown + Verified + 2018-11-04 + + + Main + 437425000 + + + + + + + + Venta-1 + 42791 + 2017-036AC + Not operational + Verified + 2018-11-04 + + + Main + 437325000 + + + + + + + + Chasqui-1 + 40117 + Not operational + + + Main + 437025000 + + AFSK + 1200 + + + GMSK + 9600 + + + + + + 4M-LXS + 0 + Deep Space + + + Main + 145980000 + + WSJT-JT65B + + LX0OHB + + + + + ChubuSat-1 + 40300 + 2014-070C + Not operational + + + Main + 437485000 + + 1200bps 9600bps CW + + + CW + + JJ2YJY + + + + + TSUBAME + 40302 + 2014-070E + Not operational + + + Main + 437275000 + + AFSK + 1200 + + + CW + + JQ1ZHX + + + + + SpinSat + 40314 + Not operational + + + Main + 437230000 + + GFSK + 9600 + + + + + + ARTSAT2-DESPATCH (FO-81) + 40321 + Deep space + + + Main + 437325000 + + CW + + JQ1ZNN + + + + + SHIN'EN2 (FO-82) + 40320 + Deep space + + + Main + 437385000 + + Transponder WSJT/CW + + JG6YIG + + + + + FIREBIRD-II FU3 + 40377 + 2015-003B + Operational + + + Main + 437395000 + + FSK + 19200 + + K7MSU + + + + + FIREBIRD-II FU4 + 40378 + 2015-003C + Operational + + + Main + 437219000 + + FSK + 19200 + + K7MSU + + + + + GRIFEX + 40379 + 2015-003D + Operational + + + Main + 438480000 + + GMSK + 1200 + + KD8SPS + + + + + ExoCube + 40380 + 2015-003E + Operational + + + Main + 437270000 + + FSK + 9600 + + + CW + + KK6HGC XO3 + + + + + AESP14 + 40389 + Not operational + + + Main + 437600000 + + GFSK + 9600 + + + + + + Lambda-Sat + 40458 + No operational + + + Main + 437462000 + + AFSK + 1200 + + + + + + AggieSat-4 + 41313 + Not operational + + + Main + 436250000 + + FSK + 9600 + + + + + + Bevo-2 + 41314 + Not operational + + + Main + 437325000 + + FSK + 38400 + + + CW + + + + + + LightSail-A + 40661 + decayed + + + Main + 437435000 + + FSK + 9600 + + + + + + ARC-1 + 40969 + 2015-058F + Not operational + + + Main + 437565000 + + CW + + + + + + BisonSat + 40968 + 2015-058E + Operational + + + Main + 437375000 + + GMSK + 9600 + + + + + + AO-85 (Fox-1A) + 40967 + 2015-058D + Operational + + + Main + 145980000 + + FM CTCSS 670Hz + + + + + + Pocket-PUCP + 0 + No operational + Verified + 2019-02-14 + + + Main + 437200000 + + AFSK + 1200 + + + CW + + + + + + PTecSat + 0 + Unknown + + + Main + 436000000 + + AFSK + 1200 + + + + + + USS Langley + 40652 + Not operational + + + Main + 437475000 + + AFSK + 1200 + + + + + + Argus + 0 + Unknown + + + Main + 437290000 + + AFSK + 1200 + + + + + + EDSN + -29 + + + Main + 437100000 + + AFSK + 1200 + + + + + + HawaiiSat1 (HiakaSat1) + 0 + Fail + Verified + 2018-11-04 + + + Main + 437270500 + + GFSK + 9600 + + + + Main + 145980500 + + GFSK + 9600 + + + + + + ORS-Squared + 0 + Fail + Verified + 2018-11-04 + + + Main + 437325000 + + GMSK + 9600 + + + + + + PrintSat + 0 + Fail + Verified + 2018-11-04 + + + Main + 437325000 + + GMSK + 9600 + + + + + + SeeMe + 0 + To be launched + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=457 + SeeMehas been coordinated by IARU + SeeMe a été coordonné par l'IARU + + + + Telemetry 1 + 437425000 + + + + + + + + Telemetry 2 + 437450000 + + + + + + + + Telemetry 3 + 2424250000 + + BPSK + 1.6Mbps + + + + + + + + + + + + + + + + + + + K2SAT + 43761 + To be launched + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=552 + K2SAT has been coordinated by IARU + K2SAT a été coordonné par l'IARU + + + K2SAT S-band image receiver + https://destevez.net/2018/07/k2sat-s-band-image-receiver/ + Technical article from DANIEL ESTÉVEZ + Article technique de DANIEL ESTÉVEZ + + + + Telemetry 1 + 435835000 + + BPSK + 9600 + + + + + Telemetry 2 + 2404000000 + + QPSK + 2 Mb + + + + + FM voice repeater + + 145980000 + + + 436225000 + + FM + + + + + + + + + + + + + + + + + MINXSS 2 + 41474 + decayed + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + Project web site + http://lasp.colorado.edu/home/minxss/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=477 + MINXSS 2 has been coordinated by IARU + MINXSS 2 a été coordonné par l'IARU + + + + Telemetry 1 + 437250000 + + GMSK + 9600 + + + + + + + Ham radio information + http://lasp.colorado.edu/home/minxss/data/ + + + + + + + https://github.com/jmason86/MinXSS_Beacon_Decoder/releases + + + + Karksat + 44427 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=608 + coordinated by IARU + coordonné par l'IARU + + + Project Site + https://www.kraksat.pl/space/ + project page + site du projet + + + + Beacon + 435500000 + + AFSK + 1200 + + + AFSK + 9600 + + + + + + + + + + + + + + + + + + + OSIRIS-3U + 43027 + Decayed + Draft + 2019-08-07 + + + Beacon + 437505000 + + GMSK + 9600 Bps + + + GMSK + 38400 Bps + + + + + + + Snuglite + 43784 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=529 + Snuglite has been coordinated by IARU + Snuglite a été coordonné par l'IARU + + + + Telemetry 1 + 437275000 + + GMSK + 9600 + + + + + + + + + + + + + + + + + + + Knacksat + 43761 + Not Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-16 + + project pages + http://www.knacksat.space + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=520 + Knacksat has been coordinated by IARU + Knacksat a été coordonné par l'IARU + + + + FUNcube telemetry + 435635000 + + CW + + + + GFSK + 9600 + + + GFSK + 1200 + + HS0K + + + + + Hamradio Information + http://www.knacksat.space/amateur-radio + + + + + + knacksat@gmail.com + + + + + Range B + 43773 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 + RAnge B has been coordinated by IARU + RAnge B a été coordonné par l'IARU + + + + Telemetry 1 + 437475000 + + FSK + 0.1 kbps to 115.2 kbps + + + MSK + 0.1 kbps to 115.2 kbps + + + GFSK + 0.1 kbps to 115.2 kbps + + + GMSK + 0.1 kbps to 115.2 kbps + + + + + + + n + + + + + + + + + + + + VO-96 (ExseedSat-1) + 43758 + Not operational + + 2018-12-03 + Vandenberg Air Force Base, California + + VUsat-OSCAR 96 (VO-96) + Verified + 2018-10-29 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=636 + ExseedSat 1 has been coordinated by IARU + ExseedSat 1 a été coordonné par l'IARU + + + + TLM 1 + 145900000 + + + + + + + + FM voice repeater and digipeater (APRS ) + + 435340000 + + + 145900000 + + FM + 67 + + + + + + + + + + + + + + + + + AO-95 (Fox-1Cliff) + 43770 + 2018-099N + Operational + + 2018-12-03 + Vandenberg Air Force Base, California + + AMSAT-OSCAR 95 (AO-95) + Verified + 2018-10-29 + + project + https://www.amsat.org/fox-1cliff-ready-for-launch/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=455 + Fox-1Cliff has been coordinated by IARU + Fox-1Cliff a été coordonné par l'IARU + + + + Telemetry 1 + 145920000 + + FSK + + + + + + FM voice repeater mode 1 + + 435300000 + + + 145920000 + + FM + 67 + + + FM voice repeater Mode 2 + + 1267300000 + + + 145920000 + + FM + 67 + + + + + Telemesure software : FOXTelem + https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ + + + + + + + https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ + + + + Irvine 02 + 43789 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2018-10-29 + + Project + https://www.irvinecubesat.org/irvine02 + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 + Irvine 02 has been coordinated by IARU + Irvine 02a été coordonné par l'IARU + + + + Telemetry 1 + 437450000 + + FSK + 9600 + + + + + + + + + + + + + + + + + + + CubeSail 1 + 43851 + To be Launch + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Draft + 2018-12-11 + + + + + + + + Telemetry + 437505000 + + GMSK + 9600 bauds + + + + + + + + + + + + + + + + + + + DIWATA-2 + 43678 + 2018-084H + Operational + + 2018-10-29 + Tanegeshima Space Center in Japan + + PO-101 + Verified + 2018-11-06 + + Project page + http://phl-microsat.upd.edu.ph/diwata2 + + + + Facebook + https://www.facebook.com/PHLMicrosat + + + + + Telemetry APRS + 145900000 + + BPSK + 1200 bauds + + + CW + 120 WPM + + D1W2PH + + + Main + + 437700000 + + + 145900000 + + FM / APRS + + + + + + Telemetrie description + http://phl-microsat.upd.edu.ph/diwata2 + + + + + + + + + + + TBEx-a + 44356 + + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 + has been coordinated by IARU + a été coordonné par l'IARU + + + project information + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + Telemetry 1 + 437535000 + + GMSK + 9k6 + + + + + + + TBEx – Tandem Beacon Experiment + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + SATNOGS : Kaitai Struct for Telemetry + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + jwcutler@umich.edu + + + + + EagleSat-1 + 43018 + No operational + Draft + 2019-08-07 + + + Beacon + 437645000 + + AFSK + 1200bps + + + + + + + FACSAT + 43721 + Operational + + India + + + Verified + 2018-11-27 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=635 + FACSAT Hello World has been coordinated by IARU + FACSAT Hello World a été coordonné par l'IARU + + + + Telemetry 1 + 437350000 + + GMSK + 9k6 + + + + + + + + + + + + + + + + + + + InnoSAT-2 + 43738 + Operational + + India + + + Verified + 2018-11-27 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=548 + InnoSAT-2 has been coordinated by IARU + InnoSAT-2 a été coordonné par l'IARU + + + + Telemetry 1 + 437450000 + + + + + + + + + + + + + + + + + + + + + + XW-2D (CAS 3D) + 40907 + 2015-049J + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + Draft + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation + + + + CW Beacon + 145855000 + + CW + + BJ1SE + + + Digital Telemetry + 145835000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SE + + + Linear Transponder + + 435210000 + 435230000 + + + 14586000 + 14588000 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + + Irvine + 43693 + 2018-088D + Operational + + + + + Verified + 2018-12-03 + + + Telemetry 1 + 437800000 + + FSK + 9600 + + + CW + + + WI2XPH + + + + + + + + + + + + + + + + + Robusta-1B + 42792 + 2017-036AD + Operational + Verified + 2018-12-03 + + + Main + 437325000 + + AFSK + 1200 + + + CW + + + FX6FR + + + + + SERPENS + 40897 + decayed + + 2015-09-17 + International Space Station + + None + Verified + 2015-09-19 + + SERPENS Ham Radio Page + http://www.aerospace.unb.br/serpens_radioamateurs + SERPENS is a 3U CubeSat which was developed by students at the University of Brasilia and focuses on meteorological data collection. + + + + Sector A + 145980000 + + GFSK + 9600 + + PY0ESA + + + SECTOR B + 437365000 + + CW + + + MSK + 1200 + + PY0ESA + + + + + SERPEN HamRadio Home Page + http://www.aerospace.unb.br/serpens_radioamateurs + + + Report shall be sent by email + serpens.reports@aerospace.unb.br. + + + + + + XW-2A (CAS 3) + 40903 + 2015-049E + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + Draft + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréquences exploitées par la XW-2 constellation + + + + CW Beacon + 145660000 + + CW + + BJ1SB + + + Digital Telemetry + 145660000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SB + + + Linear Transponder + + 435030000 + 435050000 + + + 145665000 + 145685000 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + + XW-2B (CAS 3B) + 40911 + 2015-049N + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + verified + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation + + + + CW Beacon + 145725000 + + CW + + BJ1SC + + + Digital Telemetry + 145705000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SC + + + Linear Transponder + + 435090000 + 435110000 + + + 145815000 + 145795000 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + + XW-2C (CAS 3C) + 40906 + 2015-049H + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + Verified + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation + + + + CW Beacon + 145790000 + + CW + + BJ1SD + + + Digital Telemetry + 145770000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SD + + + Linear Transponder + + 435150000 + 435170000 + + + 145795000 + 14581500 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + + ParkinsonSAT (PSAT) + 40654 + 2015-025D + Not operational + NO-84 + Verified + 2018-12-03 + + PSAT + http://aprs.org/psat.html + ParkinsonSAT description + + + + APRS + 145825000 + + AX25 + 1200 + + + + PSK31 + 435350000 + + PSK31 + + W3ADO-5 + + + PSK31 + + 28120000 + + + 435035000 + + SSB PSK31 + + + + + LIVE Telemetry Downlink + http://pcsat.aprs.org + + + + + AO-1(Oscar-1) + 214 + decayed + AO-1 + Verified + 2018-11-28 + + + Main + 144983000 + + CW + + + + + + + AO-2(Oscar-2) + 305 + decayed + AO-2 + Verified + 2018-11-28 + + + Main + 144983000 + + CW + + + + + + + AO-3(Oscar-3) + 1293 + 1965-016F + Not operational + AO-3 + Verified + 2018-11-28 + + + Main + + 145975000 + 146025000 + + + 144325000 + 144375000 + + SSB/CW + + + + + + AO-4(Oscar-4) + 1902 + decayed + AO-4 + Verified + 2018-11-28 + + + Main + + 432145000 + 432155000 + + + 144300000 + 144310000 + + SSB/CW + + + + + + AO-5(Oscar-5) + 4321 + 1970-008B + Not operational + AO-5 + Verified + 2018-11-28 + + + TLM1 + 144050000 + + CW + + + + + TLM2 + 29450000 + + CW + + + + + + + F-1 + 38855 + decayed + Verified + 2018-12-03 + + + Main + 437485000 + + AFSK + 1200 + + + CW + + XV1VN + + + + + WE_WISH + 38856 + decayed + Verified + 2018-12-03 + + + Main + 437505000 + + CW + + + SSTV + + + AFSK + 2400 + + JQ1ZIJ + + + + + UniSat-6 + 40012 + 2014-033C + Operational + Verified + 2018-11-27 + + + Main + 437425000 + + GMSK + 9600 + + + CW + + II0US + + + + + BeEagleSat (TR01) + 42736 + Decayed + INIT + 2019-08-07 + + + Beacon + 437370000 + + GMSK + 9600bps + + ON01TR + + + + + DaVinci + 0 + To be Launch + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2018-12-11 + + IARU coordination + http://www.amsatuk.me.uk/iaru/informal_detail.php?serialnum=524 + No frequency coordination has been provided + + + DaVinci project pages + https://www.projectdavincicubesat.org/ + + + + Twitter @DavinciCubeSat + https://twitter.com/davincicubesat + + + + FaceBook + https://www.facebook.com/Project-DaVinci-1225716617456409/ + + + + + Telemetry + 436500000 + + GMSK + 9600 bauds + + + CW + + + + + + + + + + + + + + + + + + + + D-Star ONE Sparrow + 43881 + Operational + + 2018-12-27 + Vostochny + + + Verified + 2018-12-27 + + D-Star ONE presentation + http://www.d-star.one/ + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + + + + Telemetry + 435700000 + + GMSK Mobitex (CMX990) + 4800 bauds + + DP1GOS + + + D-Star + + 437325000 + + + 435525000 + + DSTAR + + + + + + + + + + + + + + + + + UWE-4 + 43880 + 2018-111E + Operational + + 2018-12-27 + Vostochny + + + Verified + 2018-12-28 + + UWE-4 presentation + http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-4/news/ + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=627 + + + + + Telemetry + 437385000 + + FSK AX25 + 9600 bauds + + DP0UWH + + + Digieater + + 437385000 + + + 437385000 + + + + + + + Telemetry XL file descriptor + http://www7.informatik.uni-wuerzburg.de/fileadmin/10030700/user_upload/forschung/Space_Exploration_Group/UWE4/UWE-4_Beacon.xlsx + + + + + + uwe4@informatik.uni-wuerzburg.de + http://www.dk3wn.info/files/uwe4.zip + + + + CHOMPTT + 43855 + Operational + + 2018-12-16 + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2018-12-18 + + CHOMPTT presentation + http://mstl.atl.calpoly.edu/~bklofas/Presentations/DevelopersWorkshop2014/Conklin_CHOMPTT.pdf + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=523 + + + + + Telemetry + 437560000 + + GMSK + 9600 bauds + + + + + + + + + + + + + + + + + + + Reaktor Hello World + 43743 + Operational + + 2018-12-16 + India + + + Verified + 2018-12-18 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=503 + Reaktor Hello World has been coordinated by IARU + Reaktor Hello World a été coordonné par l'IARU + + + + Telemetry 1 + 437775000 + + CW + + + + 2GFSK + 9k6 + + + + + Telemetry corrected frequency + 437775270 + + CW + + + + 2GFSK + 9k6 + + + + + Telemetry 1 + 2410000000 + + MSK + 1Mbs + + + + + + + + + + + + + + + + + + + CSIM + 43793 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=585 + CSIM has been coordinated by IARU + CSIM a été coordonné par l'IARU + + + + Telemetry 1 + 437250000 + + GMSK + 19200 kbps + + + + + + + + + + + + + + + + + + + ESEO (FUNcube 4) + 43792 + Operational + + 2018-12-03 + Vandenberg Air Force Base, California + + + Verified + 2019-03-19 + + Project description + https://www.esa.int/Education/ESEO + During its operational mission phase, ESEO will run the scientific experiments and test the various technology demonstrators designed and built by the students, and constantly monitor its own performance. + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=82 + ESEO has been coordinated by IARU + ESEO a été coordonné par l'IARU + + + + TLM 1 + 145895000 + + BPSK + 4800 bps + + + BPSK + 1200 bps + + + + + TLM 2 + 437000000 + + BPSK + 4800 bps + + + BPSK + 1200 bps + + + + + FM voice repeater + + 1263500000 + + + 145895000 + + FM + 67 + + + + + + + + + + + + + https://download.funcube.org.uk/ESEO_Dashboard_v1177.msi + + + + ITASAT 1 + 43786 + Not operational + + + + + Verified + 2018-12-18 + + project Web site + http://www.itasat.ita.br/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=435 + ITASAT 1 has been coordinated by IARU + ITASAT 1 a été coordonné par l'IARU + + + + Telemetry 1 + 145860000 + + BPSK + 1200 + + + + + Telemetry 1 + 2400150000 + + BPSK + 14400 + + + + + + + + + + + + + + + + + + + JY1SAT -JO-97 + 43803 + Operational + + 2018-12-03 + Vandenberg Air Force Base, California + + Jordan-OSCAR 97 (JO-97) + Verified + 2018-12-18 + + JY1SAT launch information and Dashboard + https://funcube.org.uk/2018/11/15/jy1sat/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=554 + JY1SAT has been coordinated by IARU + JY1SAT a été coordonné par l'IARU + + + + FUNcube telemetry + 145840000 + + BPSK + 1200 + + + SSDV + + + JY1 + + + Main + + 435100000 + 435120000 + + + 145855000 + 145875000 + + SSB/CW + yes + + + + + Telemetry dashboard + http://data2.amsat-uk.org/ui/jy1sat-fm + + + + + + operations@funcube.org.uk + https://download.funcube.org.uk/JY11Sat_Dashboard_v1160.msi + + + + MOVE II + 43780 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + Project + https://www.move2space.de/MOVE-II/ + MOVE-II is a CubeSat, a tiny satellite with dimensions of 10 x 10 x 13 cm and a mass of 1.2 kg. It is the second satellite of the Technical University of Munich (TUM) and the follow-up project of First-MOVE. The name MOVE is an acronym and stands for Munich Orbital Verification Experiment. The number “II” implies that it is the second of its series. + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 + MOVE II has been coordinated by IARU + MOVE II a été coordonné par l'IARU + + + + Telemetry 1 + 145950000 + + BPSK + 9600 + + + CW + + + DP0MOV + + + + + Hamradio information + https://www.move2space.de/MOVE-II/radio-amateurs/ + + + + + + + + + + + Range A + 43798 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 + RAnge A has been coordinated by IARU + RAnge A a été coordonné par l'IARU + + + + Telemetry 1 + 437150000 + + FSK + 0.1 kbps to 115.2 kbps + + + MSK + 0.1 kbps to 115.2 kbps + + + GFSK + 0.1 kbps to 115.2 kbps + + + GMSK + 0.1 kbps to 115.2 kbps + + + + + + + + + + + + + + + + + + + Suomi 100 + 43804 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + Project + http://www.suomi100satelliitti.fi/eng + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=507 + Suomi 100 has been coordinated by IARU + Suomi 100 a été coordonné par l'IARU + + + + Telemetry 1 + 437775000 + + + + + + + + Telemetry 2 + 2410000000 + + + + + + + + + + + + + + + + + + + + + + SNUSAT-2 + 43782 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-18 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=509 + SNUSAT-2 has been coordinated by IARU + SNUSAT-2 a été coordonné par l'IARU + + + + Telemetry 1 + 437625000 + + BPSK + 9600 + + + + + Telemetry 2 + 2402000000 + + DQPSK + 1.06Mbit/s + + + + + + + + + + + + + + + + + + + ISX-SR1 -ISX - CP11 + 0 + To be Launch + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2018-12-11 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=514 + + + + Project page + http://www.polysat.org/in-development/ + + + + + Telemetry UHF + 437150000 + + FSK + 9600 bauds + + + + + Telemetry 2 + 5840000000 + + QPSK + 10 Mb + + + + + + + + + + + + + + + + + + + Atlantis (US02) + 42737 + Decayed + INIT + 2019-08-07 + + + Beacon + 436390000 + + GMSK + 9600bps + + WD8DOX + + + + + UiTMSat-1 + 43589 + 1998-067PD + Operational + + 2018-08-10 + ISS + + + Verified + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=563 + + + + + Main + 437375000 + + BPSK + 1200 + + + CW + + JG6YKN + + + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + + MAYA-1 + 43590 + 1998-067PE + Operational + + 2018-08-10 + ISS + + + Verified + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=564 + + + + + Main + 437375000 + + BPSK + 1200 + + + CW + + JG6YKM + + + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + + SIRIUSSAT-1 (SXC1-181 RS13S) + 43595 + 1998-067PG + Operational + + 2018-08-15 + ISS + + + Verified + 2019-02-14 + + Siriussat information page (Russian) + http://sputnix.ru/ru/nashi-sputniki/siriussat-1 + + + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + + + Siriussat hamradio information from Sputnix companie + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + hamradio information from Spunix Companie + + + + Main + 435570000 + + GMSK + 4800 + + RS13S + + + + + + + + + + + + siriussat@sputnix.ru + + Télécharger SPUTNIX Telemetry Viewer (Win ENG) + http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip + + + + + TechnoSat + 42829 + Operational + draft + 2019-08-07 + + + Beacon + 435950000 + + GMSK + 4800bps + + + GMSK + 9600bps + + + CW + + + DP0TBA + + + + + Ten-Koh + 43677 + Operational + Draft + 2019-08-07 + + Project information + http://kit-okuyama-lab.com/en/ten-koh/ + + + + + Beacon + 437390000 + + AFSK + 1200bps + + + GMSK + 9600bps + + + CW + + + + WSJT + + + JG6YKY + + + + + amateur information + http://kit-okuyama-lab.com/en/ten-koh/for-amateur-radio-reception/ + + + + + BHUTAN-1 + 43591 + 1998-067PF + Operational + + 2018-08-10 + ISS + + + Verified + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=562 + + + + + Main + 437375000 + + BPSK + 1200 + + + CW + + JG6YKL + + + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + + AO-6(Phase-2A) + 6236 + 1972-082B + Not operational + AO-6 + + + Main + 0 + + CW + + + + + + + AO-7(Phase-2B) + 7530 + 1974-089B + Operational + + 1974-11-15 + Vandenberg + + AO-7 + + + Mode V/A (A) TLM Beacon + 29502000 + + CW + + + + + Mode U/V (B) TLM Beacon + 1459775000 + + CW + + + + + Mode U TLM Beacon + 435100000 + + CW + + + + + + + AO-8(Phase-2D) + 10703 + 1978-026B + Not operational + AO-8 + + + Main + 29402000 + + CW + + + + + Main + 435095000 + + CW + + + + + + + UO-9 (UoSAT-1) + 12888 + decayed + + 1981-10-06 + Vandenberg + + UO-9 + + + Main + 2401000000 + + CW + + + + + + + AO-10(Phase-3B) + 14129 + 1983-058B + Not operational + AO-10 + + + Main + 145810000 + + CW + + + + + + + UO-11(UoSAT-2) + 14781 + 1984-021B + Operational + UO-11 + + + Main + 2401500000 + + PSK + + UOSAT-2 + + + + + MIR + 16609 + decayed + + + Main + 145985000 + + PSK + + R0MIR-1 + + + + + RS-12(Sputnik) + 21089 + 1991-007A + Not operational + + + Main + 29408000 + + CW + + + + + Main + 145862000 + + CW + + + + + + + AO-13(Phase-3C) + 19216 + decayed + AO-13 + + + Main + 145812000 + + CW + + + + + + + UO-14(UoSAT-3) + 20437 + 1990-005B + Not operational + UO-14 + + + Main + 0 + + FM + + + + + + + RS-15(Sputnik) + 23439 + 1994-085A + Operational + + + Main + 29352000 + + CW + + + + + + + AO-16(PACSAT) + 20439 + 1990-005D + Not operational + AO-16 + + + Main + 2401143000 + + PSK + + PACSAT-11-12 + + + + + DO-17(DOVE) + 20440 + 1990-005E + Not operational + DO-17 + + + Main + 2401220000 + + AFSK + 1200 + + DOVE-1 + + + + + WO-18(WEBERSAT) + 20441 + 1990-005F + Not operational + WO-18 + + + Main + 0 + + PSK + 1200 + + + + + + + LO-19(LUSAT) + 20442 + 1990-005G + Not operational + LO-19 + + + Main + 437125000 + + CW + + LUSAT-11-12 + + + + + FO-20(JAS-1b) + 20480 + 1990-013C + Not operational + FO-20 + + + Main + 435795000 + + CW + + + + + + + RS-21(Sputnik) + 27394 + Decayed + + + Main + 145825000 + + CW + + + + + + + RS-22(Mozhayets) + 27939 + 2003-042A + Operational + + + Main + 435352000 + + CW + + + + + + + UO-22(UoSAT-5) + 21575 + 1991-050B + Not operational + UO-22 + + + Main + 435120000 + + FSK + 9600 + + UOSAT5-11-12 + + + + + KO-23(KITSAT-A) + 22077 + 1992-052B + Not operational + KO-23 + + + Main + 435175000 + + FSK + 9600 + + HL01-11-12 + + + + + KO-25(KITSAT-B) + 22828 + 1993-061F + Not operational + KO-25 + + + Main + 436500000 + + FSK + 9600 + + HL02-11-12 + + + + + RS-25 + 28898 + 2005-043G + Unknown + + + Main + 435325000 + + CW + + + + + + + SAFIR-S + 25399 + 1998-043F + Not operational + Verified + 2019-02-14 + + + Main + 2401900000 + + FSK + 9600 + + DP1AIS + + + + + IO-26(ITAMSAT) + 22826 + 1993-061D + Not operational + IO-26 + + + Main + 435791000 + + PSK + 1200 + + ITMSAT-11-12 + + + + + AO-27(EYESAT-A) + 22825 + 1993-061C + Not operational + AO-27 + + + Main + 436795000 + + AFSK + 1200 + + + + + + + PO-28(POSAT) + 22829 + 1993-061G + Not operational + PO-28 + + + Main + 0 + + FSK + 9600 + + POSAT1-11-12 + + + + + FO-29(JAS-2) + 24278 + 1996-046B + Operational + FO-29 + Draft + 2019-08-05 + + + Main + 4357964000 + + CW + + 8J1JCS + + + + + TO-31(TMSAT-1) + 25396 + 1998-043C + Not operational + TO-31 + + + Main + 436925000 + + FSK + 9600 + + TMSAT1-11-12 + + + + + GO-32(TechSat) + 25397 + 1998-043D + Operational + GO-32 + + + Main + 435225000 + + FSK + 9600 + + 4XTECH-11-12 + + + + + SO-33(SEDSAT-1) + 25509 + 1998-061B + Not operational + SO-33 + + + Main + 437910000 + + FSK + 9600 + + SEDSAT-1 + + + + + PO-34(PANSAT) + 25520 + 1998-064B + Not operational + PO-34 + + + Main + 0 + + Spectrum + + + + + + + ISS + 25544 + 1998-067A + Operational + Draft + 2019-08-05 + + + Main + 0 + + Voice(Reg1) + + NA1SS + + + Main + 0 + + Voice(Reg23) + + NA1SS + + + Main + 145800000 + + Packet + + RS0ISS + + + Main + 437550000 + + APRS + + RS0ISS + + + Main + 145825000 + + APRS + + RS0ISS-4-11 + + + + + SO-35(SUNSAT-1) + 25636 + 1999-008C + Not operational + SO-35 + + + Main + 145825000 + + 9600bpsFM + + SUNSAT-3 + + + + + UO-36(UoSAT-12) + 25693 + 1999-021A + Not operational + UO-36 + + + Main + 437400000 + + FSK + 38400 + + UO121-11-12 + + + + + AO-37(ASUSAT) + 26065 + 2000-004E + Not operational + AO-37 + + + Main + 0 + + FSK + 9600 + + + + + + + OO-38(OPAL) + 26063 + 2000-004C + Not operational + OO-38 + + + Main + 437100000 + + FSK + 9600 + + KF6RFX + + + + + WO-39(JAWSAT) + 26061 + 2000-004A + Not operational + WO-39 + + + Main + 0 + + FSK + 9600 + + + + + + + AO-40(Phase-3D) + 26609 + 2000-072B + Not operational + AO-40 + + + Main + 2401323000 + + PSK + 400 + + + + + + + SO-41(SaudiSat-1a) + 26545 + 2000-057A + Not operational + SO-41 + + + Main + 436775000 + + FSK + 9600 + + SASAT1-11-12 + + + + + SO-42(SaudiSat-1b) + 26549 + 2000-057E + Not operational + SO-42 + + + Main + 436075000 + + FSK + 9600 + + SASAT2-11-12 + + + + + SO-43(Starshine) + 26929 + decayed + SO-43 + + + Main + 145820000 + + FSK + 9600 + + STRSHN + + + + + NO-44(PCsat1) + 26931 + 2001-043C + Operational + NO-44 + Draft + 2019-08-05 + + + Main + 145827000 + + AFSK + 1200 + + (A)PCSAT-1 + + + Main + 145827000 + + FSK + 9600 + + (A)PCSAT-2 + + + Main + 144390000 + + AFSK + 1200 + + (B)PCSAT-11 + + + Main + 144390000 + + FSK + 9600 + + (B)PCSAT-12 + + + + + NO-45(Sapphire) + 26932 + 2001-043D + Not operational + NO-45 + + + Main + 437100000 + + AFSK + 1200 + + KE6QMD + + + + + MO-46(TiungSat) + 26548 + 2000-057D + Not operational + MO-46 + + + Main + 437325000 + + FSK + 38400 + + MYSAT3-11-12 + + + + + BO-47(IDEFIX)BO-48(IDEFIX) + 27422 + 2002-021B + Not operational + BO-47 + + + BO-47 + 145840000 + + BPSK + 400 + + + + + BO-48 + 435270000 + + BPSK + 400 + + + + + + + AO-49(Rubin-2) + 27605 + 2002-058A + Not operational + AO-49 + + + Main + 145825000 + + U/1200D/9600 + + MSK + + + + + SO-50(SaudiSat-1c) + 27607 + 2002-058C + Operational + SO-50 + + + Main + 0 + + FM_tone670Hz + + + + + + + DTUSAT + 27842 + 2003-031C + Not operational + + + Main + 437475000 + + AFSK + 2400 + + OZ2DTU + + + + + AAUSAT + 27846 + 2003-031G + Not operational + + + Main + 437450000 + + GMSK + 9600 + + + + + + + CANX-1 + 27847 + 2003-031H + Not operational + + + Main + 437880000 + + AFSK + 1200 + + VA3SFL + + + + + QUAKESAT + 27845 + 2003-031F + Not operational + + + Main + 436682000 + + FSK + 9600 + + KD7OVB + + + + + AO-51(Echo) + 28375 + 2004-025K + Not operational + AO-51 + + + Main + 435150000 + + FM_tone670Hz + + + + + Main + 435150000 + + FSK + + 9600 + PECHO-11-12 + + + Main + 435150000 + + FSK + + 9600 + PACB-11-12 + + + + + VO-52(Hamsat) + 28650 + 2005-017B + Not operational + + + Main + 145936000 + + SSBCarrier + + Indian + + + Main + 145860000 + + CW + + Dutch + + + + + PCSat2 + 0 + Failed + Verified + 2019-02-14 + + + Main + 437975000 + + FSK + 9600 + + PC2TLM + + + + + UWE-1 + 28892 + 2005-043C + Not operational + + + Main + 437505000 + + AFSK + 1200 + + DP0UWE + + + + + XO-53(SSETI) + 28894 + 2005-043E + Not operational + XO-53 + + + Main + 437250000 + + FSK + 9600 + + SSETI1 + + + + + AO-54(SuitSat) + 28933 + Not Operational + AO-54 + Draft + 2019-08-05 + + + Main + 0 + + FM + + + + + + + CO-55(CUTE-I) + 27844 + 2003-031E + Operational + CO-55 + + + Main + 4368375000 + + AFSK + 1200 + + JQ1YCY + + + + + CO-56(CUTE17) + 28941 + decayed + CO-56 + + + Main + 437382000 + + AFSK + 1200 + + JQ1YPC + + + Main + 437382000 + + GMSK + 9600 + + + + + + + CO-57(XI-IV) + 27848 + 2003-031J + Operational + CO-57 + + + Main + 4368475000 + + AFSK + 1200 + + + CW + + JQ1YCW + + + + + CO-58(XI-V) + 28895 + 2005-043F + Operational + CO-58 + + + Main + 437465000 + + AFSK + 1200 + + + CW + + JQ1YGW + + + + + NCUBE2 + 28897 + 2005-043H + Not operational + + + Main + 437305000 + + FSK + 9600 + + LA1CUB + + + + + SACRED + 0 + Failed + Verified + 2019-02-14 + + Wiki page + https://en.wikipedia.org/wiki/SACRED + + + + + Main + 0 + + AFSK + 1200 + + WA4CEW + + + + + ION + 0 + Failed + Verified + 2019-02-14 + + + Main + 437505000 + + AFSK + 1200 + + + + + + + RINCON + 0 + Failed + Verified + 2019-02-14 + + + Main + 437345000 + + AFSK + 1200 + + WA4CEW + + + + + ICEcube1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + FSK + 9600 + + W2CXM + + + + + KUTESatPathfinder + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + AFSK + 1200 + + KC0RMW + + + + + nCUBE-1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + GMSK + 9600 + + LA1CUB + + + + + HAUSAT-1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 437465000 + + AFSK + 1200 + + D90HP + + + + + SEEDS + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + AFSK + 1200 + + JQ1YGU + + + + + PolySatCP2 + 0 + Failed + Verified + 2019-02-14 + + + Main + 437325000 + + AFSK + 1200 + + + + + + + AeroCube1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + GFSK + 9600 + + + + + + + MEROPE + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + AFSK + 1200 + + K7MSU-1 + + + + + MeaHuaka'iVoyager + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + AFSK + 1200 + + + + + + + ICEcube2 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + FSK + 9600 + + N2VR + + + + + PolySatCP1 + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + 15bpsDTMFCW + + N6CP + + + + + PICPOT + 0 + Failed + Verified + 2019-02-14 + + + Main + 0 + + FSK + 9600 + + + + + Main + 0 + + 10kbitGFSK + + + + + + + HO-59(HITSAT) + 29484 + decayed + + + Main + 437275000 + + AFSK + 1200 + + JR8YJT + + + + + GeneSat-1 + 29655 + decayed + + + Main + 437065000 + + AFSK + 1200 + + KE7EGC + + + + + NMARS + 29662 + decayed + + + Main + 0 + + AFSK + 1200 + + + + + + + NO-60(RAFT) + 29661 + decayed + NO-60 + + + Main + 145825000 + + AFSK + 1200 + + RAFT + + + + + NO-61(ANDE) + 29664 + decayed + NO-61 + + + Main + 145825000 + + AFSK + 1200 + + ANDE-1 + + + + + NO-62(FCAL) + 29667 + decayed + NO-62 + + + Main + 437385000 + + AFSK + 1200 + + KD4HBO + + + + + PO-63(PehuenSat) + 29709 + PO-63 + + + Main + 145825000 + + AFSK + 1200 + + LU1YUC + + + + + AeroCube-2 + 31122 + 2007-012F + Not operational + + + Main + 0 + + GFSK + 9600 + + + + + + + MAST + 31126 + 2007-012K + Not operational + + + Main + 0 + + FHSS + + + + + + + PolySatCP3 + 31128 + 2007-012M + Not operational + + + Main + 0 + + AFSK + 1200 + + + + + + + LIBERTAD-1 + 31129 + 2007-012N + Not operational + + + Main + 437399000 + + AFSK + 1200 + + 5K3L + + + + + CAPE-1 + 31130 + 2007-012P + Not operational + + + Main + 435248000 + + AFSK + 1200 + + K5USL + + + + + PolySatCP4 + 31132 + 2007-012Q + Not operational + + + Main + 437323000 + + SSB + 1200 + + N6CP + + + + + CSTB-1 + 31133 + 2007-012R + Not operational + + + Main + 0 + + AFSK + 1200 + + + + + + + CUTE17+APDII + 32785 + 2008-021C + Operational + CO-65 + Draft + 2019-08-05 + + + Main + 0 + + GMSK + 9600 + + JQ1YTC + + + Main + 437275000 + + AFSK + 1200 + + + CW + + JQ1YTC + + + + + COMPASS-1 + 32787 + 2008-021E + Not operational + + + Main + 437275000 + + AFSK + 1200 + + + CW + + DP0COM + + + + + AAUSAT-II + 32788 + 2008-021F + Operational + + + Main + 437432000 + + FFSK/MSK + 1200 + + + + + Main + 437432000 + + FSK + 9600 + + OZ2CUB + + + + + DO-64(DELFI-C3) + 32789 + 2008-021G + Operational + DO-64 + Draft + 2019-08-05 + + + Main + 1458675000 + + BPSK + 1200 + + DLFIC3 + + + Main + 145930000 + + CW + + DLFIC3 + + + + + CANX-2 + 32790 + 2008-021H + Not operational + + + Main + 0 + + OverGSonly + + VA3SFL + + + Main + 0 + + 6KbpsGMSK + + VA3SFL + + + + + CO-66(SEEDS-II) + 32791 + 2008-021J + Operational + CO-66 + + + Main + 437485000 + + 1200bpsFMCWTalk + + erJQ1YGU + + + + + RS-30(Yubileiniy) + 32953 + 2008-025A + Not operational + + Draft + 2019-08-05 + + + Main + 435315000 + + CW + + RS30 + + + + + PRISM(HITOMI) + 33493 + 2009-002B + Operational + + + Main + 437250000 + + AFSK + + + GMSK + + + CW + + JQ1YCX + + + + + KAGAYAKI + 33495 + 2009-002D + Not operational + + + Main + 437375000 + + FSK + 9600 + + + CW + + + + + + + SOHLA-1(MAIDO-1) + 33496 + 2009-002E + Not operational + + + Main + 437505000 + + AFSK + 1200 + + + CW + + JL3YUS + + + + + STARS(KUKAI) + 33498 + 2009-002G + Operational + + + Main + 437305000 + + FM + 1200 + + + CW + + JR5YBN(mother + + + Main + 437275000 + + FM + 1200 + + + CW + + JR5YBO(daught + + + + + KKS-1(KISEKI) + 33499 + 2009-002H + Operational + + + Main + 437385000 + + AFSK + 1200 + + + CW + + JQ1YYY + + + + + PharmaSat-1 + 35002 + Not operational + + + Main + 437465000 + + AFSK + 1200 + + KE7EGC + + + + + CP-6 + 35003 + Not operational + + + Main + 437365000 + + AFSK + 1200 + + + CW + + N6CP + + + + + HawkSat-1 + 35004 + Not operational + + + Main + 437345000 + + AFSK + 1200 + + + + + + + DRAGONSat(AggieSat-2) + 35690 + decayed + Verified + 2019-02-14 + + + Main + 436250000 + + FSK + 19200 + + + + + Main + 437325000 + + FSK + 9600 + + + + + + + ANDE-2(Pollux) + 35693 + decayed + + + Main + 145825000 + + AFSK + 1200 + + POLLUX-1 + + + Main + 145825000 + + AFSK + 1200 + + KD4HBO-1 + + + + + RS-28(UgatuSat) + 35869 + 2009-049D + Not operational + + Draft + 2019-08-05 + + + Main + 435264000 + + CW + + RS28 + + + + + RS-38(Tatiana-2) + 35868 + 2009-049E + Not operational + + Draft + 2019-08-05 + + + Main + 435490000 + + CW + + RS38 + + + + + SO-67(SumbandilaSat) + 35870 + 2009-049F + Not operational + + + Main + 435300000 + + FM_tone2336Hz + + + + + + + SwissCube-1 + 35932 + 2009-051B + Operational + + + Main + 437505000 + + BFSK + 1200 + + + CW + + HB9EG1 + + + + + BeeSat-1 + 35933 + 2009-051C + Not operational + + Draft + 2019-08-05 + + + Main + 436000000 + + GMSK + 4800 9600 + + DP0BEE + + + + + UWE-2 + 35934 + 2009-051D + Not operational + + + Main + 437385000 + + AFSK + 1200 + + + CW + + + + + + + ITU-pSat1 + 35935 + 2009-051E + Operational + + + Main + 437325000 + + GFSK + 19200 + + + CW + + + + + + + HO-68(XW-1) + 36122 + 2009-072B + Operational + + + Main + 435790000 + + SSBinvertingCW + + BJ1SA-11-12 + + + Main + 435790000 + + FM_tone67Hz + + + CW + + BJ1SA-11-12 + + + + + Waseda-SAT2 + 36574 + decayed + + + Main + 437485000 + + FSK + 1200 + + + CW + + WASEDA + + + + + Negai + 36575 + decayed + + + Main + 437305000 + + AFSK + 1200 + + + CW + + JQ1ZEX + + + + + UNITEC-1 + 36578 + 2010-020F + Deep space + + + Main + 5840000000 + + AFSK + 1200 + + + CW + + JQ1ZUN + + + + + StudSat + 36796 + 2010-035B + Not operational + + + Main + 437861000 + + FSK + 9600 + + + CW + + + + + + + TIsat-1 + 36799 + 2010-035E + Not operational + + Draft + 2019-08-05 + + + Main + 145980000 + + PSK + + + AFSK + + + CW + + HB9DE + + + + + RAX-1 + 37223 + 2010-062B + Not operational + + + Main + 437505000 + + GMSKKISS + 9600 + + RAX-1 + + + + + FO-69(FASTRAC-1) + 37227 + 2010-062F + Not operational + + + Main + 437342000 + + AFSK + 1200 + + FAST1 + + + Main + 437342000 + + FSK + 9600 + + FAST1 + + + + + NanoSail-D2 + 37361 + decayed + + + Main + 437270000 + + AFSK + 1200 + + KE7EGC + + + + + FO-70(FASTRAC-2) + 37380 + 2010-062M + Not operational + + + Main + 145825000 + + AFSK + 1200 + + FAST2 + + + Main + 145825000 + + FSK + 9600 + + FAST2 + + + + + ZACube-2 + 43907 + 2013-066B + Unknown + + 2018-12-27 + Vostochny + + + Verified + 2018-12-27 + + Warning + + Hamradio paylaod not clear + Charge utile radioamateur pas clairement définie - The coordinated frequencies are beacon 14.099MHz, uplinks on 437.525 and 1260.25MHz and downlinks on 437.345 and 2405.00MHz + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=205 + IZACUBE 2 has been coordinated by IARU + IZACUBE 2 a été coordonné par l'IARU + + + Project Site + http://www.cput.ac.za/blogs/fsati/zacube-2/ + + + + + + Telemetry 1 + 14099000 + + BPSK + 9600 + + + + + repeater 1(TBC) + + 437525000 + + + 437345000 + + + + + repeater 2(TBC) + + 1260250000 + + + 2405000000 + + + + + + + + + + + + + + + + + + + ARISSat-1 + 37772 + decayed + + + Main + 145919000 + + 39FMlinear/inverti + + ng + + + Main + 145950000 + + FMVOICE/SSTV/Tel + + emetry + + + Main + 145919000 + + BPSK + 1000 + + + CW + + RS01S + + + Main + 145939000 + + BPSK + 400 + + + CW + + + + + + Jugnu + 37839 + 2011-058B + Operational + + + Main + 4372759000 + + CW + + + + + + + SRMSAT + 37841 + 2011-058D + Operational + + + Main + 437425000 + + CW + + + + + + + RAX-2 + 37853 + 2011-061D + Not operational + + + Main + 437345000 + + GMSK + 9600 + + + + + + + AO-71(AubieSat-1) + 37854 + 2011-061E + Not operational + + + Main + 437473000 + + AFSK + 1200 + + + CW + + + + + + + E1P-U2 + 37855 + 2011-061F + Operational + + + Main + 437502000 + + AFSK + 1200 + + + + + + + M-Cubed + 37855 + 2011-061F + Operational + Verified + 2019-02-14 + + + Main + 437485000 + + GMSKKISS + 9600 + + + + + + + ALMASat-1 + 38078 + 2012-006B + Not operational + + + Main + 437465000 + + FSK + 1200 + + ALMASAT + + + + + e-st@r + 38079 + Not operational + + + Main + 437445000 + + AFSK + 1200 + + E-STAR-I + + + + + Robusta + 38080 + Not operational + + + Main + 437325000 + + FM + 1200 + + + + + + + MaSat-1(MO-72) + 38081 + decayed + + + Main + 437345000 + + 625/1250bpsGFSKC + + WHA5MASAT + + + + + Xatcobeo + 38082 + decayed + + + Main + 437365000 + + FFSKSSRC + 1200 + + W + + + + + PW-Sat1 + 38083 + Not operational + + + Main + 145902000 + + BPSK + 1200 + + + CW + + VOID + + + + + UNICubeSAT + 38084 + Not operational + + + Main + 437305000 + + FSK + 9600 + + + + + + + Goliat + 38085 + Not operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + YO7MJF + + + + + Horyu-2 + 38340 + 2012-025D + Not operational + + + Main + 437378000 + + FSK + 1200 + + + CW + + + + + + + PROITERES + 38756 + 2012-047B + Not operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + JL3YZL + + + + + Aeneas + 38760 + 2012-048C + Operational + + + Main + 437600000 + + AFSK + 1200 + + KE6YFA-1 + + + + + CSSWE + 38761 + 2012-048D + Not operational + + + Main + 437349000 + + GMSK + 9600 + + CSSWE + + + + + CXBN + 38762 + 2012-048E + Not operational + + + Main + 437525000 + + GFSK + 9600 + + + + + + + CP5 + 38763 + 2012-048F + Not operational + + + Main + 437405000 + + AFSK + 1200 + + CP5 + + + + + RAIKO + 38852 + Not amateur Satellite + + Draft + 2019-08-05 + + + Main + 1300000000000 + + 384-500kbps + + + + + + + FITSAT-1 + 38853 + decayed + + + Main + 437250000 + + 1200bps/1152kbps + + JG6YEW + + + + + TechEdSat + 38854 + decayed + + + Main + 437465000 + + FM + 1200 + + + CW + + KJ6TVO + + + + + AAUSat3 + 39087 + 2013-009B + Not operational + + + Main + 437425000 + + FSK + 400 + + + CW + + OZ3CUB + + + + + STRaND-1 + 39090 + 2013-009E + Operational + + + Main + 437568000 + + GMSK + 9600 + + + + + + TugSat-1 (CanX-3B) + 39091 + 2013-009F + Not operational + + + Main + 2234400000 + + 32Kbps-256Kbps BPSK + + + + + + UniBRITE (CanX-3A) + 39092 + 2013-009G + Not operational + + + Main + 145890000 + + CW + + + + + + OSSI-1 + 39131 + Unknown + + Draft + 2019-08-05 + + + Main + 145980000 + + AFSK + 1200 + + + CW + + + + + + AIST-2 (RS-43) + 39133 + 2013-015D + Not operational + + + Main + 435265000 + + CW + + + + + + SOMP + 39134 + 2013-015E + Operational + + + Main + 437503000 + + AFSK + 1200 + + + CW + + DP0TUD + + + + + BEESAT-3 + 39135 + 2013-015F + Not operational + + Draft + 2019-08-05 + + + Main + 435950000 + + GMSK + 4800 + + + CW + + DP0BEF + + + + + BEESAT-2 + 39136 + 2013-015G + Not operational + + Draft + 2019-08-05 + + + Main + 435950000 + + GMSK + 4800 + + + CW + + DP0BEF + + + + + GRAHAM (PhoneSat1) + 39142 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW-2 + + + + + BELL (PhoneSat1) + 39143 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW-1 + + + + + Dove-1 - 2 + 39144 + decayed + + + Main + 2420000000 + + AFSK + 1200 + + + + + + ALEXANDER (PhoneSat2) + 39146 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + + TURKSAT-3USAT + 39152 + 2013-018C + Not operational + + + Main + 437225000 + + CW + + + + + + CubeBug-1 + 39153 + 2013-018D + Not operational + + + Main + 437438000 + + AFSK + 1200 + + CUBEB1 + + + + + EstCube-1 + 39161 + 2013-021C + Not operational + + Draft + 2019-08-05 + + + Main + 437254000 + + GMSK + 9600 + + + CW + + ES5E-11 ES5E/S + + + + + CUSat-1 + 39266 + 2013-055B + Not operational + + + Main + 437405000 + + AFSK + 1200 + + BOTTOM + + + + + DANDE + 39267 + 2013-055C + Not operational + + + Main + 436750000 + + GMSK + 9600 + + DANDE-2 + + + + + CUSat-2 + 39271 + Not operational + + + Main + 437485000 + + AFSK + 1200 + + WG2XTI + + + + + PhoneSat24 + 39381 + decayed + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + + CAPE-2 (LO-75) + 39382 + decayed + + + Main + 145825000 + + AFSK + 1200 + + + CW + + W5UL-15 + + + + + DragonSat-1 + 39383 + Not operational + + + Main + 0000 + + FSK + 9600 + + + + + + KySat-2 + 39384 + Not operational + + + Main + 437402000 + + FSK + 9600 + + KK4AJJ + + + + + TJ3Sat + 39385 + Not operational + + + Main + 437320000 + + CW + + + + + + NPS-SCAT + 39389 + Not operational + + + Main + 437525000 + + AFSK + 1200 + + + CW + + K6NPS + + + + + COPPER + 39395 + Not operational + + + Main + 437290000 + + FSK + 9600 + + + + + + Black Knight-1 + 39398 + Not operational + + + Main + 437345000 + + + + + + + + Trailblazer-1 + 39400 + Not operational + + + Main + 437425000 + + FSK + 9600 + + + + + + Nexus + 43937 + 2019-003F + Operational + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + Fuji-OSCAR 99 + Verified + 2019-02-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=535 + + + + + Project Web site + http://sat.aero.cst.nihon-u.ac.jp/nexus/E0_Top.html + + + + + + Telemetry 1 + 437075000 + + CW + + + + + + Telemetry 2 + 435900000 + + FSK AX.25 / π/4 shift QPSK CCSDS + + + + + + SSB/CW transponder + + 145900000 + 145930000 + + + 435880000 + 435910000 + + + + + + + + + + + + + + + + + + BEESAT-9 + 44412 + Operational + draft + 2019-08-07 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=657 + + + + Project information + https://www.raumfahrttechnik.tu-berlin.de/menue/research/current_projects/beesat_9/parameter/en/ + + + + + Beacon + 435950000 + + GMSK + 19200 bps + + + GMSK + 38400 bps + + + CW + + + DP0BEM + + + + + information for amateur radio comunitie + https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ + + + Telemetry description + https://www.raumfahrttechnik.tu-berlin.de/fileadmin/fg169/amateur-radio/BEESAT-9_Telemetry_Format.ods + + + + + + + + + + + CUAVA-1 + 0 + To Be Laucnh + + + + + DRAFT + 2019-04-15 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum= + CUAVA-1 has been coordinated by IARU + EntrySat a été coordonné par l'IARU + + + + Telemetry U + 437075000 + + GMSK + 9k6 + + + + + Telemetry S + 2404000000 + + + + + + + + Telemetry S? + 5840000000 + + + + + + + + Telemetry M + 76800000000 + + + + + + + + transpondeur U + + 145875000 + + + + + + transpondeur S + + 2404000000 + + + + + + Transponder + + 5660000000 + + + + + + + + + + + + + + + + + + + + QARMAN + 0 + To be deployed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 + Thosten Scholz DO2TSB + 2013-10-31 + 2015-06-08 + scholz@vki.ac.be.nospam + + Draft + 2020-01-14 + + Project Information page + https://qarman.eu/ + + + + Beacon + 437350000 + + GMSK + 9600 + + ON05BE + + + + + Qarman Beacon Definition + https://ukamsat.files.wordpress.com/2020/01/qarman_bcndef_v1.1.pdf + + + Beacon Decoder spreadsheet + https://ukamsat.files.wordpress.com/2020/01/qarman_bcndecoder.xlsx + + + + + + operations@qarman.eu + + + + + Aoba-Velox 4 + 43940 + 2019-003J + Not operational + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + + Verified + 2019-01-19 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=499 + + + + + AOBA VELOX-IV site + http://www.eee.ntu.edu.sg/research/SaRC/Research/Projects/Pages/AOBA-VELOX-IV.aspx + + + + + + Telemetry 1 + 437225000 + + GMSK + 9600 + + + + + + + + + + + + + + av4mail@googlegroups.com + + + + + Raavana 1 + 44329 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=616 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + + + + Beacon + 435375000 + + CW + + + + GMSK + 9600 + + + + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + + + + Swiatowid + 44426 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=609 + coordinated by IARU + coordonné par l'IARU + + + project site + https://satrevolution.com/projects/swiatowid/ + + + + + + Beacon + 435500000 + + AFSK + 1200 + + + + + APRS + + 435500000 + + + 435500000 + + + + + + + + + + + + + + + + + + + SEAM-2.0 + 44411 + Unknown + Draft + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=584 + TBEx has been coordinated by IARU + TBEx a été coordonné par l'IARU + + + + Beacon + 437250000 + + GMSK + 9600 bps + + + + + + + AmurSat (AmGU-1) + 44394 + Operational + Draft + 2019-08-07 + + IARU coordination Declined + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + + + + Beacon + 436250000 + + mobitex + 4800bps + + + + + + + SiriusSat-2(SXC1-182 RS14S) + 43596 + 1998-067PH + Operational + + 2018-08-15 + ISS + + + Verified + 2019-02-14 + + Siriussat information page (Russian) + http://sputnix.ru/ru/nashi-sputniki/siriussat-1 + + + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + + + Siriussat hamradio information from Sputnix companie + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + hamradio information from Spunix Companie + + + + Main + 435670000 + + GMSK + 4800 + + RS14S + + + + + + + + + + + + siriussat@sputnix.ru + + Télécharger SPUTNIX Telemetry Viewer (Win ENG) + http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip + + + + + Armadillo + 44352 + Operational + Draft + 2019-08-07 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=237 + + + + Project information + https://www.facebook.com/UTSatLab/app/208195102528120/?ref=page_internal + + + + + Beacon + 437525000 + + GMSK + 19200 bps + + + GMSK + 38400 bps + + + CW + + + KE5DTW + + + + + SATNOGS : Kaitai Struct for telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/armadillo.ksy + + + + + + + + + + + EcAMSat + 43019 + Operational + Draft + 2019-08-07 + + + Beacon + 437095000 + + AFSK + 1200bps + + KE6QLL + + + + + Lucky-7 + 44406 + Operational + Verified + 2019-08-07 + + Information page + http://www.lucky7satellite.org/ + + + + Beacon + 437525000 + + GFSK + 4600 Bps + + + + + + + + + + + Telemetry description + http://www.lucky7satellite.org/download/Lucky-7_-_Amateur_Radio_Information.pdf + + + + + + + BRICSat-2 + 44355 + Operational + + 2019-08-07 + + + Navy-OSCAR 103 (NO-103) + Verified + 2019-06-24 + + Information page + http://aprs.org/bricsat-2.html + + + + Beacon + 437605000 + + FSK + 9600 + + USNA14 + + + APRS + + 145825000 + + + 145825000 + + APRS 1200 bauds + + + + + + + + + + + + + + + + + FalconSAT-3 + 30776 + Operational + INIT + 2019-08-07 + + + Digipeater + + 145840000 + + + 435103000 + + 9600bps GMSK + + + + + JAISAT-1 + 44419 + Unknown + Draft + 2019-08-07 + + Information page + http://www.rast.or.th/jaisat + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=521 + + + + Beacon + 4435325000 + + CW + + + + GMSK + 4800 + + + + + Transpondeur + + 145935000 + 145965000 + + + 435935000 + 435965000 + + + + + + + LightSail-B (now LightSail-2) + 44420 + Operational + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=489 + LightSail-2 has been coordinated by IARU + LightSail-2 a été coordonné par l'IARU + + + + Telemetry 1 + 437025000 + + GMSK + 9k6 + + + + + + + + + + + + + + + + + + + skCUBE + 42789 + No operational + INIT + 2019-08-07 + + + Beacon + 437100000 + + CW + + + + GMSK + 9600 Bps + + + + Digipeater + + 2401000000 + + + 437100000 + + + + + + + SATNOGS : Kaitai Struct for Telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/skcube.ksy + + + + + + + + + + + CAS-7B (BP-1B) + 44443 + + Operational + + 2019-07-25 + Jiuquan + + BIT Progress-OSCAR 102 (BO-102) + verified + 2015-11-02 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=659 + + + Information + CAS-7B (BP-1B) was developed by the Chinese Amateur Satellite Group (CAMSAT), and in cooperation with the Beijing Institute of Technology (BIT). CAMSAT completed the project planning, design, build, and testing, and manages the on-orbit operation of the satellite. BIT provided the satellite environmental testing, launch support, and financial support. Many students from BIT were involved with the project, learning about satellite technology and amateur radio. The satellite carries a CW telemetry beacon and FM repeater that has been active since launch. + + + + CW Beacon + 435715000 + + CW + + + + + FM Transpondeur + + 145900000 + + + 435690000 + + FM + yes + + + + + Telemetry information + https://ukamsat.files.wordpress.com/2019/06/camsat-cas-7b-news-release.pdf + + + + + + + + + + + + + + + + + + + OrigamiSat-1 + 43933 + 2019-003B + Unknown + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + FO-98 + Verified + 2019-01-19 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=591 + + + + + + Telemetry 1 + 437050500 + + AFSK + 1200 + + + CW + + + JS1YAX + + + Telemetry 2 + 5840000000 + + + 115kbps + + + + + + + + + + + + + + + + + + + NepaliSat1 + 44331 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=618 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + + + + Beacon + 435375000 + + CW + + + + GMSK + 9600 + + + + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + + + + BIRD-G (Ghana GhanaSat-1) + 42821 + No operational + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJP + + + + + BIRD-M (Mongolia Mazaalai) + 42822 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJQ + + + + + BRAC (BIRD-B) + 42823 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJS + + + + + ChubuSat-2 + 41338 + No operational + draft + 2019-08-07 + + + Beacon + 437102000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JJ2YPN + + + + + ChubuSat-3 + 41339 + No operational + Draft + 2019-08-07 + + + Beacon + 437424000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JJ2YPO + + + + + CP-7 (DAVE) + 43615 + Operational + Draft + 2019-08-07 + + Project information + https://www.polysat.org/launched + + + + + Beacon + 437150000 + + FSK + 9600 bps + + + CW + + + WI2XNR-1 + + + + + CubeBel-1(BSUSat-1) + 43666 + Operational + Draft + 2019-08-07 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=577 + + + + + + Beacon + 436990000 + + GMSK + 4800 bps + + + GMSK + 9600 bps + + EU10S + + + Digipeater + + 436200000 + + + 436200000 + + + + + + + information for amateur radio comunitie + https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ + + + Telemetry description + https://bsusat.com/projects/telemetry-data-structure + + + How to upload telemetry + https://bsusat.com/for-radio-amateurs/how-to-upload-telemetry + + + + + + + D-SAT + 42794 + No operational + Draft + 2019-08-07 + + + Beacon + 437505000 + + 4800bps GMSK CW + + + + GMSK + 4800 bps + + + CW + + + U1-DSAT-U1 + + + + + EduSat-1 (BIRD-N) + 42824 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJR + + + + + ELFIN-A + 43617 + Operational + Draft + 2019-08-07 + + Project information + https://elfin.igpp.ucla.edu/ + + + + + Beacon + 437450000 + + GFSK + 9600bps + + WJ2XNX + + + + + information for amateur radio comunitie + https://elfin.igpp.ucla.edu/listen-to-elfin + + + Telemetry description + https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx + + + SatNOGS : Kaitai Struct telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy + + + + + + elfin@igpp.ucla.edu + + + + + ELFIN-B + 43616 + Operational + Draft + 2019-08-07 + + Project information + https://elfin.igpp.ucla.edu/ + + + + + Beacon + 437450000 + + GFSK + 9600bps + + WJ2XOX + + + + + information for amateur radio comunitie + https://elfin.igpp.ucla.edu/listen-to-elfin + + + Telemetry description + https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx + + + SatNOGS : Kaitai Struct telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy + + + + + + elfin@igpp.ucla.edu + + + + + ACRUX-1 + 44369 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=644 + Gabriel Abrahams VK3EXO + 2018-09-15 + 2018-11-13 + abrahams.gabi@gmail.com.nospam + + + 2019-06-29 + + + draft + 2019-08-07 + + ACRUX-1 + https://melbournespace.com.au/projects/ + + + + + Beacon + 437200000 + + GMSK + 9600bps + + CQCQCQ + + + + + + + + + + + + + + + + + Uguisu (BIRD-JPN) + 44330 + Operational + + 2019-04-17 + + + + Draft + 2019-05-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=617 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + + + + Beacon + 435375000 + + CW + + + + GMSK + 9600 + + + + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + + + + TBEx-b + 44359 + To Be Launch + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 + TBEx has been coordinated by IARU + TBEx a été coordonné par l'IARU + + + project information + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + Telemetry 1 + 437535000 + + GMSK + 9k6 + + + + + + + TBEx – Tandem Beacon Experiment + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + SATNOGS : Kaitai Struct for Telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/tbex.ksy + + + + + + jwcutler@umich.edu + + + + + AoXiang-1 (CN04) + 42735 + Decayed + Draft + 2019-08-07 + + + Beacon + 2401600000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437525000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437500000 + + BPSK + 9600 bps + + NPUAX1 + + + + + Toki (BIRD-J) + 42820 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + AFSK + 1200bps + + + GMSK + 9600bps + + + CW + + + JG6YJO + + + + + Tomsk-TPU-120 (RS04S) + 42910 + No operational + Draft + 2019-08-07 + + + Beacon + 145800000 + + FSK + 9600bps + + + Voice + + + RS4S + + + + + Socrat + 44405 + Operational + Draft + 2019-08-07 + + + Beacon + 436000000 + + mobitex + 4800 bps + + + + + + + SONATE + 44400 + Unknown + INIT + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=572 + SONATE has been coordinated by IARU + SONATE a été coordonné par l'IARU + + + project information + http://www8.informatik.uni-wuerzburg.de/en/wissenschaftforschung/sonate/ + + + + + + Telemetry 1 + 145840000 + + SSTV + + + + + + Telemetry 2 + 437025000 + + GFSK + 9600 Bps + + + GMSK + 9600 Bps + + + + + + + SpooQy-1 + 44332 + Operational + Draft + 2019-08-07 + + project information + https://sites.google.com/site/phylej/projects-1/spooqy-1 + + + + + IARU Coordination declined + + + + + + + Beacon + 436200000 + + GMSK + 9600bps + + + + + + + STARS-AO + 43679 + Operational + Draft + 2019-08-07 + + Project information + https://stars-ao.info + + + + + Beacon + 437350000 + + CW + + + JJ2YSY + + + Beacon + 437400000 + + CW + + + JJ2YSY + + + Beacon + 437200000 + + GMSK + + + JJ2YSY + + + + + STARS-Me (Mother) + 43640 + No operational + Draft + 2019-08-07 + + Project information + http://stars.eng.shizuoka.ac.jp/english.html + + + + + Mother - Beacon 1 + 437245000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + Mother - Beacon 2 + 437405000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + Daughter - Beacon 1 + 437255000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + Daughter - Beacon 2 + 437425000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + + + SUCHAI + 42788 + No operational + Draft + 2019-08-07 + + + Beacon + 437230000 + + CW + + + + FSK2k4 + 2400 Bps + + SUCHAI + + + + + SurfSat + 43614 + No operational + Draft + 2019-08-07 + + Project information + https://icubesat.files.wordpress.com/2015/06/icubesat-2015_org_b-3-5_surfsatweb_dove.pdf + + + + + Beacon + 437275000 + + FSK + 9600bps + + + + + + + Tancredo-1 (UbatubaSat) + 41391 + Decayed + Draft + 2019-08-07 + + + Beacon + 437200000 + + AFSK + 1200 bps + + + CW + + + PY0ETA + + + + + Tanusha-SWSU-1 (RS-6S) + 42911 + No operational + draft + 2019-08-07 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS6S + + + + + Tanusha-SWSU-2 (RS-7S) + 42912 + No operational + Draft + 2019-08-07 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS7S + + + + + Tanusha-SWSU-3 (RS-8S) + 43597 + No operational + Draft + 2019-08-07 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS8S + + + + + Tanusha-SWSU-4 (RS-9S) + 43598 + No operational + Draft + 2019-08-07 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS9S + + + + + TechEdSat-5 + 42066 + Decayed + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + TY-5 (Tianyi-5 Xiaoxiang-5) + 43553 + Unknown + INIT + 2019-08-07 + + + Beacon + + + 9k6 GMSK/5Mbps OFDM + + + + + + + + VDNH-80 + 44392 + Operational + draft + 2019-08-07 + + + Beacon + 436500000 + + mobitex + 4800 bps + + + + + + + VZLUsat-1 (CZ02) + 42790 + Operational + INIT + 2019-08-07 + + Pilsen Ground Station + https://www.pilsencube.zcu.cz/vzlusat1/ + + + + + Beacon + 437240000 + + MSK + 4800 bps + + + CW + 20 Wpm + + VZLUSAT1 + + + + + information for amateur radio comunitie + https://www.pilsencube.zcu.cz/vzlusat1/static_radio_amateur.html + + + + + Xiaoxiang-4 (TY-4 Tianyi-4) + 43669 + Operational + draft + 2019-08-07 + + + Beacon + 435925000 + + GMSK + 9600 + + + + + T1 + + 435925000 + + + 435925000 + + 9k6 GMSK + + + T2 + + 2409000000 + + + 2409000000 + + 5Mbps OFDM + + + T3 + + 5659000000 + + + 5839000000 + + 5Mbps OFDM + + + + + TY-3 (Tianyi-3 Xiaoxiang-3) + 43664 + Unknown + INIT + 2019-08-07 + + + Beacon + + + 9k6 GMSK/5Mbps OFDM + + + + + + + + PSAT-2 + 44354 + Operational + + 2019-06-25 + + + Navy- OSCAR 104 (NO-104) + Verified + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=473 + PSAT-2 has been coordinated by IARU + PSAT-2 a été coordonné par l'IARU + + + Information page + http://aprs.org/psat2.html + + + + SSTV + 435350000 + + SSTV + + + + + + APRS + + 145825000 + + + 145825000 + + AFSK + 1200 + + + PSK31 + + 294815000 + + + 435350000 + + AFSK + 1200 + + + + + + + + + + + + + + + + + CP-9 + 44360 + Operational + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=481 + CP-9 has been coordinated by IARU + CP-9 a été coordonné par l'IARU + + + Information page + https://www.polysat.org/ + + + + Telemetry 1 + 437505000 + + FSK + 9k6 + + + FSK + 19k2 + + + FSK + 38k4 + + KJ6RQH-1 + + + + + + + + + + + + + + + + + Max Valier Sat + 42778 + Operational + + 2017-06-23 + Satish Dhawan Space Centre. + + Verified + 2019-08-07 + + Information page + http://aprs.org/bricsat-2.html + + + + Radio Beacon + 145960000 + + CW + + + II3MV + + + Beacon Astrodev Helium-100 + 145860000 + + GMSK + + + II3MV + + + + + Amateur information + http://www.maxvaliersat.it/amateurradio + + + QSL Card Request + mailto:maxvaliersat[at]tfobz[dot]net. + + + + + + + + + + + LightSat (D-Star One) + 44393 + Operational + INIT + 2019-08-07 + + + Beacon + 435700000 + + mobitex GMSK + 4800 Bps + + + + + Beacon + 435700000 + + mobitex GMSK + 9600 Bps + + + + + + + HORYU-4 + 41340 + Operational + + 2016-02-17 + TANEGASHIMA SPACE CENTER + + Draft + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=434 + has been coordinated by IARU + a été coordonné par l'IARU + + + + Beacon + 437375000 + + CW + + + + AFSK + 1200 + + + GFSK + 9600 + + JG6YBW + + + Beacon S + 2400300000 + + BPSK + 10000 + + + + + + + Es'Hail-2 (Phase-4A QO-100) + 43700 + Operational + QO-100 + Verified + 2019-08-07 + + P4A AMSAT DL Forum + https://forum.amsat-dl.org/index.php?board/3-es-hail-2-amsat-phase-4-a/ + AMSAT DL Forum for Phase 4A payload + Forum de l'AMSAT-DL pour Phase 4A + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=630 + AMSAT P4-A has been coordinated by IARU + AMSAT P4-A a été coordonné par l'IARU + + + + Beacon + + + Linear transponder + + + + + + Narrowband Linear transponder + + 2400050000 + 2400300000 + + + 10489550000 + 10489800000 + + + + + Wideband digital transponder + + 2401500000 + 2409500000 + + + 10491000000 + 10499000000 + + + + + + + EQUISat + 43552 + Operational + Draft + 2019-08-07 + + Information page + https://brownspace.org/equisat/ + + + + Beacon + 435550000 + + CW + + + + FSK + 9600 + + + FSK + 4800 + + + + + + + + + + + Dasboard + https://equisat.brownspace.org + + + + + + + EO-88 (FUNcube-5 Nayif-1) + 42017 + Operational + EO-88 + Draft + 2019-08-07 + + + Beacon + 145940000 + + BPSK SSB + 1200 + + + + + Beacon + 145940000 + + BPSK SSB + 1200 + + + + + Main + + 435015000 + 435045000 + + + 145960000 + 145990000 + + SSB/CW + yes + + + + + Telemetry dashboard + http://data2.amsat-uk.org/ui/nayif1 + + + + + + operations@funcube.org.uk + https://funcube.org.uk/working-documents/funcube-telemetry-dashboard/ + + + + EnduroSat One + 43551 + No operational + Draft + 2019-08-07 + + + Beacon + 437050000 + + GMSK + 9600bps + + LZ0AMS + + + + + D-Star ONE EXOCONNECT + 44413 + Operational + INIT + 2019-08-07 + + + Beacon + 435700000 + + mobitex GMSK + 4800 + + + mobitex GMSK + 9600 + + + + + + + Aalto-1 + 42775 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=292 + Timo Nikkanen OH2EGZ + 2013-03-15 + 2015-06-03 + timo.nikkanen@gmail.com.nospam + + INIT + 2019-08-07 + + Mission description + https://wiki.aalto.fi/display/SuomiSAT + + + + PDF file + https://docs.google.com/file/d/0B9SJ8FHoqwj-eVR2SzhrWFFTZTA/edit + + + + + Beacon + 437220000 + + FSK CW + 9600bps + + + CW + + + OH2A1S + + + + + URSA MAIOR (IT02) + 42776 + Operational + draft + 2019-08-07 + + + Beacon + 435950000 + + FSK + 9600 Bps + + URSAMR + + + + + RS-3 (Radio Sputnik 3) + 12997 + No operational + Draft + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-4 (Radio Sputnik 4) + 13000 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-20 (Mozhayets-3) + 27560 + Decayed + INIT + 2019-08-07 + + + Beacon + 145828000 + + CW + + + + + + Beacon + 435319000 + + CW + + + + + + + + Pegasus (AT03) + 42784 + No operational + Draft + 2019-08-07 + + + Beacon + 436670000 + + GMSK + 9600 bps + + ON03AT + + + + + NUDTSat (CN06) + 42787 + Operational + Draft + 2019-08-07 + + + Beacon + 436270000 + + BPSK + 9600 Bps + + BG7AKF + + + + + Nanosat-7 (Prox-1) + 44339 + Unknown + draft + 2019-08-07 + + Information page + http://prox-1.gatech.edu/ + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=437 + Prox-1 has been coordinated by IARU + Prox-1 a été coordonné par l'IARU + + + + Beacon + 2306500000 + + FSK + 38400 Bps + + + + + + + + + + + Telemetry description + http://prox-1.gatech.edu/beacon.html + + + + + + + RS-5 (Radio Sputnik 5) + 12999 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-6 (Radio Sputnik 6) + 13002 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-7 (Radio Sputnik 7) + 13001 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-8 (Radio Sputnik 8) + 12998 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-47 (COSMOS-2499) + 39765 + No operational + INIT + 2019-08-07 + + + Beacon 1 + 435565000 + + CW + + + + + + Beacon 2 + 435465000 + + CW + + + + + + + + RSP-00 + 43639 + No operational + draft + 2019-08-07 + + project site + http://rymansat.com/en/2018/10/15/operational-status-of-rsp-00/ + + + + + + Beacon + 145890000 + + 38k4 pi/4QPSK CW + + + + AFSK + 1200 + + + FM + + + + CW + + + 8J1RSP + + + Beacon + 436930000 + + pi/4QPSK + 38400 Bps + + 8J1RSP + + + + + NanoSat-6 (Oculus-ASR) + 44346 + Unknown + draft + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=266 + + + Project information page + http://aerospace.mtu.edu/spacecraft/oculus-asr + + + + Beacon + 437200000 + + GMSK + 9600 Bps + + + + + + + MOVE-IIb + 44398 + Unknown + Draft + 2019-08-07 + + Information page + https://www.move2space.de/MOVE-II/ + + + + Beacon + 145840000 + + QPSK + 12500 Bps + + + CW + + + + + + + + COMPASS-2/DragSail (DE04) + 42777 + No operational + Draft + 2019-08-07 + + Information page + http://149.201.163.33/?page_id=125 + + + + Beacon + 437300000 + + s AFSK + 1200 Bps + + + + + Beacon + 2403000000 + + AFSK + 1200 Bps + + + + + + + + + + + Amateur radio information + http://149.201.163.33/?page_id=892 + + + https://www.dropbox.com/sh/v6ji3pduzm4ue4m/AABQGgBKULDBgroJWs0e-Bqwa?dl=0 + + + + VisionCube + 43758 + + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=607 + VisionCube has been coordinated by IARU + VisionCube a été coordonné par l'IARU + + + + Telemetry 1 + 437425000 + + GMSK + 9600 + + KUVCS + + + + + Ham radio Information + http://control.kau.ac.kr/visioncube/visioncube-2/ + + + + + + heokjune1994@gmail.com + + + + + AMSAT-India APRS + 44104 + Operational + + 2019-03-04 + Satish Dhawan Space Centre (SDSC) SHAR, Sriharikota + + + Verified + 2019-03-31 + + Project description + http://amsatindia.org/ + This experimental radio payload on the fourth stage platform is an Automatic Packet Reporting System (APRS) – also called a digipeater. + + Charge utile radioamateur fixée sur le quatriéme étage de la fusée PSLV. La charge utile est un digipeater + + + IARU Coordination + + Payload have not been coordinated - APRS default frequency + La fréquence utilisée par la charge utile n'a pas été coordonnée - Utilisation de la fréquence APRS par défaut + + + + APRS + + 1458250000 + + + 1458250000 + + AFSK 1200 + + + + + + + + + + + + + + + + + Aalto-2 (FI01) + 42729 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=362 + Timo Nikkanen OH2EGZ + 2013-11-13 + 2015-06-18 + timo.nikkanen@gmail.com.nospam + + INIT + 2019-08-07 + + + Beacon + 437.335 + + GFSK + 9600 bps + + AALTO2 + + + + + 3CAT1 + 43781 + No operational + + India + + + Verified + 2018-11-27 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=370 + 3CAT1 Hello World has been coordinated by IARU + 3CAT1 Hello World a été coordonné par l'IARU + + + + Telemetry 1 + 437250000 + + FSK + 9k6 + + + CW + + + + + + + + + + + + + + + + + + + + AAUSAT-4 + 41460 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 + Jens Frederick Dalsgaard OZ2JDN + 2014-01-24 + 2014-07-14 + jdn@es.aau.dk.nospam + + VERIFIED + 2019-08-07 + + Mission description + http://www.space.aau.dk/aausat4/ + + + + + Beacon + 437425000 + + GFSK + 2400 + + + GFSK + 9600 + + + GFSK + 19200 + + + CW + + + OZ4CUB + + + + + AISTECHSAT-2 + 43768 + Operational + Draft + 2019-08-07 + + + Beacon + 436730000 + + GMSK + 4800 + + + GMSK + 49600 + + + + + + + Al-Farabi-2 + 43805 + Operational + Draft + 2019-08-07 + + + Beacon + 436500000 + + GMSK + 4800bps + + + CW + + + UN1GWA + + + + + CADRE + 41475 + Decayed + Draft + 2019-08-07 + + + Beacon + 437485000 + + GMSK 1Mbit OQPSK + 9600bps + + + + + Beacon + 3404000000 + + OQPSK + 1Mbit + + + + + + + DeorbitSail + 40719 + No operational + Drfat + 2019-08-07 + + + Beacon + 145975000 + + BPSK + 1200bps + + DOS + + + + + FO-12 (JAS-1) + 16909 + No operational + FO-12 + Draft + 2019-08-07 + + + Beacon + 435795000 + + CW + + + + + + + + Fox-1B (RadFxSat AO-91) + 43017 + Operational + Draft + 2019-08-07 + + + Beacon + 145960000 + + DUV + 200 Bps + + + + + FM voice repeater mode 1 + + 435250000 + + + 145960000 + + FM + 67 + + + + + KAZSCISAT-1 + 43787 + Operational + Draft + 2019-08-07 + + + Beacon + 435500000 + + GMSK + 9600bps + + + + + + + MakerSat-0 + 43016 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + NO-83 (BRICsat) + 40655 + No operational + AO-83 + INIT + 2019-08-07 + + + Beacon + 437975000 + + FSK PSK31 + 9600 bps + + BRCSAT + + + PSK31 + + 28120000 + + + 435350000 + + APRS 1200 bauds + + + + + Nodes-1 + 41478 + Decayed + INIT + 2019-08-07 + + + Beacon + 437100000 + + AFSK + 1200 + + KE6QLL + + + + + Nodes-2 + 41477 + No operational + INIT + 2019-08-07 + + + Beacon + 437100000 + + AFSK + 1200 + + KE6QLL + + + + + PW-Sat 2 + 43814 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-12-28 + + Project Site + https://pw-sat.pl/en/home-page/ + PW-Sat2 is a student satellite project started in 2013 at Warsaw University of Technology by the Students Space Association members. Its main technical goal is to test new deorbit technology in form of a large deorbit sail whereas the project purpose is to educate a group of new space engineers + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=545 + PW-Sat 2 has been coordinated by IARU + PW-Sat 2 a été coordonné par l'IARU + + + + Telemetry 1 + 435275000 + + BPSK + 9600 + + + BPSK + 1200 + + + + + + + Ham radio information + https://pw-sat.pl/en/information-for-radio-amateurs/ + + + + + + + https://radio.pw-sat.pl/communication/desktopsoftware + + + + RS-2 (Radio Sputnik 2) + 11086 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-1 (Radio Sputnik 1) + 11085 + No operational + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + RS-19 (Sputnik 99) + 25685 + Decayed + INIT + 2019-08-07 + + + Beacon + 145815000 + + CW + + + + + + + + RS-39 (Chibis-M) + 38051 + No operational + INIT + 2019-08-07 + + + Beacon + 435315000 + + CW + + + + + + Beacon + 435215000 + + CW + + + + + + + + RS-40 (Yubileyny-2 MiR) + 38735 + No operational + INIT + 2019-08-07 + + + Beacon + 435365000 + + CW + + + + + + + + RS-46 (COSMOS-2491) + 39497 + No operational + INIT + 2019-08-07 + + + Beacon + 435465000 + + CW + + + + + + Beacon + 435565000 + + CW + + + + + + + + RS-14 (Informator-1) + 21087 + No operational + INIT + 2019-08-07 + + + Beacon + 145822000 + + CW + + + + + + Beacon + 145948000 + + CW + + + + + + + + RS-17 (Sputnik 40) + 24958 + Decayed + INIT + 2019-08-07 + + + Beacon + 145820000 + + CW + + + + + + + + RS-10 (COSMOS 1861) + 18129 + No operational + Draft + 2019-08-07 + + + Beacon + 29357000 + + CW + + + + + + Beacon + 29403000 + + CW + + + + + + + + ALSat-1N + 41789 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=485 + Djamel Eddine Baba Hamed 7X4TS + 2015-11-06 + 2016-01-11 + debabahamed@cds.asal.dz.nospam + + Draft + 2019-08-07 + + + Beacon + 437650000 + + FSK9k6 + 9600 bps + + AL1N + + + + + 1KUNS-PF + 43466 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=559 + 5Z4HL Heywood Ouma + 2017-06-03 + 2017-06-23 + houma@ieee.org.nospam + + Draft + 2019-08-07 + + Information page + https://1kuns-pf.ns0.it/ + + + + Beacon + 437300000 + + GMSK + 9600 + + + GMSK + 1200 + + + GMSK + 2400 + + + GMSK + 4800 + + + + + + + 3CAT-2 + 41732 + No operational + + true + coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=371 + Vicente J. Gomez Oviedo EA3GP + 2014-01-23 + 2014-06-09 + vjgomez@tsc.upc.edu.nospam + + Draft + 2019-08-07 + + + Beacon + 24010000000 + + BPSK + 1000000 + + + + + Beacon + 145970000 + + BPSK + 9600 + + + + + + + ISX (CP-11) + 43856 + No operational + INIT + 2019-08-07 + + + Beacon + 437150000 + + FSK + 9600 bps + + + CW + 0 + + + + + + + AISTECHSAT-3 + 44103 + Operational + Draft + 2019-08-07 + + + Beacon + 436730000 + + GFSK + 9600 + + + GFSK + 4800 + + + + + + + SaudiSat-4 + 40016 + No operational + INIT + 2019-08-07 + + + Beacon + + + Ka-band SSB + 0 + + + + + + + ANUSAT + 34808 + Decayed + Draft + 2019-08-07 + + + Beacon + 137400000 + + AFSK + 1200 bps + + + + + + + INS-1C + 43116 + No operational + Draft + 2019-08-07 + + + Beacon + 435080000 + + FSK + 1200 bps + + INDUSR-10 + + + + + Kaidun-1 + 41915 + Operational + Draft + 2019-08-07 + + + Beacon + 437600000 + + G3RUH BPSK + 1200 bps + + AXNWPU-4 + + + + + LQSat + 40958 + No operational + Draft + 2019-08-07 + + + Beacon 1 + 437650000 + + 4k8 MSK + 4800 Bps + + + CW + 0 + + + + + Beacon + + MSK4k8 + 0 + + + + + Beacon + 2404035000 + + QPSK + 1Mbps + + + + + + + M6P + 44109 + Operational + Draft + 2019-08-07 + + + Beacon + 437265000 + + FSK + 9600 bps + + LY0LS + + + + + X-CubeSat (FR01) + 42707 + Decayed + Draft + 2019-08-07 + + + Beacon + 437020000 + + GMSK + 9600 + + + AFSK1k2 + 1200 + + ON01FR + + + + + RS-16 (Mozhayets-2) + 24744 + Decayed + Draft + 2019-08-07 + + + Beacon + 435510000 + + CW + 0 + + + + + + + STMSat-1 + 41476 + No operational + Draft + 2019-08-07 + + + Beacon + 437800000 + + SSTV + 0 + + + GMSK + 9600 bps + + + + + + + SamSat-218D + 41466 + No operational + Draft + 2019-08-07 + + + Beacon + 145870000 + + CW + 0 + + SAMSAT-218D + + + + + NuSat-1 (LO-87) + 41557 + Operational + LO-87 + Draft + 2019-08-07 + + + Beacon 1 + 145900000 + + SSB CW + 0 + + + + + Beacon 2 + 436445000 + + FSK + 19200 + + + + + Repeater + + 436935000 + 436965000 + + + 145935000 + 145965000 + + Linear + + + + + AAUSAT-5 + 40948 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 + Jens Frederick Dalsgaard OZ2JDN + 2014-02-01 + 2014-05-04 + jdn@es.aau.dk.nospam + + INIT + 2019-08-07 + + Mission description + http://www.space.aau.dk/aausat5/ + + + + + Beacon + 437425000 + + GMSK9k6 + 9600 bps + + + + + + + HA-1 (Zhou Enlai Huai'An-1) + 43156 + Operational + INIT + 2019-08-07 + + CITATION NEEDED - https://xkcd.com/285/ + + + + + + Beacon + 437350000 + + BPSK + 9600bps + + BI4ST + + + Beacon + 437644000 + + BPSK + 9600bps + + BI4ST + + + Repeater + + 145930000 + + + 436950000 + + FM + + + + + SOMP-2 (DE02) + 42700 + Decayed + Draft + 2019-08-07 + + + Beacon + 437405000 + + GMSK + 9600 bps + + + CW + 0 + + ON02TR + + + + + Hoopoe (IL01) + 42718 + Decayed + Draft + 2019-08-07 + + + Beacon + 437740000 + + BPSK + 9600 bps + + ON01IL + + + + + IceCube + 42705 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + i-INSPIRE II (AU03) + 42731 + Decayed + INIT + 2019-08-07 + + + + + GMSK + 4800 bps + + ON03AU + + + + + InflateSail (GB06) + 42770 + Decayed + Draft + 2019-08-07 + + + Beacon + 436060000 + + BPSK + 1200bps + + ON06GB + + + + + D-Star ONE iSat + 43879 + Operational + Draft + 2019-08-07 + + + Beacon + 435700000 + + GMSK + 4800 + + + GMSK4k8 + 9600 + + DP2GOS + + + Repeater + + 437325000 + + + 435525000 + + FM + + + + + Delphini-1 + 44030 + Operational + Draft + 2019-08-07 + + + Beacon + + + 1k2/4k8/9k6* GMSK + 0 + + + + + Beacon + 437500000 + + GMSK + 1200 Bps + + + GMSK + 4800 Bps + + + GMSK + 9600 Bps + + + + + + + CXBN-2 + 42704 + Decayed + Draft + 2019-08-07 + + + Beacon + 437525000 + + FSK + 9600 bps + + + + + + + CSUNSat1 + 42715 + Decayed + Draft + 2019-08-07 + + + Beacon + 437400000 + + CW + 0 + + + GMSK + 9600 bps + + CSUNSAT1 + + + + + Columbia (US04) + 42702 + No operational + Draft + 2019-08-07 + + + Beacon + 437055000 + + GMSK + 9600 bps + + KD8CJT + + + + + Challenger (US01) + 42721 + Decayed + Draft + 2019-08-07 + + + Beacon + 437510000 + + GMSK + 9600 bps + + QBUS01 + + + + + Irazu + 43468 + Operational + Draft + 2019-08-07 + + + Beacon + 436500000 + + FSK + 9600bps + + TI0IRA + + + + + IO-86 (LAPAN-A2 ORARI) + 40931 + Operational + IO-86 + INIT + 2019-08-07 + + + Beacon + 437325000 + + AFSK + 1200 Bps + + YBSAT/YBOX-1 + + + Repeater + + 145825000 + + + 145825000 + + APRS + + + Repeater + + 145880000 + + + 435880000 + + FM + + + + + CAS-3E (XW-2E) + 40909 + Operational + Draft + 2019-08-07 + + + Beacon + 145910000 + + CW + 0 + + BJ1SF + + + Beacon + 145890000 + + GMSK + 9600 + + BJ1SF + + + Repeater + + 435270000 + 435290000 + + + 145915000 + 145935000 + + + + + + + CAS-4A (ZHUHAI-1 01) + 42761 + Operational + Draft + 2019-08-07 + + + Beacon 1 + 145855000 + + CW + 0 + + + GMSK + 4800bps + + BJ1SK + + + Beacon 2 + 145835000 + + CW + 0 + + + GMSK + 4800bps + + BJ1SK + + + Repeater + + 435210000 + 435230000 + + + 145860000 + 145880000 + + SSB 20_kHz bandwidth inverted + + + + + BY70-1 + 41909 + Decayed + Draft + 2019-08-07 + + + Beacon + 436200000 + + BPSK + 9600 bps + + + + + Repeater + + 145920000 + + + 436200000 + + + + + + + D-Star ONE Phoenix + 43188 + No operational + INIT + 2019-08-07 + + + Beacon + 435525000 + + D-Star Telemetry + 0 + + DP1GOS + + + + + DUTHSat (GR01) + 42724 + Decayed + Draft + 2019-08-07 + + + Beacon + 436420000 + + BPSK + 1200 bps + + SZ2DUT + + + + + ExAlta-1 (CA03) + 42734 + Decayed + Draft + 2019-08-07 + + + Beacon + 436705000 + + 4k8*/9k6/19k2 GMSK + 4800 + + + 4k8*/9k6/19k2 GMSK + 9600 + + + 4k8*/9k6/19k2 GMSK + 19200 + + ON03CA + + + + + FMN-1 (FengMaNiu-1) + 43192 + Operational + INIT + 2019-08-07 + + CITATION NEEDED - https://xkcd.com/285/ + + + + + + Beacon + 435350000 + + BPSK + 9600bps + + BUAABJ + + + Repeater + + 145945000 + + + 435350000 + + FM + + + + + Galassia + 41170 + No operational + INIT + 2019-08-07 + + + Beacon + 145800000 + + GMSK + 9600 bps + + + + + + + GEARRSat-1 + 40456 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + GOMX-3 + 40949 + Decayed + Draft + 2019-08-07 + + + Beacon + 437250000 + + GMSK + 19200 + + + GMSK + 4800 + + + + + + + CNUSail-1 + 43133 + Unknown + Draft + 2019-08-07 + + + Beacon + 437100000 + + GMSK + 9600 bps + + + + + + + Aoba-VELOX-III + 41935 + Decayed + Draft + 2019-08-07 + + + Beacon + 437375000 + + CW + 0 + + + AFSK + 1200 bps + + JG6YBW + + + + + AO-92 (Fox-1D) + 43137 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=456 + Andrew Glassbrenner KO4MA + 2015-04-01 + 2015-04-08 + ko4ma@amsat.org.nospam + + AO-92 + Draft + 2019-08-07 + + + Beacon + 145880000 + + DUV + 200 bps + + + + + Repeater + + 435350000 + + + 145880000 + + FM + + + Repeater + + 1267350000 + + + 145880000 + + FM + + + + + ANDE-2 (Castor) + 35694 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=144 + Iavan Galysh KD4HBO + 2009-01-03 + 2009-07-02 + Ivan.galysh@nrl.navy.mil.nospam + + Draft + 2019-08-07 + + + Beacon + 145825000 + + AFSK + 1200 bps + + KD4HBO-1 + + + + + Athenoxat-1 + 41168 + Operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + CW + 0 + + + GMSK + 4800 bps + + ATX1 + + + + + BEESAT-4 + 41619 + Operational + INIT + 2019-08-07 + + CITATION NEEDED - https://xkcd.com/285/ + + + + + + Beacon + 435950000 + + FM + 0 + + + GMSK + 4800 bps + + DP0BEH + + + Digipeater + + 435950000 + + + 435950000 + + + + + + + CAS-4B (ZHUHAI-1 02) + 42759 + Operational + Draft + 2019-08-07 + + + Beacon + 145910000 + + CW + 0 + + + GMSK + 4800 bps + + BJ1SL + + + Beacon + 145890000 + + FSK + 4800 + + + + + Repeater + + 435270000 + 435290000 + + + 145915000 + 145935000 + + SSB 20_kHz bandwidth inverted + + + + + Astrocast-0.2 + 44083 + Operational + INIT + 2019-08-07 + + project information + https://www.astrocast.com/ + + + + + Beacon + 437175000 + + FSK + 1200 bps + + HB9GSF + + + Beacon + 2406000000 + + FM + 0 + + + + + + + BIROS + 41604 + No operational + Draft + 2019-08-07 + + + Beacon + 437525000 + + GMSK + 4800 bps + + + + + + + RS-23 (Tatyana) + 28523 + No operational + Draft + 2019-08-07 + + + Beacon + 435215000 + + CW + 0 + + + + + Beacon + 435315000 + + CW + 0 + + + + + + + Sathyabamasat + 41600 + No operational + INIT + 2019-08-07 + + + Beacon + 145980000 + + CW + 0 + + + BPSK CW + 2400 bps + + SNSAT + + + + + STEP Cube Lab (STEP-1) + 43138 + Operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + FSK + 9600 bps + + + CW + 0 + + + + + + + ITF-2 (TO-89) + 41932 + Decayed + TO-89 + Draft + 2019-08-07 + + + Beacon + 437525000 + + FM CW + 1200 bps + + + CW + 0 + + JQ1ZTK + + + + + Juvenile-1F(Shaonian-Xing) + 43199 + Operational + INIT + 2019-08-07 + + + Beacon + 436370000 + + BPSK + 9600 bps + + MXSAT-1 + + + + + KAITUO-1B (CAS-3G DCBB) + 40912 + Operational + Draft + 2019-08-07 + + + Beacon + 437950000 + + GMSK + 9600 + + BJ1SH + + + Beacon + 145475000 + + GMSK + 9600 + + BJ1SH + + + + + KALAMSAT-V2 + 43948 + Unknown + Draft + 2019-08-07 + + + Beacon + 436500000 + + + 0 + + + + + + + KAUSAT-5 + 43135 + Unknown + INIT + 2019-08-07 + + + Beacon + 437465000 + + FSK + 9600 Bps + + + + + Beacon 2 + 2413000000 + + MSK + 115200 + + + + + + + PicSat + 43132 + No operational + INIT + 2019-08-07 + + + Beacon + 435525000 + + BPSK + 1200 + + + BPSK + 9600 + + PICSAT + + + Repeater + + 145910000 + + + 435525000 + + FM + + + + + PACE + 40022 + No operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + CW + 0 + + + AFSK + 1200bps + + + + + + + QBITO (ES01) + 42728 + Decayed + INIT + 2019-08-07 + + + Beacon + 436810000 + + GFSK + 9600bps + + + + + + + KS-1Q + 41847 + No operational + Drfat + 2019-08-07 + + + Beacon + 436500000 + + GMSK + 20000 bps + + + + + + + KickSat-2 + 44046 + Decayed + Draft + 2019-08-07 + + + Beacon + 437505000 + + FSK + 1200bps + + KD2BHC + + + + + OUFTI-1 + 41458 + No operational + Draft + 2019-08-07 + + + Beacon + 145980000 + + FSK + 9600 bps + + + CW + 0 + + OUFTI-1 + + + DSTAR + + 435045000 + + + 145950000 + + DSTAR + + + + + LUME-1 + 43908 + No operational + Draft + 2019-08-07 + + + Beacon + 437060000 + + GMSK + 4800bps + + + + + + + Tianwang-1A (TW-1A SECM-1) + 40928 + Operational + INIT + 2019-08-07 + + + Beacon + 435645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + + Tianwang-1B (TW-1B NJUST-2) + 40927 + No operational + Draft + 2019-08-07 + + + Beacon + 437645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + + Tianwang-1C (TW-1C NJFA-1) + 40926 + Operational + Draft + 2019-08-07 + + + Beacon + 435645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + + Swayam COEP + 41607 + No operational + Draft + 2019-08-07 + + + Beacon + 437025000 + + CW + 0 + + + BPSK + 1200 bps + + SWAYAM + + + + + STARS-C (Daughter) + 41895 + Decayed + Draft + 2019-08-07 + + + Beacon + 437245000 + + AFSK + 1200bps + + + CW + 0 + + JJ2YPM + + + Beacon + 437405000 + + AFSK + 1200bps + + JJ2YPM + + + + + HAVELSAT (TR02) + 42701 + No operational + Draft + 2019-08-07 + + + Beacon + 436845000 + + GMSK + 9600 bps + + + + + Beacon + 436843500 + + CW + 0 + + + + + + + Pratham + 41783 + No operational + Draft + 2019-08-07 + + + Beacon + 145980000 + + AFSK + 1200bps + + + CW + 0 + + PRATHAM + + + + + Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6) + 43158 + No operational + INIT + 2019-08-07 + + + Beacon + 436100000 + + GMSK + 9600 + + + + + T1 + + 436100000 + + + 436100000 + + 9k6 GMSK + + + T2 + + 2415000000 + + + 2415000000 + + 5Mbps OFDM + + + T3 + + 5667000000 + + + 5845000000 + + 5Mbps OFDM + + + + + RASAT + 37791 + No operational + INIT + 2019-08-07 + + + Beacon + 437400000 + + FSK + 9600 bps + + RASAT0-11 -12 + + + + + RS-18 (Sputnik 41) + 25533 + Decayed + Draft + 2019-08-07 + + + Beacon + 145812000 + + CW + 0 + + + + + + + Xiaoxiang-1 (TY-1 Tianyi-1) + 41842 + Unknown + Drfaft + 2019-08-07 + + + Beacon + 2401600000 + + GMSK + 9600 bps + + + + + Beacon + 437500000 + + GMSK + 9600 bps + + + + + Beacon + 437525000 + + GMSK + 9600 bps + + + + + + + Xiaoxiang-2 (TY-2 Tianyi-2) + 43155 + Operational + Draft + 2019-08-07 + + + Beacon + 435350000 + + FSK + 9600 Bds + + + + + T1 + + 435350000 + + + 435350000 + + 9k6 GMSK + + + T2 + + 2403000000 + + + 2403000000 + + 5Mbps OFDM + + + T3 + + 5653000000 + + + 5833000000 + + 5Mbps OFDM + + + + + TSAT (TestSat-Lite) + 39682 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + UCLSat (GB03) + 42765 + No operational + Draft + 2019-08-07 + + + Beacon + 435975000 + + GMSK + 9600bps + + ON03GB + + + + + MicroMAS-1 + 40457 + Unknown + Draft + 2019-08-07 + + + Beacon + 468000000 + + OQPSK + 1.5Mbit/s + + + + + + + NIUSAT + 42766 + Operational + INIT + 2019-08-07 + + + Beacon + 436000000 + + FSK + 1200 bps + + NIUOBT + + + Beacon + 2240000000 + + + 0 + + + + + + + nSight-1 (AZ02) + 42726 + Operational + Draft + 2019-08-07 + + DK3WN information + http://www.dk3wn.info/p/?page_id=29535 + + + + + Beacon + 435900000 + + GMSK + 9600bps + + ON02AZ + + + Beacon + 2405000000 + + GMSK + 9600b ps + + ON02AZ + + + + + PO-63 (PehuenSat) + 29712 + No operational + PO-63 + Draft + 2019-08-07 + + + Beacon + 145825000 + + AFSK + 1200bps + + LU1YUC + + + + + SUSat (AU01) + 42730 + No operational + Draft + 2019-08-07 + + + Beacon + 436775000 + + FSK + 9600bps + + + + + + + SNUSAT-1b (KR03) + 42727 + Decayed + Draft + 2019-08-07 + + + Beacon + 435950000 + + BPSK + 1200bps + + ON03KR + + + + + SNUSAT-1 (KR02) + 42733 + Decayed + Draft + 2019-08-07 + + + Beacon + 436090000 + + BPSK + 1200bps + + ON02KR + + + + + PolyITAN-2-SAU (UA01) + 42732 + Decayed + Draft + 2019-08-07 + + + Beacon + 436600000 + + BPSK + 9600bps + + QBUA01 + + + + + TechEdSat-4 + 40455 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + ZA-AeroSat(AZ01) + 42713 + No operational + INIT + 2019-08-07 + + + Beacon + 437200000 + + GMSK + 9600bps + + ON01AZ + + + + + UPSat (GR02) + 42716 + No operational + Draft + 2019-08-07 + + + Beacon + 435765000 + + GMSK + 9600 Bps + + + + + + + VELOX-2 + 41171 + No operational + INIT + 2019-08-07 + + + Beacon + 145930000 + + BPSK CW + 1200bps + + + CW + 0 + + VELOX2 + + + + + LituanicaSAT-2 (LT01) + 42768 + No operational + Draft + 2019-08-07 + + + Beacon + 437265000 + + FSK + 9600bps + + LY0LS + + + + + LO-90 (LilacSat-1 CN02) + 42725 + Operational + LO-90 + Draft + 2019-08-07 + + + Beacon + 436510000 + + BPSK + 9600bps + + ON02CN + + + FM Transpondeur + + 145985000 + + + 436510000 + + FM + + + + + NJUST-1 (CN03) + 42722 + Decayed + Draft + 2019-08-07 + + + Beacon + 436570000 + + BPSK + 1200bps + + BI4ST + + + + + PHOENIX (TW01) + 42706 + Decayed + Draft + 2019-08-07 + + + Beacon + 436915000 + + GMSK + 9600bps + + ON01TW + + + + + QBEE (SE01) + 42708 + Decayed + Draft + 2019-08-07 + + + Beacon + 435800000 + + GFSK + 9600bps + + ON01SE + + + + + SGSat + 42703 + Unknown + Draft + 2019-08-07 + + + Beacon + 437450000 + + FSK + 9600bps + + + + + + + SpaceCube (FR05) + 42717 + Decayed + INIT + 2019-08-07 + + + Beacon + 436880000 + + 1200bps AFSK FM + 0 + + ON05FR + + + FM voice repeater + + 436880000 + + + 145860000 + + FM + + + + + TuPOD + 41936 + Decayed + Draft + 2019-08-07 + + + Beacon + 437425000 + + GMSK CW + 1200bps + + + CW + + + TUPOD + + + + + UNSW-EC0 (AU02) + 42723 + Decayed + Draft + 2019-08-07 + + + Beacon + 436530000 + + 4800bps GMSK + 0 + + ON02AU + + + Beacon + 2400500000 + + + 0 + + + + + + + MO-30 (UNAMSAT-B) + 24305 + No operational + MO-30 + Draft + 2019-08-07 + + + Beacon + 435138000 + + BPSK + 1200bps + + + + + + + LO-93 (DSLWP-A1) + 43471 + No operational + LO-93 + Draft + 2019-08-07 + + + Beacon + 436425000 + + 500/250bps GMSK + 0 + + BJ1SM + + + Beacon + 435425000 + + 500/250bps GMSK + 0 + + BJ1SM + + + Beacon + 2222810000 + + 500/250bps GMSK + 0 + + BJ1SM + + + + + LO-94 (DSLWP-A2) + 43472 + Operational + LO-94 + INIT + 2019-08-07 + + + Beacon + 436400000 + + 500/250bps GMSK + 0 + + BJ1SN + + + Beacon + 435400000 + + 500/250bps GMSK + 0 + + BJ1SN + + + Beacon + 2275220000 + + 500/250bps GMSK + 0 + + BJ1SN + + + + + LilacSat-2 (CAS-3H) + 40908 + Operational + Draft + 2019-08-07 + + + Beacon + 437200000 + + 1k2/4k8*/9k6 AFSK/GFSK + 0 + + BJ1SI + + + Repeater + + 144350000 + + + 437250000 + + + + + Repeater + + 144390000 + + + 144390000 + + + + + + + MYSAT-1 + 44045 + Operational + Draft + 2019-08-07 + + + Beacon + 435775000 + + BPSK + 1200 + + + BPSK + 4800 + + + BPSK + 9600 + + A68MY + + + + + NUDT-PhoneSat (CAS-3I) + 40900 + No operational + INIT + 2019-08-07 + + + Beacon + 437300000 + + GFSK + 96000 + + BJ1SJ + + + + + UBAKUSAT + 43467 + No operational + Draft + 2019-08-07 + + + Beacon + 437225000 + + CW + 0 + + YM1RAS + + + Beacon + 437325000 + + GMSK + 9600bps + + YM1RAS + + + Repeater + + 145935000 + 145960000 + + + 435200000 + 435250000 + + SSB linear + + + + + UbatubaSat (Tancredo-1) + 41931 + No operational + Draft + 2019-08-07 + + + Beacon + 437200000 + + AFSK + 1200 Bps + + + CW + 0 + + PY0ETA + + + + + UO-15 (UoSAT-4) + 20438 + Decayed + UO-15 + Draft + 2019-08-07 + + + Beacon + 435120000 + + CW + 0 + + + + + + + WASEDA-SAT3 + 41933 + No operational + Draft + 2019-08-07 + + + Beacon + 437290000 + + CW + 0 + + + FSK + 1200 Bps + + + + + + + XW-2F (CAS-3F) + 40910 + Operational + INIT + 2019-08-07 + + + Beacon + 145975000 + + CW + 0 + + BJ1SG + + + Beacon + 145955000 + + GMSK + 9600 bps + + BJ1SG + + + Repeater + + 435330000 + 435350000 + + + 145980000 + 146000000 + + + + + + + LINK (KR01) + 42714 + No operational + Draft + 2019-08-07 + + + Beacon + 436030000 + + BPSK + 1200bps + + D80LW + + + + + RANGE-A + 43772 + No operational + Draft + 2019-08-07 + + + Beacon + 437150000 + + 0.1kbps-115.2kbps FSK/MSK/GFSK/GMSK + 0 + + + + + + + AO-24 (ARSENE) + 22654 + No operational + AO-24 + Draft + 2019-08-07 + + + Beacon + 2446540000 + + AFSK + 1200bps + + + + + Beacon + 145975000 + + AFSK + 1200bps + + + + + + + NuSat-2 + 41558 + Operational + INIT + 2019-08-07 + + + Beacon + 145900000 + + SSB CW + 0 + + + + + + + EntrySat + 44429 + Not Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=334 + Nicolas Nolhier F5MDY + 2013-10-15 + 2015-01-08 + nolhier@laas.fr.nospam + + + 2019-07-03 + ISS + + + Verified + 2019-06-26 + + Mission description + https://www.csut.eu/en/project/entrysat/ + The objective of the mission, to study the atmospheric re-entry of debris, is well described, the scientific requirements and the system requirements are fully specified. However, given the short duration of analysis of atmospheric re-entry phenomena, this mission is ambitious and requires additional technical studies to show its full feasibility. +The mission analysis is to consolidate, when information about the orbit and the launcher will be well known. + + + + Mission description + https://websites.isae-supaero.fr/entrysat/ + + + + + Telemetry 1 + 436950000 + + BPSK + 9k6 + + ON02FR + + + + + EntrySat reception + https://www.csut.eu/en/recevoir-entrysat/ + + + AMSAT-F : Kaitai file Description (*.ksy) + https://code.electrolab.fr/xtof/telemetrydescription/tree/master/EntrySat + + + SatNogGS: Kaitai file Description (*.ksy) + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/entrysat.ksy + + + + + + + http://site.amsat-f.org/entrysat/ + + + + Taurus-1 (Jinniuzuo-1) + 44530 + Operational + + 2013-09-12 + Taiyuan Satellite Launch Center, Chine + + + Draft + 2019-09-14 + + Digital FM to Codec 2 transpondeur + https://www.amsat.org/wordpress/wp-content/uploads/2019/03/N8HM_LilacSat_LO-90.pdf + + + + + Beacon + 435840000 + + + + + + + + FM to Codec-2 + + 145820000 + + + 436760000 + + FM to Codec-2 + 67 + + + + + + + + + + + + + + + + + Orbital Factory 2 (OF-2) + 0 + To Be Launch + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + IARU information + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=685 + + + + + Beacon + 435040000 + + GMSK + 9600 + + + + + Beacon + 2426000000 + + QPSK + 3-5 Mbps + + + + + + + + + + + + + + + + + + + SwampSat II + 0 + To Be Launch + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=677 + Jay Garlitz AA4FL + 2019-06-26 + 2019-09-09 + jgarlitz@ufl.edu.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + Large Square-Loop Antenna Deployment from CubeSats + http://digitalcommons.usu.edu/cgi/viewcontent.cgi?article=3510 + + + + + Beacon + 145875000 + + GMSK + 9600 + + + + + Beacon + 436350000 + + GMSK + 9600 + + + + + Beacon + 2432000000 + + QPSK + 3 Mbps + + + + + + + + + + + + + + + + + + + Argus-2 + 0 + To Be Launch + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + IARU information + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=682 + + + + + Beacon + 437290000 + + GMSK + 9600 + + + + + + + + + + + + + + + + + + + RadSat-u + 0 + To Be Launch + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=551 + Larry Springer expérimental + 2017-03-08 + 2017-04-26 + Larry.springer@msu.edu.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + RadSat-U publication + https://scholarworks.montana.edu/xmlui/handle/1/12916 + Les chercheurs de MSU travaillent depuis huit ans sur un système informatique tolérant aux rayonnements ionisants pour les applications spatiales. Afin de quantifier la quantité de rayonnement ressentie par l'ordinateur, l'équipe RadSat-U développe un capteur de rayonnement photo-voltaïque. RadSat-U, un satellite 3U conçu pour transporter l'ordinateur tolérant aux radiations dans l'espace, est la plate-forme de test idéale. L'expérience consiste en une cellule solaire entièrement intégrée et un circuit de conditionnement de signaux conçus pour s'adapter à RadSat-U. RadSat-U transportera ensuite à la fois l'ordinateur tolérant aux radiations et l'expérience sur les cellules solaires en orbite où l'environnement de rayonnement spatial testera les limites des deux systèmes. Un test à grande échelle élèvera cette nouvelle technologie au plus haut niveau de la NASA pour les technologies émergentes, ce qui lui permettra d'être utilisé dans de futures missions. + + + An FPGA-based Radiation Tolerant SmallSat Computer System + http://www.montana.edu/blameres/vitae/publications/d_conference_full/conf_full_033_fpga_based_smallsat_computer.pdf + + + + + Beacon + 437425000 + + GMSK + 19200 + + + + + + + + + + + + + + + + + + + ATL 1 (MO-106) + 44830 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=640 + Levente Dudas HA7WEN + 2018-08-13 + 2018-11-19 + dudas@hvt.bme.hu.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + Magyar-OSCAR 106 (MO-106) + Verified + 2019-11-26 + + Project information + http://gnd.bme.hu + + + + + + Beacon + 437175000 + + GMSK + 12500 + + + + + + + TRSI-Sat + 0 + Launch + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + INIT + 2019-11-26 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=649 + + + + + + Beacon (IARU) Deprecated + 437150000 + + GMSK + 12500 + + + CW + 12500 + + + + + Beacon (IARU) Deprecated + 437075000 + + GMSK + 12500 + + + CW + 12500 + + + + + + + TRSI Sat telemetry information Center frequency: 437.075 MHz + http://www.kocyla.de/spaceblog/?page_id=292 + + + + + + radio@satrevolution.com + https://github.com/daniestevez/gr-satellites. + + + + SMOG-P (MO-105) + 44832 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=641 + Levente Dudas HA7WEN + 2018-08-13 + 2018-11-19 + dudas@hvt.bme.hu.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + Magyar-OSCAR 105 (MO-105) + Verified + 2019-11-26 + + Project information + http://gnd.bme.hu + + + + + + Beacon + 437150000 + + GMSK + 12500 + + + + + + + FossaSat-1 + 44829 + Launch + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=652 + Julian Ismael Fernandez Barcellona EA4HCD + 2018-10-29 + 2019-05-27 + julian.ismael.fernandez@gmail.com.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + INIT + 2019-11-26 + + The FossaSat-1 Pocketqube + https://fossa.systems/fossasat-1/ + + + + + + Beacon + 436700000 + + LORA + : Bandwidth 125 kHz , Spreading factor 11 , Coding rate 4/8 , Sync word 0x0F0F + + + RTTY + Frequency shift 182 Hz, Baudrate 45 baud , Encoding ITA2 (5-bit, aka “Baudot code”), Single stop bit, no parity + + + + + + + To use and decode the FossaSat-1 Satellite, please consult our ground station database and instructional guides. + http://groundstationdatabase.com/index.php + + + + + + + + + + + FloripaSat-1 + 44885 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 + Mauricio Sinigaglia PP5BMS + 2018-09-27 + 2018-10-23 + mauricio.sinigaglia@gmail.com.nospam + + + 2019-12-20 + CZ-4B launch vehicle from Taiyuan Satellite Launch Center + + INIT + 2019-12-19 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 + + + + + FloripaSat-1 web site + https://floripasat.ufsc.br/ + + + + + + VHF Beacon + 145900000 + + GFSK + 1200 + + + + + UHF Beacon + 436100000 + + GFSK + 2400 + + + + + Repeater + + 436100000 + + + 436100000 + + GFSK -2400 + + + + + INFORMATION FOR COMMUNICATING WITH FLORIPASAT-1 + https://floripasat.ufsc.br/communication-info/ + + + + + + + https://github.com/floripasat/grs/releases + + + + OPS-Sat + 44878 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=478 + Allesandro Donati DJ0MDO + 2015-07-15 + 2015-10-04 + alessandro.donati@esa.int.nospam + + + 2019-12-18 + Kourou, French Guiana + + Verified + 2019-12-23 + + Calling radio amateurs: help find OPS-SAT! + http://www.esa.int/Enabling_Support/Operations/Calling_radio_amateurs_help_find_OPS-SAT + + + + + OPS-SAT: your flying laboratory! + http://www.esa.int/Enabling_Support/Operations/OPS-SAT_your_flying_laboratory + + + + + + Beacon + 437200000 + + GMSK + 9600 + + + + + + + OPS-SAT UHF Handbook + https://github.com/esa/gr-opssat/blob/master/docs/os-uhf-specs.pdf + + + OPS-SAT UHF beacon reception report + https://docs.google.com/forms/d/e/1FAIpQLSfkHF_wN2IxBb2WNYm6RuA_iT6qJH4Hz_pA9hCbcp0AcG5TbA/viewform + + + https://github.com/esa/gr-opssat + + + + Duchifat3 + 44854 + Operationnal + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=586 + Shamai Opfer 4Z1WS and David Greenberg 4X1DG + 2017-10-17 + 2017-11-22 + 4z1ws@amsat.org.nospam and david.greenberg@bezeqint.net.nospam + + + 2019-12-11 + + + + INIT + 2019-12-19 + + + + + + + + + + Beacon + 436400000 + + PBSK + 9600 + + + + + U/V FM + + 145970000 + + + 436400000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + CAMSAT CAS-6 + 44880 + Operationnal + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=622 + Alan Kung BA1DU + 2018-05-18 + 2018-07-19 + alankung@vip.sina.com.nospam + + + 2019-12-20 + CZ-4B launch vehicle from Taiyuan Satellite Launch + Center + + + INIT + 2019-12-19 + + Information document + https://ukamsat.files.wordpress.com/2019/12/camsat-news-release-for-cas-6-satellie.pdf + + + + + + + CW Beacon + 145910000 + + CW + + + BJ1SO + + + GMSK Beacon + 145890000 + + GMSK + 4800 + + BJ1SO + + + U/V Linear Transponder + + 435282000 + + + 145945000 + + + true + + + + + Digital telemetry format + + https://ukamsat.files.wordpress.com/2019/12/cas-6-satellites-digital-telemetry-description.pdf + + + + CW telemetry format + + https://ukamsat.files.wordpress.com/2019/12/cas-6-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + HuskySat-1 + 0 + To be Launched + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=604 + Jeffrey Chrisope KI7ORW + 2018-03-07 + 2018-04-09 + jeffchrisope@live.com.nospam + + + Wallops Flight Facility, états unis + + Draft + 2020-01-26 + + Project Information page + https://sites.google.com/uw.edu/huskysatellitelab/huskysat-1 + + + + Beacon + 435800000 + + BPSK + 1200 + + + + + Beacon Experimental + 24049000000 + + + + + + + + U/V FM + + 145910000 + 145940000 + + + 435810000 + 435840000 + + + true + + + + + FoxTLM is used for this satellite + https://www.amsat.org/tlm/leaderboard.php?id=0 + + + + + + cubesat@uw.edu + https://www.g0kla.com/foxtelem/index.php + + + + PHOENIX + 0 + To be deployed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 + QB50 and National Cheng Kung University + 2013-10-15 + 2015-04-06 + bx1ad@ctarl.org.tw.nospam + + Draft + 2020-01-14 + + Project page + http://phxcubesat.asu.edu/ + + + Frequency coordination note + + 437350000 is used instead of 436915000. This frequency is also used by Quarman satellite. THe satellite allow a ping command + + + + Beacon + 437350000 + + GMSK + 9600 + + KIOO7Y - WJ2OXY + + + Ping Mode + + 437350000 + + + 437350000 + + + + + + + Radioamateur page including beacon description + https://github.com/ASU-cubesat/phxsat-gsw-public + + + + + + + https://github.com/ASU-cubesat/phxsat-gsw-public + + + + AZTECHSAT-1 + 0 + To Be Launch + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=661 + Enrique Sanchez Lara XE1SLE + 2018-11-27 + 2019-05-19 + enrique.sanchez@upaep.mx.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + Project page + http://www.upaep.mx/aztechsat + + + + + Beacon + 437300000 + + GMSK + 9600 + + + FSK + 9600 + + + + + + + + + + + + + + + + + + + QUETZAL-1 + 0 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=653 + José Bagur TG8JAB + 2018-11-15 + 2019-07-23 + jabagur@uvg.edu.gt.nospam + + + International Space Station + + Draft + 2020-05-01 + + Project page + https://www.uvg.edu.gt/cubesat-en/ + + + Telemetry description and associated SW + https://github.com/danalvarez/gr-quetzal1 + This repository includes the UHF specifications for Quetzal-1, information on demodulating and decoding beacons from the satellite, as well as a graphical application to view beacon data. + + + + + Beacon + 437200000 + + GMSK + 4800 + + + + + + + beacon description + https://github.com/danalvarez/gr-quetzal1/blob/master/docs/Beacon_Package_Data.xlsx + + + + + + satelite@uvg.edu.gt + https://github.com/danalvarez/gr-quetzal1 + + + + DOSAAF-85 (RS-44) + 44909 + Operational + + false + + + 2019-12-26 + Plesetsk Cosmodrome + + Draft + 2020-05-01 + + satellite information + https://r4uab.ru/2020/04/30/na-sputnike-dosaaf-85-rs-44-dlya-testirovaniya-byl-vklyuchen-radiolyubitelskij-retranslyator/ + + + + Beacon + 435605000 + + CW + RS44 + + + + + Transpondeur + + 145935000 + 145995000 + + + 435610000 + 435670000 + + SSB/CW + yes + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AAUSAT-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AAUSAT-4.xml new file mode 100644 index 00000000..cddab530 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AAUSAT-4.xml @@ -0,0 +1,33 @@ + + + + AAUSAT-4 + Operational + 41460 + 2019-08-07 + INIT + + + Beacon + 437425000 + + GFSK + 2400 + + + GFSK + 9600 + + + GFSK + 19200 + + + CW + + + OZ4CUB + + + + \ No newline at end of file diff --git a/ModuleSatelliteDatabase/src/test/data/in/ACRUX-1.xml b/ModuleSatelliteDatabase/src/test/data/in/ACRUX-1.xml new file mode 100644 index 00000000..112c2d56 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/ACRUX-1.xml @@ -0,0 +1,43 @@ + + + + ACRUX-1 + Operational + 44369 + 2019-08-07 + + 2019-06-29 + + + draft + + ACRUX-1 + https://melbournespace.com.au/projects/ + + + + + Beacon + 437200000 + + GMSK + 9600bps + + CQCQCQ + + + + + + <Value/> + </DescriptionURL> + <ReportURL> + <Title/> + <Value/> + </ReportURL> + <ReportEmail/> + <SoftwareURL/> + <Description/> + </TelemetryData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ModuleSatelliteDatabase/src/test/data/in/AISTECHSAT-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AISTECHSAT-2.xml new file mode 100644 index 00000000..b7e18346 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AISTECHSAT-2.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>AISTECHSAT-2</Name> + <Status>Operational</Status> + <NasaID>43768</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>Draft</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>436730000 </Frequency> + + <Modes> + <Mode> GMSK </Mode> + <Speed>4800 </Speed> + </Modes> + <Modes> + <Mode> GMSK </Mode> + <Speed>49600</Speed> + </Modes> + <CallSign/> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ModuleSatelliteDatabase/src/test/data/in/Aalto-1.xml b/ModuleSatelliteDatabase/src/test/data/in/Aalto-1.xml new file mode 100644 index 00000000..9c406374 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/Aalto-1.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>Aalto-1</Name> + <Status>Operational</Status> + <NasaID>42775</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>INIT</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>437220000 </Frequency> + <Modes> + <Mode>FSK CW </Mode> + <Speed>9600bps</Speed> + </Modes> + <Modes> + <Mode> CW </Mode> + <Speed> </Speed> + </Modes> + <CallSign>OH2A1S</CallSign> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ModuleSatelliteDatabase/src/test/data/in/Aalto-2 (FI01).xml b/ModuleSatelliteDatabase/src/test/data/in/Aalto-2 (FI01).xml new file mode 100644 index 00000000..f6348ec7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/Aalto-2 (FI01).xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>Aalto-2 (FI01)</Name> + <Status>Decayed</Status> + <NasaID>42729</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>INIT</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>437.335</Frequency> + <Modes> + <Mode> GFSK </Mode> + <Speed>9600 bps</Speed> + </Modes> + <CallSign>AALTO2</CallSign> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ModuleSatelliteDatabase/src/test/data/in/Al-Farabi-2.xml b/ModuleSatelliteDatabase/src/test/data/in/Al-Farabi-2.xml new file mode 100644 index 00000000..7bee14a8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/Al-Farabi-2.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>Al-Farabi-2</Name> + <Status>Operational</Status> + <NasaID>43805</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>Draft</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>436500000 </Frequency> + <Modes> + <Mode> GMSK </Mode> + <Speed>4800bps </Speed> + </Modes> + <Modes> + <Mode>CW </Mode> + <Speed/> + </Modes> + <CallSign>UN1GWA</CallSign> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file diff --git a/ModuleSatelliteDatabase/src/test/data/in/AmurSat (AmGU-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AmurSat (AmGU-1).xml new file mode 100644 index 00000000..97704389 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AmurSat (AmGU-1).xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>AmurSat (AmGU-1)</Name> + <Status>Operational</Status> + <NasaID>44394</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>Draft</SatelliteInformationStatus> + <Information> + <Title>IARU coordination Declined + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + + + + Beacon + 436250000 + + mobitex + 4800bps + + + + + + \ No newline at end of file diff --git a/ModuleSatelliteDatabase/src/test/data/in/AoXiang-1 (CN04).xml b/ModuleSatelliteDatabase/src/test/data/in/AoXiang-1 (CN04).xml new file mode 100644 index 00000000..8f032330 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AoXiang-1 (CN04).xml @@ -0,0 +1,39 @@ + + + + AoXiang-1 (CN04) + Decayed + 42735 + 2019-08-07 + Draft + + + Beacon + 2401600000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437525000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437500000 + + BPSK + 9600 bps + + NPUAX1 + + + + \ No newline at end of file diff --git a/ModuleSatelliteDatabase/src/test/data/in/Aoba-Velox-4.xml b/ModuleSatelliteDatabase/src/test/data/in/Aoba-Velox-4.xml new file mode 100644 index 00000000..9474b7dc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/Aoba-Velox-4.xml @@ -0,0 +1,67 @@ + + + Aoba-Velox 4 + Not operational + 43940 + + Draft + 2019-08-05 + 2019-003J + + 2019-01-19 + Verified + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=499 + + + + + + + AOBA VELOX-IV site + http://www.eee.ntu.edu.sg/research/SaRC/Research/Projects/Pages/AOBA-VELOX-IV.aspx + + + + + + + + + Telemetry 1 + 437225000 + + GMSK + 9600 + + + + + + + + + + + + + + + + + + + av4mail@googlegroups.com + + + + + \ No newline at end of file diff --git a/ModuleSatelliteDatabase/src/test/data/in/Armadillo.xml b/ModuleSatelliteDatabase/src/test/data/in/Armadillo.xml new file mode 100644 index 00000000..d32b04b2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/Armadillo.xml @@ -0,0 +1,52 @@ + + + + Armadillo + Operational + 44352 + 2019-08-07 + Draft + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=237 + + + + Project information + https://www.facebook.com/UTSatLab/app/208195102528120/?ref=page_internal + + + + + Beacon + 437525000 + + GMSK + 19200 bps + + + GMSK + 38400 bps + + + CW + + + KE5DTW + + + + + SATNOGS : Kaitai Struct for telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/armadillo.ksy + + + + <Value/> + </ReportURL> + <ReportEmail/> + <SoftwareURL/> + <Description/> + </TelemetryData> + </Satellites> +</AmsatList> diff --git a/ModuleSatelliteDatabase/src/test/data/in/Atlantis (US02).xml b/ModuleSatelliteDatabase/src/test/data/in/Atlantis (US02).xml new file mode 100644 index 00000000..33bcf6cd --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/Atlantis (US02).xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<AmsatList> + <Satellites> + <Name>Atlantis (US02)</Name> + <Status>Decayed</Status> + <NasaID>42737</NasaID> + <UpdateDate>2019-08-07</UpdateDate> + <SatelliteInformationStatus>INIT</SatelliteInformationStatus> + <RadioData> + <Beacons> + <Name> Beacon </Name> + <Frequency>436390000 </Frequency> + + <Modes> + <Mode> GMSK </Mode> + <Speed>9600bps </Speed> + </Modes> + <CallSign>WD8DOX</CallSign> + </Beacons> + </RadioData> + </Satellites> +</AmsatList> \ No newline at end of file -- GitLab From cbec5f02e0fc234cf72d0e8959c14168b8ea5c0a Mon Sep 17 00:00:00 2001 From: xtophe <christophe.mcr@gmail.com> Date: Sat, 9 May 2020 16:07:45 +0200 Subject: [PATCH 04/10] Style: Checkstyle correction --- .../AppCli.java | 81 ++--- .../cmd/CheckCmd.java | 46 +-- .../cmd/Cmd.java | 12 +- .../cmd/HelpCmd.java | 21 +- .../cmd/MergeCmd.java | 27 +- .../cmd/OptionsAnalysis.java | 322 +++++++++--------- .../cmd/ParameterSingleton.java | 209 +++++++----- .../cmd/UpdateCmd.java | 95 +++--- .../cmd/VersionCmd.java | 7 +- .../cmd/CheckCmdTest.java | 51 ++- .../AmsatListFile.java | 168 ++++----- .../CheckAmsatListFile.java | 196 +++++------ .../MergeAmsatListFile.java | 290 ++++++++-------- .../UpdateAmsatListFile.java | 162 ++++----- pom.xml | 2 + 15 files changed, 875 insertions(+), 814 deletions(-) diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/AppCli.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/AppCli.java index f5761586..e1135ae3 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/AppCli.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/AppCli.java @@ -1,56 +1,59 @@ package org.josast.ApplicationSatelliteDatabaseCli; - - import java.util.Vector; - import org.apache.commons.cli.ParseException; import org.josast.ApplicationSatelliteDatabaseCli.cmd.Cmd; import org.josast.ApplicationSatelliteDatabaseCli.cmd.OptionsAnalysis; - /** - * Classe Java for mergin AMSAT-LIST Xml file - * - * Concept : read all files from a directory add this file data in memory save - * all data in one file - * - * @author chris + * Classe Java for mergin AMSAT-LIST Xml file. + * Concept : read all files from a directory add this file data in memory save all data in one file. + * @author Christophe * */ +/** + * @author christophe + * + */ public class AppCli { - Vector<Cmd> vec =null; - - - public AppCli(String[] args) - { - OptionsAnalysis opt=new OptionsAnalysis(args); - vec = opt.getCommandes(); - - } - - private void execute() { - for(Cmd cmd : vec){ - cmd.excute(); - } - - } - - - public static void main(String[] args) throws ParseException { - - - AppCli app = new AppCli(args); - app.execute(); - - - } - - - + /** + * vec list of command. + */ + private Vector<Cmd> vec = null; + + /** + * Initialise analysis of option. + * @param args + */ + public AppCli(final String[] args) { + OptionsAnalysis opt = new OptionsAnalysis(args); + vec = opt.getCommandes(); + + } + + /** + * launch all commande store in vec. + */ + private void execute() { + for (Cmd cmd : vec) { + cmd.excute(); + } + + } + + /** + * @param args + * @throws ParseException + */ + public static void main(String[] args) throws ParseException { + + AppCli app = new AppCli(args); + app.execute(); + + } } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmd.java index 5a8500c3..85935c8c 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmd.java @@ -6,26 +6,30 @@ import org.josast.ModuleSatelliteDatabase.CheckAmsatListFile; public class CheckCmd implements Cmd { - private Logger log = Logger.getLogger(getClass().getName()); - - @Override - public void excute() { - log.info(CheckCmd.class.getName()); - ParameterSingleton parameter = ParameterSingleton.getInstance(); - if(parameter.getInputFile()!=null) - { - - CheckAmsatListFile check = new CheckAmsatListFile(parameter.getInputFile()); - System.out.println("Multiple Name"); - System.out.println(check.checkUniqueSatelliteName()); - System.out.println("Multiple Nasa ID"); - System.out.println(check.checkUniqueSatelliteNasaID()); - } - else - { - System.out.println("Input filename not set"); - } - - } + /** + * logger. + */ + private Logger log = Logger.getLogger(getClass().getName()); + + /** + * + */ + @Override + public void excute() { + log.info(CheckCmd.class.getName()); + ParameterSingleton parameter = ParameterSingleton.getInstance(); + if (parameter.getInputFile() != null) { + + CheckAmsatListFile check = new CheckAmsatListFile( + parameter.getInputFile()); + System.out.println("Multiple Name"); + System.out.println(check.checkUniqueSatelliteName()); + System.out.println("Multiple Nasa ID"); + System.out.println(check.checkUniqueSatelliteNasaID()); + } else { + System.out.println("Input filename not set"); + } + + } } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/Cmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/Cmd.java index 8931ef95..3a8e9989 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/Cmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/Cmd.java @@ -1,15 +1,15 @@ package org.josast.ApplicationSatelliteDatabaseCli.cmd; /** - * Command pattern interface + * Command pattern interface. * @author chris * */ public interface Cmd { - - /** - * Excecute command - */ - void excute(); + + /** + * Excecute command. + */ + void excute(); } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/HelpCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/HelpCmd.java index 8da986c1..f26ce67b 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/HelpCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/HelpCmd.java @@ -2,14 +2,17 @@ package org.josast.ApplicationSatelliteDatabaseCli.cmd; import org.apache.commons.cli.HelpFormatter; -public class HelpCmd implements Cmd { - - @Override - public void excute() { - final HelpFormatter formatter = new HelpFormatter(); - ParameterSingleton parameter = ParameterSingleton.getInstance(); - formatter.printHelp(parameter.getArg0(), parameter.getOption(), true); - - } +public class HelpCmd implements Cmd { + + /** + * + */ + @Override + public void excute() { + final HelpFormatter formatter = new HelpFormatter(); + ParameterSingleton parameter = ParameterSingleton.getInstance(); + formatter.printHelp(parameter.getArg0(), parameter.getOption(), true); + + } } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java index 13d2cf3c..30a30c56 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java @@ -5,15 +5,22 @@ import java.util.logging.Logger; import org.josast.ModuleSatelliteDatabase.MergeAmsatListFile; public class MergeCmd implements Cmd { - private Logger log = Logger.getLogger(getClass().getName()); - @Override - public void excute() { - log.info(MergeCmd.class.getName()); - ParameterSingleton parameter = ParameterSingleton.getInstance(); - MergeAmsatListFile merge = new MergeAmsatListFile(); - merge.merge(parameter.getInputDirectory(), parameter.getOutputFile()); - merge.save(parameter.getOutputFile()); - - } + /** + * logger. + */ + private Logger log = Logger.getLogger(getClass().getName()); + + /** + * + */ + @Override + public void excute() { + log.info(MergeCmd.class.getName()); + ParameterSingleton parameter = ParameterSingleton.getInstance(); + MergeAmsatListFile merge = new MergeAmsatListFile(); + merge.merge(parameter.getInputDirectory()); + merge.save(parameter.getOutputFile()); + + } } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java index f75b4e97..cbc9cb6f 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java @@ -10,234 +10,240 @@ import org.apache.commons.cli.Option; import org.apache.commons.cli.Options; import org.apache.commons.cli.ParseException; - public class OptionsAnalysis { - private Logger log = Logger.getLogger(getClass().getName()); - Vector<Cmd> listeCmd = new Vector<Cmd>() ; - Options options = null; - CommandLine line = null; + /** + * logger. + */ + private Logger log = Logger.getLogger(getClass().getName()); + /** + * List of command to execute. + */ + private Vector<Cmd> listeCmd = new Vector<Cmd>(); + /** + * Option. + */ + private Options options = null; + /** + * line. + */ + private CommandLine line = null; + + /** + * @param args + */ + public OptionsAnalysis(final String[] args) { + options = configParameters(); + CommandLineParser parser = new DefaultParser(); + + try { + line = parser.parse(options, args); + listeCmd = interprete(line, args); + } catch (ParseException e) { + log.severe(" Unrecognise option " + e.toString()); + + } + } + + /** + * @return list of command. + */ + public Vector<Cmd> getCommandes() { + return listeCmd; + } + + /** + * @param listeCmds + */ + public void setListeCmd(final Vector<Cmd> listeCmds) { + this.listeCmd = listeCmds; + } + + private static Options configParameters() { + final Option versionOption = Option.builder("V") + .longOpt("Version") // - public OptionsAnalysis(String[] args) { - options = configParameters(); - CommandLineParser parser = new DefaultParser(); + .desc("Return application version") - try { - line = parser.parse(options, args); - listeCmd = interprete(line, args); - } catch (ParseException e) { - log.severe(" Unrecognise option " + e.toString()); + .hasArg(false) - } - } + .required(false) - public Vector<Cmd> getCommandes() { - return listeCmd; - } + .build(); - public void setListeCmd(Vector<Cmd> listeCmd) { - this.listeCmd = listeCmd; - } + final Option mergeOption = Option.builder("M") - private static Options configParameters() { + .longOpt("Merge") // - final Option versionOption = Option.builder("V") + .desc("Merge all input folder to new Directoy to ouput xml file ") - .longOpt("Version") // + .hasArg(false) - .desc("Return application version") + .required(false) - .hasArg(false) + .build(); - .required(false) + final Option checkOption = Option.builder("C") - .build(); - - final Option mergeOption = Option.builder("M") + .longOpt("Check") // - .longOpt("Merge") // + .desc("verify AmsatList File data") - .desc("Merge all input folder to new Directoy to ouput xml file ") + .hasArg(false) - .hasArg(false) + .required(false) - .required(false) + .build(); - .build(); - - final Option checkOption = Option.builder("C") + final Option updateOption = Option.builder("U") - .longOpt("Check") // + .longOpt("Update") // - .desc("verify AmsatList File data") + .desc("update AmsatList File data") - .hasArg(false) + .hasArg(false) - .required(false) + .required(false) - .build(); - - final Option updateOption = Option.builder("U") + .build(); - .longOpt("Update") // + final Option inputDirectoryOption = Option.builder("I") - .desc("update AmsatList File data") + .longOpt("Input Directory") // - .hasArg(false) + .desc("Input directory with all input xml files (*.xml) ") - .required(false) + .hasArg(true) - .build(); + .argName("InputRepository") - final Option inputDirectoryOption = Option.builder("I") + .required(false) - .longOpt("Input Directory") // + .build(); - .desc("Input directory with all input xml files (*.xml) ") + final Option outputDirectoryOption = Option.builder("O") - .hasArg(true) + .longOpt("Output Directory") // - .argName("InputRepository") + .desc("Output directory with all input xml files (*.xml) ") - .required(false) + .hasArg(true) - .build(); - - final Option outputDirectoryOption = Option.builder("O") + .argName("OutputDirectory") - .longOpt("Output Directory") // + .required(false) - .desc("Output directory with all input xml files (*.xml) ") + .build(); - .hasArg(true) + final Option outputFileOption = Option.builder("o") - .argName("OutputDirectory") + .longOpt("OutputFile") // - .required(false) + .desc("output file") - .build(); + .hasArg(true) + .argName("OutputFile") - final Option outputFileOption = Option.builder("o") + .required(false) - .longOpt("OutputFile") // + .build(); - .desc("output file") + final Option inputFileOption = Option.builder("i") - .hasArg(true) + .longOpt("InputFile") // - .argName("OutputFile") + .desc("Input file") - .required(false) + .hasArg(true) - .build(); + .argName("InputFile") - - final Option inputFileOption = Option.builder("i") + .required(false) - .longOpt("InputFile") // + .build(); - .desc("Input file") + final Option helpFileOption = Option.builder("h") - .hasArg(true) + .longOpt("help") - .argName("InputFile") + .desc("display help message") - .required(false) + .build(); - .build(); - - final Option helpFileOption = Option.builder("h") + final Options options = new Options(); - .longOpt("help") + options.addOption(updateOption); + options.addOption(inputFileOption); + options.addOption(checkOption); + options.addOption(versionOption); + options.addOption(mergeOption); + options.addOption(inputDirectoryOption); + options.addOption(outputDirectoryOption); + options.addOption(outputFileOption); + options.addOption(helpFileOption); - .desc("display help message") + return options; - .build(); + } - final Options options = new Options(); - - - options.addOption(updateOption); - options.addOption(inputFileOption); - options.addOption(checkOption); - options.addOption(versionOption); - options.addOption(mergeOption); - options.addOption(inputDirectoryOption); - options.addOption(outputDirectoryOption); - options.addOption(outputFileOption); - options.addOption(helpFileOption); + private Vector<Cmd> interprete(CommandLine line, String[] args) { - return options; + Vector<Cmd> cmdList = new Vector<Cmd>(); + ParameterSingleton parameter = ParameterSingleton.getInstance(); - } + parameter.setOutputFile(line.getOptionValue("o")); + System.out.println("Output file dir" + line.getOptionValue("o")); + parameter.setInputDirectory(line.getOptionValue("I")); + System.out.println("Input dir" + line.getOptionValue("I")); + parameter.setOutputDirectory(line.getOptionValue("O")); + System.out.println("OUtput dir" + line.getOptionValue("O")); + parameter.setInputFile(line.getOptionValue("InputFile", "")); + cmdList.add(new VersionCmd()); + if (line.hasOption("help")) { + parameter.setArg0(args[0]); + parameter.setOption(options); + cmdList.add(new HelpCmd()); + } + if (line.hasOption("Version")) { + return cmdList; + } - private Vector<Cmd> interprete(CommandLine line, String[] args) { + if (line.hasOption("Merge")) { + if (parameter.getInputDirectory() == null) { + System.err.println("Merge : inputDirectory not defined"); + } else if (parameter.getOutputFile() == null) { + System.err.println("Merge : Output file name not defined"); + } else { + MergeCmd cmd = new MergeCmd(); + cmdList.add(cmd); + } + } - Vector<Cmd> cmdList = new Vector<Cmd>(); - ParameterSingleton parameter = ParameterSingleton.getInstance(); - - parameter.setOutputFile( line.getOptionValue("o")); - System.out.println("Output file dir"+ line.getOptionValue("o")); - parameter.setInputDirectory( line.getOptionValue("I")); - System.out.println("Input dir"+ line.getOptionValue("I")); - parameter.setOutputDirectory( line.getOptionValue("O")); - System.out.println("OUtput dir"+ line.getOptionValue("O")); - parameter.setInputFile( line.getOptionValue("InputFile", "")); - cmdList.add(new VersionCmd()); - - if (line.hasOption("help")) { - parameter.setArg0(args[0]); - parameter.setOption(options); - cmdList.add(new HelpCmd()); - } + if (line.hasOption("Check")) { + if (parameter.getInputFile() == null) { + System.err.println("Check : Input file name not defined"); + } + CheckCmd cmd = new CheckCmd(); + cmdList.add(cmd); + } - if (line.hasOption("Version")) { - return cmdList; - } + if (line.hasOption("Update")) { + if (parameter.getInputDirectory() == null) { + System.err.println("Update : input Directory not defined"); + } else if (parameter.getOutputDirectory() == null) { + System.err.println("Update : Output Directory not defined"); + } else { + UpdateCmd cmd = new UpdateCmd(); + cmdList.add(cmd); + } - if (line.hasOption("Merge")) { - if (parameter.getInputDirectory()==null) - { - System.err.println("Merge : inputDirectory not defined"); - } else if( parameter.getOutputFile()==null){ - System.err.println("Merge : Output file name not defined"); - } - else - { - MergeCmd cmd = new MergeCmd(); - cmdList.add(cmd); - } - } + } - if (line.hasOption("Check")) { - if( parameter.getInputFile()==null){ - System.err.println("Check : Input file name not defined"); - } - CheckCmd cmd = new CheckCmd(); - cmdList.add(cmd); - } - - if (line.hasOption("Update")) { - if (parameter.getInputDirectory()==null) - { - System.err.println("Update : input Directory not defined"); - } else if( parameter.getOutputDirectory()==null){ - System.err.println("Update : Output Directory not defined"); - } - else - { - UpdateCmd cmd = new UpdateCmd(); - cmdList.add(cmd); - } - - } - - - return cmdList; - } + return cmdList; + } } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java index 453e321e..b3488837 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java @@ -3,83 +3,136 @@ package org.josast.ApplicationSatelliteDatabaseCli.cmd; import org.apache.commons.cli.Options; public class ParameterSingleton { - - private static ParameterSingleton INSTANCE; - - private String OutputFile; - private String InputFile; - private String inputDirectory; - private String outputDirectory; - - - private String arg0; - private Options option; - - - private ParameterSingleton() { - } - - public static ParameterSingleton getInstance() { - if(INSTANCE == null) { - INSTANCE = new ParameterSingleton(); - } - - return INSTANCE; - } - - // getters and setters - - - - public String getOutputFile() { - return OutputFile; - } - - public String getInputDirectory() { - return inputDirectory; - } - - public void setInputDirectory(String inputDirectory) { - this.inputDirectory = inputDirectory; - } - - public String getOutputDirectory() { - return outputDirectory; - } - - public void setOutputDirectory(String outputDirectory) { - this.outputDirectory = outputDirectory; - } - - public void setOutputFile(String outputFile) { - OutputFile = outputFile; - } - - public String getArg0() { - return arg0; - } - - public void setArg0(String arg0) { - this.arg0 = arg0; - } - - public Options getOption() { - return option; - } - - public void setOption(Options option) { - this.option = option; - } - - public void setInputFile(String optionValue) { - InputFile = optionValue; - - } - public String getInputFile() { - return InputFile; - } - - - + + /** + * INSTANCE singleton. + */ + private static ParameterSingleton INSTANCE; + /** + * OutputFile. + */ + private String outputFile; + /** + * InputFile. + */ + private String inputFile; + /** + * inputDirectory. + */ + private String inputDirectory; + /** + * outputDirectory. + */ + private String outputDirectory; + + /** + * arg0. + */ + private String arg0; + /** + * option. + */ + private Options option; + + private ParameterSingleton() { + } + + /** + * @return singleton. + */ + public static ParameterSingleton getInstance() { + if (INSTANCE == null) { + INSTANCE = new ParameterSingleton(); + } + + return INSTANCE; + } + + // getters and setters + + /** + * @return outputFile. + */ + public String getOutputFile() { + return outputFile; + } + + /** + * @return inputDirectory. + */ + public String getInputDirectory() { + return inputDirectory; + } + + /** + * @param inputdirectory + */ + public void setInputDirectory(final String inputdirectory) { + this.inputDirectory = inputdirectory; + } + + /** + * @return outputDirectory. + */ + public String getOutputDirectory() { + return outputDirectory; + } + + /** + * @param outputdirectory + */ + public void setOutputDirectory(final String outputdirectory) { + this.outputDirectory = outputdirectory; + } + + /** + * @param outputfile + */ + public void setOutputFile(final String outputfile) { + outputFile = outputfile; + } + + /** + * @return arg0. + */ + public String getArg0() { + return arg0; + } + + /** + * @param arg + */ + public void setArg0(final String arg) { + this.arg0 = arg; + } + + /** + * @return option. + */ + public Options getOption() { + return option; + } + + /** + * @param options + */ + public void setOption(final Options options) { + this.option = options; + } + + /** + * @param optionValue. + */ + public void setInputFile(final String optionValue) { + inputFile = optionValue; + + } + + /** + * @return inputFile. + */ + public String getInputFile() { + return inputFile; + } } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java index 2842f0b7..1cd81cbb 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java @@ -7,56 +7,49 @@ import org.josast.ModuleSatelliteDatabase.UpdateAmsatListFile; public class UpdateCmd implements Cmd { - private Logger log = Logger.getLogger(getClass().getName()); - - @Override - public void excute() { - ParameterSingleton parameter = ParameterSingleton.getInstance(); - String inputRepository = parameter.getInputDirectory(); - String outputRepository = parameter.getOutputDirectory(); - File inputRepertoire = new File(inputRepository); - File outputRepertoire = new File (outputRepository); - - int i = 0; - if (inputRepertoire.isDirectory() == false) { - log.severe(inputRepository+"is not a repository"); -// System.err.println("not a repository"); -// return -1; - } - if (outputRepertoire.exists() == false) { - log.info("create "+ inputRepository); - if (!outputRepertoire.mkdir()) - { - log.severe(outputRepertoire+"is not created"); - } - -// System.err.println("not a repository"); -// return -1; - } else if (outputRepertoire.isDirectory() == false) { - log.severe(outputRepertoire+"is not a repository"); -// System.err.println("not a repository"); -// return -1; - } - - - File[] inputsfiles = inputRepertoire.listFiles(); - if (inputsfiles == null) { - log.severe(inputRepository+"Repository empty"); -// System.err.println("Repository empty"); -// return -1; - } else { - for (i = 0; i < inputsfiles.length; i++) { - - UpdateAmsatListFile up = new UpdateAmsatListFile(inputsfiles[i].getAbsolutePath()); - up.updateStatus(); - up.saveUpdateFile(outputRepository+"\\"+inputsfiles[i].getName()); -// System.out.println(inputsfiles[i]); -// appendSatellites(inputsfiles[i]); - } - } - - - } - + /** + * logger. + */ + private Logger log = Logger.getLogger(getClass().getName()); + + /** + * + */ + @Override + public void excute() { + ParameterSingleton parameter = ParameterSingleton.getInstance(); + String inputRepository = parameter.getInputDirectory(); + String outputRepository = parameter.getOutputDirectory(); + File inputRepertoire = new File(inputRepository); + File outputRepertoire = new File(outputRepository); + + int i = 0; + if (!inputRepertoire.isDirectory()) { + log.severe(inputRepository + "is not a repository"); + } + if (!outputRepertoire.exists()) { + log.info("create " + inputRepository); + if (!outputRepertoire.mkdir()) { + log.severe(outputRepertoire + "is not created"); + } + } else if (!outputRepertoire.isDirectory()) { + log.severe(outputRepertoire + "is not a repository"); + } + + File[] inputsfiles = inputRepertoire.listFiles(); + if (inputsfiles == null) { + log.severe(inputRepository + "Repository empty"); + } else { + for (i = 0; i < inputsfiles.length; i++) { + + UpdateAmsatListFile up = new UpdateAmsatListFile( + inputsfiles[i].getAbsolutePath()); + up.updateStatus(); + up.saveUpdateFile( + outputRepository + "\\" + inputsfiles[i].getName()); + } + } + + } } diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java index ecaab37a..2f7f7346 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java @@ -4,14 +4,17 @@ import org.josast.ApplicationSatelliteDatabaseCli.AppCli; public class VersionCmd implements Cmd { - String version = "0.7"; + /** + * software version. + */ + private String version = "0.71"; /** * */ @Override public void excute() { - System.out.println(AppCli.class.getSimpleName() + " " + version); + System.out.println(AppCli.class.getSimpleName() + " " + version); } } diff --git a/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmdTest.java b/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmdTest.java index 6872c82e..9da676ba 100644 --- a/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmdTest.java +++ b/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmdTest.java @@ -10,31 +10,30 @@ import org.junit.Test; public class CheckCmdTest { - @BeforeClass - public static void setUpBeforeClass() throws Exception { - } - - @AfterClass - public static void tearDownAfterClass() throws Exception { - } - - @Before - public void setUp() throws Exception { - } - - @After - public void tearDown() throws Exception { - } - - @Test - public void test() { - ParameterSingleton parameter = ParameterSingleton.getInstance(); - - parameter.setInputFile("src/test/data/FileIn/AmsatList.xml"); - CheckCmd cmd = new CheckCmd(); - cmd.excute(); - // si il n'y a pas d'erreur généré. - assertTrue( true ); - } + @BeforeClass + public static void setUpBeforeClass() throws Exception { + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + } + + @Before + public void setUp() throws Exception { + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void test() { + ParameterSingleton parameter = ParameterSingleton.getInstance(); + + parameter.setInputFile("src/test/data/FileIn/AmsatList.xml"); + CheckCmd cmd = new CheckCmd(); + cmd.excute(); + assertTrue(true); + } } diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java index 02e003bd..aa5f0035 100644 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java @@ -13,91 +13,91 @@ import javax.xml.bind.Unmarshaller; import org.josast.AmsatList.generated.AmsatList; public class AmsatListFile { - - - - - public AmsatList openAmsatList(String filein) - { - File fileIn = new File(filein); - return openAmsatList(fileIn); - } - - - public AmsatList openAmsatList(File filein) - { - AmsatList amsatList=null; - - JAXBContext jaxbContext = null; - try { - jaxbContext = JAXBContext.newInstance ("org.josast.AmsatList.generated"); - } catch (JAXBException e) { - - e.printStackTrace(); - } - - Unmarshaller unmarshaller = null; - try { - unmarshaller = jaxbContext.createUnmarshaller(); -// unmarshaller.setValidating(true); - } catch (JAXBException e) { - - e.printStackTrace(); - } - - - try { - amsatList = (AmsatList) unmarshaller.unmarshal(filein); - } catch (JAXBException e) { - - e.printStackTrace(); - } - - - return amsatList; - - } - - public void save(String fichOutSring,AmsatList amsatList) - { - File fichOut = new File(fichOutSring); - JAXBContext jc = null; - Marshaller mrs = null; - try { - jc = JAXBContext.newInstance("org.josast.AmsatList.generated"); - } catch (JAXBException e) { - - e.printStackTrace(); - } - - try { - mrs = jc.createMarshaller(); - } catch (JAXBException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - try { - mrs.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE); - } catch (PropertyException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } // indenter - - if( fichOut != null){ - try { - mrs.marshal(amsatList, new FileOutputStream(fichOut)); - } catch (FileNotFoundException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } catch (JAXBException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - } - - } - + /** + * @param filein + * @return + */ + public AmsatList openAmsatList(String filein) { + File fileIn = new File(filein); + return openAmsatList(fileIn); + } + /** + * @param filein + * @return + */ + public AmsatList openAmsatList(File filein) { + AmsatList amsatList = null; + + JAXBContext jaxbContext = null; + try { + jaxbContext = JAXBContext + .newInstance("org.josast.AmsatList.generated"); + } catch (JAXBException e) { + + e.printStackTrace(); + } + + Unmarshaller unmarshaller = null; + try { + unmarshaller = jaxbContext.createUnmarshaller(); + } catch (JAXBException e) { + + e.printStackTrace(); + } + + try { + amsatList = (AmsatList) unmarshaller.unmarshal(filein); + } catch (JAXBException e) { + + e.printStackTrace(); + } + + return amsatList; + + } + + /** + * @param fichOutSring + * @param amsatList + */ + public void save(String fichOutSring, AmsatList amsatList) { + File fichOut = new File(fichOutSring); + JAXBContext jc = null; + Marshaller mrs = null; + try { + jc = JAXBContext.newInstance("org.josast.AmsatList.generated"); + } catch (JAXBException e) { + + e.printStackTrace(); + } + + try { + mrs = jc.createMarshaller(); + } catch (JAXBException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + try { + mrs.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE); + } catch (PropertyException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } // indenter + + if (fichOut != null) { + try { + mrs.marshal(amsatList, new FileOutputStream(fichOut)); + } catch (FileNotFoundException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } catch (JAXBException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + } } diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFile.java index b5b0362b..34f18878 100644 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFile.java +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFile.java @@ -9,102 +9,104 @@ import org.josast.AmsatList.generated.AmsatList; import org.josast.AmsatList.generated.Satellites; public class CheckAmsatListFile { - AmsatList al =null; - - public CheckAmsatListFile(String file) - { - AmsatListFile alf = new AmsatListFile(); - al = alf.openAmsatList(file); - - - } - - - public Vector<String> checkUniqueSatelliteName() - { - - Hashtable<String, Satellites> AMSATListSatellite = new Hashtable<String, Satellites>(); - - List<Satellites> listSatellite = al.getSatellites(); - ListIterator<Satellites> it = listSatellite.listIterator(); - Vector<String> satNameVec = new Vector<String>(); - // vérifier qu'un satellite n'est pas deux fois dans la base - - while (it.hasNext()) { - Satellites sat = it.next(); - String satelliteName = sat.getName(); - - if (AMSATListSatellite.containsKey(satelliteName) == true) { - satNameVec.addElement(satelliteName); - }else - { - AMSATListSatellite.put(satelliteName, sat); - } - - - - } - return satNameVec; - } - - public Vector<String> checkUniqueSatelliteNasaID() - { - - Hashtable<Integer, Satellites> AMSATListSatellite = new Hashtable<Integer, Satellites>(); - - List<Satellites> listSatellite = al.getSatellites(); - ListIterator<Satellites> it = listSatellite.listIterator(); - Vector<String> satNameVec = new Vector<String>(); - // vérifier qu'un satellite n'est pas deux fois dans la base - - while (it.hasNext()) { - Satellites sat = it.next(); - int satelliteId = sat.getNasaID(); - - if (AMSATListSatellite.containsKey(satelliteId) == true) { - satNameVec.addElement(sat.getName()+ " "+satelliteId); - }else - { - AMSATListSatellite.put(satelliteId, sat); - } - - } - return satNameVec; - } - - - public Vector<String> getListSatelliteStatus () - { - Hashtable<String, Vector<Satellites>> AMSATListStatus = new Hashtable<String, Vector<Satellites>>(); - - List<Satellites> listSatellite = al.getSatellites(); - Vector<String> satelliteStatus = new Vector<String>(); - - ListIterator<Satellites> it = listSatellite.listIterator(); - while (it.hasNext()) { - Satellites sat = it.next(); - String status = sat.getStatus(); - - if (status == null) - { - System.out.println("Status Null"); - status="Not Defined"; - - } - Vector<Satellites> vsat; - if (AMSATListStatus.containsKey(status) == true) { - vsat = AMSATListStatus.get(status); - - }else - { - vsat = new Vector<Satellites>(); - AMSATListStatus.put(status, vsat); - satelliteStatus.add(status); - } - vsat.addElement(sat); - } - - return satelliteStatus; - } + /** + * Amsat list structure. + */ + private AmsatList al = null; + + /** + * @param file file name. + */ + public CheckAmsatListFile(final String file) { + AmsatListFile alf = new AmsatListFile(); + al = alf.openAmsatList(file); + + } + + /** + * @return list of satellite. + */ + public Vector<String> checkUniqueSatelliteName() { + + Hashtable<String, Satellites> amsatListSatellite = new Hashtable<String, Satellites>(); + + List<Satellites> listSatellite = al.getSatellites(); + ListIterator<Satellites> it = listSatellite.listIterator(); + Vector<String> satNameVec = new Vector<String>(); + // vérifier qu'un satellite n'est pas deux fois dans la base + + while (it.hasNext()) { + Satellites sat = it.next(); + String satelliteName = sat.getName(); + + if (amsatListSatellite.containsKey(satelliteName)) { + satNameVec.addElement(satelliteName); + } else { + amsatListSatellite.put(satelliteName, sat); + } + + } + return satNameVec; + } + + /** + * @return list of satellite name + */ + public Vector<String> checkUniqueSatelliteNasaID() { + + Hashtable<Integer, Satellites> amsatListSatellite = new Hashtable<Integer, Satellites>(); + + List<Satellites> listSatellite = al.getSatellites(); + ListIterator<Satellites> it = listSatellite.listIterator(); + Vector<String> satNameVec = new Vector<String>(); + // vérifier qu'un satellite n'est pas deux fois dans la base + + while (it.hasNext()) { + Satellites sat = it.next(); + int satelliteId = sat.getNasaID(); + + if (amsatListSatellite.containsKey(satelliteId)) { + satNameVec.addElement(sat.getName() + " " + satelliteId); + } else { + amsatListSatellite.put(satelliteId, sat); + } + + } + return satNameVec; + } + + /** + * @return amsat List Satellite. + */ + public Vector<String> getListSatelliteStatus() { + Hashtable<String, Vector<Satellites>> amsatListSatellite = new Hashtable<String, Vector<Satellites>>(); + + List<Satellites> listSatellite = al.getSatellites(); + Vector<String> satelliteStatus = new Vector<String>(); + + ListIterator<Satellites> it = listSatellite.listIterator(); + while (it.hasNext()) { + Satellites sat = it.next(); + String status = sat.getStatus(); + + if (status == null) { + System.out.println("Status Null"); + status = "Not Defined"; + + } + Vector<Satellites> vsat; + if (amsatListSatellite.containsKey(status)) { + vsat = amsatListSatellite.get(status); + + } else { + vsat = new Vector<Satellites>(); + amsatListSatellite.put(status, vsat); + satelliteStatus.add(status); + } + vsat.addElement(sat); + } + + return satelliteStatus; + } } diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java index 86e9a452..3c606733 100644 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java @@ -13,164 +13,146 @@ import javax.xml.bind.Marshaller; import javax.xml.bind.PropertyException; import javax.xml.bind.Unmarshaller; - import org.josast.AmsatList.generated.AmsatList; import org.josast.AmsatList.generated.ObjectFactory; import org.josast.AmsatList.generated.Satellites; - public class MergeAmsatListFile { - private Logger log = Logger.getLogger(getClass().getName()); - AmsatList amsatList = null; - List<Satellites> liste = null; - - /** - * create a new Amsat List structure in memory - */ - public MergeAmsatListFile() { - ObjectFactory of = new ObjectFactory(); - amsatList = of.createAmsatList(); - liste = amsatList.getSatellites(); - } - - /** - * Save file - * - * @param fichOutSring - */ - public void save(String fichOutSring) { - File fichOut = new File(fichOutSring); - String path = "org.josast.AmsatList.generated"; - JAXBContext jc = null; - try { - jc = JAXBContext.newInstance(path); - } catch (JAXBException e) { - log.severe("path not found : " + path); - // e.printStackTrace(); - } - Marshaller mrs = null; - try { - mrs = jc.createMarshaller(); - } catch (JAXBException e) { - log.severe("Marshaller creation faile"); - // e.printStackTrace(); - } - try { - mrs.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE); - } catch (PropertyException e) { - log.severe("Marshaller property exception"); - // e.printStackTrace(); - } // indenter - -// if (fichOut != null) { - try { - mrs.marshal(amsatList, new FileOutputStream(fichOut)); - } catch (FileNotFoundException e) { - log.severe("File not found exeption"); -// e.printStackTrace(); - } catch (JAXBException e) { - log.severe(e.toString()); -// e.printStackTrace(); - } -// } -// else { -// try { -// mrs.marshal(amsatList, System.out); -// } catch (JAXBException e) { -// // TODO Auto-generated catch block -// e.printStackTrace(); -// } -// } - } - - - /** - * add data from file in memory (list) - * - * @param filein - */ - public void appendSatellites(File filein) { - log.info("Add file : " + filein.getName()); - JAXBContext jaxbContext = null; - - try { - jaxbContext = JAXBContext.newInstance("org.josast.AmsatList.generated"); - - } catch (JAXBException e) { -// e.printStackTrace(); - log.severe("JAXBException "+e.toString()); - } - - Unmarshaller unmarshaller = null; - try { - unmarshaller = jaxbContext.createUnmarshaller(); -// unmarshaller.setValidating(true); - } catch (JAXBException e) { - log.severe("JAXBException "+e.toString()); - //e.printStackTrace(); - } - - AmsatList amsatliste = null; - try { - amsatliste = (AmsatList) unmarshaller.unmarshal(filein); - } catch (JAXBException e) { - log.severe("JAXBException "+e.toString()); - //e.printStackTrace(); - } - - // TODO revoir comment gérer l'append dans la liste - - List<Satellites> listSatellite = amsatliste.getSatellites(); - - ListIterator<Satellites> it = listSatellite.listIterator(); - - while (it.hasNext()) { - Satellites sat = it.next(); - liste.add(sat); - log.info("satellite ajouté :" + sat.getName()); - - } - - } - - - /** - * @param repository - * @param Fileout - * @return - */ - - public int merge(String repository, String Fileout) { - File repertoire = new File(repository); - int i = 0; - if (repertoire.isDirectory() == false) { - log.severe(repository+"is not a repository"); -// System.err.println("not a repository"); - return -1; - } - File[] inputsfiles = repertoire.listFiles(); - if (inputsfiles == null) { - log.severe(repository+"Repository empty"); -// System.err.println("Repository empty"); - return -1; - } else { - for (i = 0; i < inputsfiles.length; i++) { -// System.out.println(inputsfiles[i]); - appendSatellites(inputsfiles[i]); - } - } - -// save(Fileout); - log.info("Nb Satellite" + i); -// System.out.println("Nb Satellite" + i); - - return i; - - } - - - - - + /** + * logger. + */ + private Logger log = Logger.getLogger(getClass().getName()); + /** + * Liste of satellite. + */ + private AmsatList amsatList = null; + /** + * Liste of satellite. + */ + private List<Satellites> liste = null; + + /** + * create a new Amsat List structure in memory. + */ + public MergeAmsatListFile() { + ObjectFactory of = new ObjectFactory(); + amsatList = of.createAmsatList(); + liste = amsatList.getSatellites(); + } + + /** + * Save file. + * @param fichOutSring + */ + public void save(final String fichOutSring) { + File fichOut = new File(fichOutSring); + String path = "org.josast.AmsatList.generated"; + JAXBContext jc = null; + try { + jc = JAXBContext.newInstance(path); + } catch (JAXBException e) { + log.severe("path not found : " + path); + // e.printStackTrace(); + } + Marshaller mrs = null; + try { + mrs = jc.createMarshaller(); + } catch (JAXBException e) { + log.severe("Marshaller creation faile"); + // e.printStackTrace(); + } + try { + mrs.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE); + } catch (PropertyException e) { + log.severe("Marshaller property exception"); + // e.printStackTrace(); + } // indenter + + try { + mrs.marshal(amsatList, new FileOutputStream(fichOut)); + } catch (FileNotFoundException e) { + log.severe("File not found exeption"); + + } catch (JAXBException e) { + log.severe(e.toString()); + + } + } + + /** + * add data from file in memory (list). + * @param filein input file. + */ + public void appendSatellites(final File filein) { + log.info("Add file : " + filein.getName()); + JAXBContext jaxbContext = null; + + try { + jaxbContext = JAXBContext + .newInstance("org.josast.AmsatList.generated"); + + } catch (JAXBException e) { + + log.severe("JAXBException " + e.toString()); + } + + Unmarshaller unmarshaller = null; + try { + unmarshaller = jaxbContext.createUnmarshaller(); + } catch (JAXBException e) { + log.severe("JAXBException " + e.toString()); + // e.printStackTrace(); + } + + AmsatList amsatliste = null; + try { + amsatliste = (AmsatList) unmarshaller.unmarshal(filein); + } catch (JAXBException e) { + log.severe("JAXBException " + e.toString()); + // e.printStackTrace(); + } + + // TODO revoir comment gérer l'append dans la liste + + List<Satellites> listSatellite = amsatliste.getSatellites(); + + ListIterator<Satellites> it = listSatellite.listIterator(); + + while (it.hasNext()) { + Satellites sat = it.next(); + liste.add(sat); + log.info("satellite ajouté :" + sat.getName()); + + } + + } + + /** + * @param repository + * @return number of satellite. + */ + + public int merge(final String repository) { + File repertoire = new File(repository); + int i = 0; + if (!repertoire.isDirectory()) { + log.severe(repository + "is not a repository"); + return -1; + } + File[] inputsfiles = repertoire.listFiles(); + if (inputsfiles == null) { + log.severe(repository + "Repository empty"); + return -1; + } else { + for (i = 0; i < inputsfiles.length; i++) { + appendSatellites(inputsfiles[i]); + } + } + log.info("Nb Satellite" + i); + + return i; + + } + } diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java index bf48d7c5..777bed30 100644 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java @@ -4,91 +4,95 @@ import java.util.Hashtable; import java.util.List; import java.util.ListIterator; - import org.josast.AmsatList.generated.AmsatList; import org.josast.AmsatList.generated.Satellites; public class UpdateAmsatListFile { - - - private AmsatList al; - AmsatListFile alf = null; - public UpdateAmsatListFile(String filein) - { - alf = new AmsatListFile(); - al = alf.openAmsatList(filein); - } - - public void saveUpdateFile (String filename ) - { - alf.save(filename,al); - } - - public void updateStatus() - { - Hashtable<String, String> AMSATListStatus = new Hashtable<String, String>(); - // init table status - AMSATListStatus.put("decayed ","Decayed"); - AMSATListStatus.put("Decayed ","Decayed"); - AMSATListStatus.put("Deep Space","Deep Space"); - AMSATListStatus.put("Deep space","Deep Space"); - AMSATListStatus.put("Fail","Failed"); - AMSATListStatus.put("Failed","Failed"); - AMSATListStatus.put("Launch","Launch"); - AMSATListStatus.put("No operational","Not operational"); - AMSATListStatus.put("No operational","Not operational"); - AMSATListStatus.put("Not amateur Satellite","Not amateur satellite"); - AMSATListStatus.put("Unknown","Unknown"); - AMSATListStatus.put("Not operational","Not operational"); - AMSATListStatus.put("Not Operational","Not operational"); - AMSATListStatus.put("Operational","Operational"); - AMSATListStatus.put("Operationnal","Operational"); - AMSATListStatus.put("To be deployed","To be deployed"); - AMSATListStatus.put("To Be Laucnh","To be launch"); - AMSATListStatus.put("To Be Launch","To be launch"); - AMSATListStatus.put("To be launched","To be launch"); - AMSATListStatus.put("To be Launched ","To be launch"); - AMSATListStatus.put("unknown","Unknown"); - AMSATListStatus.put("Unknown","Unknown"); - - List<Satellites> listSatellite = al.getSatellites(); + /** + * + */ + private AmsatList al; + /** + * + */ + private AmsatListFile alf = null; + + /** + * @param filein + */ + public UpdateAmsatListFile(final String filein) { + alf = new AmsatListFile(); + al = alf.openAmsatList(filein); + } + + /** + * @param filename + */ + public void saveUpdateFile(final String filename) { + alf.save(filename, al); + } + + /** + * + */ + public void updateStatus() { + Hashtable<String, String> amsatListStatus = new Hashtable<String, String>(); + // init table status + + amsatListStatus.put("decayed", "Decayed"); + amsatListStatus.put("Decayed", "Decayed"); + amsatListStatus.put("Deep Space", "Deep Space"); + amsatListStatus.put("Deep space", "Deep Space"); + amsatListStatus.put("Fail", "Failed"); + amsatListStatus.put("Failed", "Failed"); + amsatListStatus.put("Launch", "Launch"); + amsatListStatus.put("No operational", "Not operational"); + amsatListStatus.put("No operational", "Not operational"); + amsatListStatus.put("Not amateur Satellite", "Not amateur satellite"); + amsatListStatus.put("Unknown", "Unknown"); + amsatListStatus.put("Not operational", "Not operational"); + amsatListStatus.put("Not Operational", "Not operational"); + amsatListStatus.put("Operational", "Operational"); + amsatListStatus.put("Operationnal", "Operational"); + amsatListStatus.put("To be deployed", "To be deployed"); + amsatListStatus.put("To Be Laucnh", "To be launch"); + amsatListStatus.put("To Be Launch", "To be launch"); + amsatListStatus.put("To be launched", "To be launch"); + amsatListStatus.put("To be Launched", "To be launch"); + amsatListStatus.put("unknown", "Unknown"); + amsatListStatus.put("Unknown", "Unknown"); + + List<Satellites> listSatellite = al.getSatellites(); + + ListIterator<Satellites> it = listSatellite.listIterator(); + while (it.hasNext()) { + Satellites sat = it.next(); + String status = sat.getStatus(); + System.out.println(sat.getName() + " " + status); + if (status == null) { + sat.setStatus("Unknown"); + System.out.println("add status to :" + sat.getStatus()); + + } else { + status = status.trim(); + + if (amsatListStatus.containsKey(status)) { + String refstatus = amsatListStatus.get(status); - ListIterator<Satellites> it = listSatellite.listIterator(); - while (it.hasNext()) { - Satellites sat = it.next(); - String status = sat.getStatus(); - System.out.println(sat.getName()+" "+status); - if (status == null) - { - sat.setStatus("Unknown"); - System.out.println("add status to :"+ sat.getStatus()); - - } - else - { - status = status.trim(); + if (refstatus.compareTo(status) != 0) { + sat.setStatus(refstatus); + System.out.println( + "Status change :" + status + "to" + refstatus); + } + } else { + sat.setStatus("Unknown"); + System.out.println( + "add status to empty :" + sat.getStatus()); + } + } + } - if (AMSATListStatus.containsKey(status) == true) - { - String refstatus = AMSATListStatus.get(status); - - if (refstatus.compareTo(status)!=0) - { - sat.setStatus(refstatus); - System.out.println("Status change :"+status+"to"+refstatus); - } - } - else - { - sat.setStatus("Unknown"); - System.out.println("add status to empty :"+ sat.getStatus()); - } - } - } - - } - + } - } diff --git a/pom.xml b/pom.xml index 6228637d..89a62679 100644 --- a/pom.xml +++ b/pom.xml @@ -709,9 +709,11 @@ <module>ModuleJourJulien</module> <module>ModuleCubesatSim</module> <module>ModuleAmicalsat</module> + <module>ModuleSatelliteDatabase</module> <module>ApplicationCubesatSim</module> <module>ApplicationAmicalsatCli</module> <module>ApplicationAmicalsat</module> + <module>ApplicationSatelliteDatabaseCli</module> </modules> -- GitLab From acb7dc9bece895888056cc0b2b677002ca93aeb2 Mon Sep 17 00:00:00 2001 From: xtophe <christophe.mcr@gmail.com> Date: Thu, 21 May 2020 11:32:52 +0200 Subject: [PATCH 05/10] Style - minorchange --- .../josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java index 30a30c56..5725eb22 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java @@ -18,7 +18,8 @@ public class MergeCmd implements Cmd { log.info(MergeCmd.class.getName()); ParameterSingleton parameter = ParameterSingleton.getInstance(); MergeAmsatListFile merge = new MergeAmsatListFile(); - merge.merge(parameter.getInputDirectory()); + merge.merge(parameter.getInputDirectory() + ); merge.save(parameter.getOutputFile()); } -- GitLab From e5403e177b1559d6c9bc5ab11a764f15997dcd5d Mon Sep 17 00:00:00 2001 From: xtophe <christophe.mcr@gmail.com> Date: Thu, 21 May 2020 14:26:08 +0200 Subject: [PATCH 06/10] docs: add readme --- ApplicationSatelliteDatabaseCli/README.md | 63 +++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 ApplicationSatelliteDatabaseCli/README.md diff --git a/ApplicationSatelliteDatabaseCli/README.md b/ApplicationSatelliteDatabaseCli/README.md new file mode 100644 index 00000000..f0fa55c4 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/README.md @@ -0,0 +1,63 @@ +# ApplicationSatelliteDatabaseCLI + +This application is a toolbox for AMSATList project. It's help to work with xml file. + + +## Context + + + +## prerequisite + +Java installed on your computer + + + + + + + + +## Installation + +Retreive jar file from [electrolab Github](https://code.electrolab.fr/xtof/josast/)  + + + +## Usage + + + +To launch the application + +```java + +java -jar ApplicationSatelliteDatabaseCli.jar + +``` + +To launch the application with option : + +``` +java -jar ApplicationSatelliteDatabaseCli -h + + + +``` + + . + +### Merge ### + +### Check ### + +### Update ### + + +## Contributing +Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. + +Please make sure to update tests as appropriate. + +## License +[GNU Lesser General Public License v2.1](http://choosealicense.com/licenses/lgpl-2.1/) -- GitLab From 53a6bb20e9544ad3f11645121b6715efb866220a Mon Sep 17 00:00:00 2001 From: xtof <christophe.mcr@gmail.com> Date: Thu, 21 May 2020 15:06:50 +0200 Subject: [PATCH 07/10] fix : minor - ouput message --- .../ModuleSatelliteDatabase/UpdateAmsatListFile.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java index 777bed30..8fb4e643 100644 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java @@ -37,6 +37,8 @@ public class UpdateAmsatListFile { * */ public void updateStatus() { + + Hashtable<String, String> amsatListStatus = new Hashtable<String, String>(); // init table status @@ -69,10 +71,10 @@ public class UpdateAmsatListFile { while (it.hasNext()) { Satellites sat = it.next(); String status = sat.getStatus(); - System.out.println(sat.getName() + " " + status); + System.out.println(sat.getName() + " " + status +" : "); if (status == null) { sat.setStatus("Unknown"); - System.out.println("add status to :" + sat.getStatus()); + System.out.println(" add status to :" + sat.getStatus()); } else { status = status.trim(); @@ -88,9 +90,11 @@ public class UpdateAmsatListFile { } else { sat.setStatus("Unknown"); System.out.println( - "add status to empty :" + sat.getStatus()); + "add status to :" + sat.getStatus()); } + } + } } -- GitLab From 6dad2d7e966256e06ccaca855049cfcd22eccc33 Mon Sep 17 00:00:00 2001 From: xtophe <christophe.mcr@gmail.com> Date: Sun, 24 May 2020 14:47:22 +0200 Subject: [PATCH 08/10] docs: minor change --- src/site/markdown/namingconvention.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/markdown/namingconvention.md b/src/site/markdown/namingconvention.md index 418f4eb2..980696fb 100644 --- a/src/site/markdown/namingconvention.md +++ b/src/site/markdown/namingconvention.md @@ -48,4 +48,4 @@ References: - https://www.conventionalcommits.org/ - https://seesparkbox.com/foundry/semantic_commit_messages -- http://karma-runner.github.io/1.0/dev/git-commit-msg.html \ No newline at end of file +- http://karma-runner.github.io/1.0/dev/git-commit-msg.html -- GitLab From 186e21f5c622b47eeb3021a5a1753bd011652105 Mon Sep 17 00:00:00 2001 From: xtof <christophe.mcr@gmail.com> Date: Sun, 24 May 2020 15:03:42 +0200 Subject: [PATCH 09/10] Feat : add commande & diff function --- ApplicationSatelliteDatabaseCli/README.md | 42 +- .../cmd/OptionsAnalysis.java | 6 +- .../cmd/UpdateCmd.java | 2 +- .../cmd/VersionCmd.java | 2 +- ModuleSatelliteDatabase/pom.xml | 6 + .../josast/AmsatList/Commande/Commande.java | 164 + .../AmsatList/Commande/CommandeList.java | 89 + .../AmsatList/Commande/executeCommande.java | 104 + .../AmsatList/check/TwoListCompare.java | 86 + .../josast/AmsatList/source/ReadCsvFile.java | 48 + .../AmsatListFile.java | 43 +- .../AmsatListFlat.java | 25 + .../ModuleSatelliteDatabase/FlatSatList.java | 21 + .../FlatSatellite.java | 95 + .../UpdateAmsatListFile.java | 83 +- .../src/test/data/FileIn/AmsatList.xml | 19821 ++++++++-------- .../src/test/data/FileIn/testcommandeSave.txt | 147 + .../src/test/data/in/AL_1KUNS-PF.xml | 46 + .../src/test/data/in/AL_3CAT-2.xml | 39 + .../src/test/data/in/AL_3CAT1 .xml | 47 + .../src/test/data/in/AL_4M-LXS.xml | 19 + .../src/test/data/in/AL_AAUSAT-4.xml | 47 + .../src/test/data/in/AL_AAUSAT-5.xml | 35 + .../src/test/data/in/AL_AAUSAT-II.xml | 33 + .../src/test/data/in/AL_AAUSAT.xml | 20 + .../src/test/data/in/AL_AAUSat3.xml | 23 + .../src/test/data/in/AL_ACRUX-1.xml | 51 + .../src/test/data/in/AL_AESP14.xml | 18 + .../src/test/data/in/AL_AIST-1 (RS-41).xml | 18 + .../src/test/data/in/AL_AIST-2 (RS-43).xml | 18 + .../src/test/data/in/AL_AISTECHSAT-2.xml | 25 + .../src/test/data/in/AL_AISTECHSAT-3.xml | 25 + .../src/test/data/in/AL_AISat.xml | 19 + .../test/data/in/AL_ALEXANDER (PhoneSat2).xml | 20 + .../src/test/data/in/AL_ALMASat-1.xml | 20 + .../src/test/data/in/AL_ALSat-1N.xml | 30 + .../src/test/data/in/AL_AMSAT-India APRS .xml | 52 + .../src/test/data/in/AL_ANDE-2 (Castor).xml | 30 + .../src/test/data/in/AL_ANDE-2(Pollux).xml | 29 + .../src/test/data/in/AL_ANTELSat.xml | 23 + .../src/test/data/in/AL_ANUSAT.xml | 21 + .../src/test/data/in/AL_AO-1(Oscar-1).xml | 21 + .../src/test/data/in/AL_AO-10(Phase-3B).xml | 20 + .../src/test/data/in/AL_AO-13(Phase-3C).xml | 20 + .../src/test/data/in/AL_AO-16(PACSAT).xml | 20 + .../src/test/data/in/AL_AO-2(Oscar-2).xml | 21 + .../src/test/data/in/AL_AO-24 (ARSENE).xml | 31 + .../src/test/data/in/AL_AO-27(EYESAT-A).xml | 21 + .../src/test/data/in/AL_AO-3(Oscar-3).xml | 27 + .../src/test/data/in/AL_AO-37(ASUSAT).xml | 21 + .../src/test/data/in/AL_AO-4(Oscar-4).xml | 26 + .../src/test/data/in/AL_AO-40(Phase-3D).xml | 21 + .../src/test/data/in/AL_AO-49(Rubin-2).xml | 20 + .../src/test/data/in/AL_AO-5(Oscar-5).xml | 30 + .../src/test/data/in/AL_AO-51(Echo).xml | 38 + .../src/test/data/in/AL_AO-54(SuitSat).xml | 21 + .../src/test/data/in/AL_AO-6(Phase-2A).xml | 20 + .../src/test/data/in/AL_AO-7(Phase-2B).xml | 40 + .../src/test/data/in/AL_AO-71(AubieSat-1).xml | 23 + .../src/test/data/in/AL_AO-8(Phase-2D).xml | 28 + .../src/test/data/in/AL_AO-85 (Fox-1A).xml | 22 + .../src/test/data/in/AL_AO-92 (Fox-1D).xml | 51 + .../test/data/in/AL_AO-95 (Fox-1Cliff).xml | 76 + .../src/test/data/in/AL_ARC-1.xml | 18 + .../src/test/data/in/AL_ARISSat-1.xml | 50 + .../data/in/AL_ARTSAT1-INVADER (CO-77).xml | 22 + .../data/in/AL_ARTSAT2-DESPATCH (FO-81).xml | 19 + .../src/test/data/in/AL_ATL 1 (MO-106).xml | 41 + .../src/test/data/in/AL_AZTECHSAT-1.xml | 55 + .../src/test/data/in/AL_Aalto-1.xml | 44 + .../src/test/data/in/AL_Aalto-2 (FI01).xml | 30 + .../src/test/data/in/AL_Aeneas.xml | 24 + .../src/test/data/in/AL_AeroCube-2.xml | 20 + .../src/test/data/in/AL_AeroCube1.xml | 21 + .../src/test/data/in/AL_AggieSat-4.xml | 18 + .../src/test/data/in/AL_Al-Farabi-2.xml | 25 + .../src/test/data/in/AL_All-Star - THEIA.xml | 20 + .../src/test/data/in/AL_AmurSat (AmGU-1).xml | 26 + .../src/test/data/in/AL_AoXiang-1 (CN04).xml | 42 + .../src/test/data/in/AL_Aoba-VELOX-III.xml | 25 + .../src/test/data/in/AL_Aoba-Velox 4.xml | 51 + .../src/test/data/in/AL_ArduSat-1.xml | 23 + .../src/test/data/in/AL_ArduSat-2.xml | 18 + .../src/test/data/in/AL_ArduSat-X.xml | 23 + .../src/test/data/in/AL_Argus-2.xml | 42 + .../src/test/data/in/AL_Argus.xml | 19 + .../src/test/data/in/AL_Armadillo.xml | 54 + .../src/test/data/in/AL_Astrocast-0.2.xml | 38 + .../src/test/data/in/AL_Athenoxat-1.xml | 25 + .../src/test/data/in/AL_Atlantis (US02).xml | 21 + .../src/test/data/in/AL_BEESAT-2.xml | 29 + .../src/test/data/in/AL_BEESAT-3.xml | 29 + .../src/test/data/in/AL_BEESAT-4.xml | 43 + .../src/test/data/in/AL_BEESAT-9.xml | 55 + .../src/test/data/in/AL_BELL (PhoneSat1).xml | 20 + .../src/test/data/in/AL_BHUTAN-1.xml | 59 + .../data/in/AL_BIRD-G (Ghana GhanaSat-1).xml | 29 + .../data/in/AL_BIRD-M (Mongolia Mazaalai).xml | 29 + .../src/test/data/in/AL_BIROS.xml | 24 + .../data/in/AL_BO-47(IDEFIX)BO-48(IDEFIX).xml | 30 + .../src/test/data/in/AL_BRAC (BIRD-B).xml | 29 + .../src/test/data/in/AL_BRICSat-2.xml | 55 + .../src/test/data/in/AL_BRITE-PL.xml | 18 + .../src/test/data/in/AL_BY70-1.xml | 31 + .../src/test/data/in/AL_BeEagleSat (TR01).xml | 21 + .../src/test/data/in/AL_BeeSat-1.xml | 26 + .../src/test/data/in/AL_Bevo-2.xml | 21 + .../src/test/data/in/AL_BisonSat.xml | 23 + .../src/test/data/in/AL_Black Knight-1.xml | 17 + .../src/test/data/in/AL_BugSat-1.xml | 51 + .../src/test/data/in/AL_CADRE.xml | 30 + .../src/test/data/in/AL_CAERUS.xml | 21 + .../src/test/data/in/AL_CAMSAT CAS-6.xml | 83 + .../src/test/data/in/AL_CANX-1.xml | 20 + .../src/test/data/in/AL_CANX-2.xml | 27 + .../src/test/data/in/AL_CAPE-1.xml | 20 + .../src/test/data/in/AL_CAPE-2 (LO-75).xml | 23 + .../src/test/data/in/AL_CAS-3E (XW-2E).xml | 45 + .../test/data/in/AL_CAS-4A (ZHUHAI-1 01).xml | 53 + .../test/data/in/AL_CAS-4B (ZHUHAI-1 02).xml | 49 + .../src/test/data/in/AL_CAS-7B (BP-1B).xml | 65 + .../src/test/data/in/AL_CHOMPTT.xml | 51 + .../src/test/data/in/AL_CNUSail-1.xml | 21 + .../src/test/data/in/AL_CO-55(CUTE-I).xml | 25 + .../src/test/data/in/AL_CO-56(CUTE17).xml | 30 + .../src/test/data/in/AL_CO-57(XI-IV).xml | 28 + .../src/test/data/in/AL_CO-58(XI-V).xml | 28 + .../src/test/data/in/AL_CO-66(SEEDS-II).xml | 24 + .../src/test/data/in/AL_COMPASS-1.xml | 23 + .../in/AL_COMPASS-2 - DragSail (DE04).xml | 46 + .../src/test/data/in/AL_COPPER.xml | 18 + .../src/test/data/in/AL_CP-6.xml | 22 + .../src/test/data/in/AL_CP-7 (DAVE).xml | 33 + .../src/test/data/in/AL_CP-9.xml | 56 + .../src/test/data/in/AL_CP5.xml | 20 + .../src/test/data/in/AL_CSIM.xml | 46 + .../src/test/data/in/AL_CSSWE.xml | 20 + .../src/test/data/in/AL_CSTB-1.xml | 20 + .../src/test/data/in/AL_CSUNSat1.xml | 25 + .../src/test/data/in/AL_CUAVA-1.xml | 94 + .../src/test/data/in/AL_CUNYSAT-1.xml | 22 + .../src/test/data/in/AL_CUSat-1.xml | 20 + .../src/test/data/in/AL_CUSat-2.xml | 19 + .../src/test/data/in/AL_CUTE17+APDII.xml | 38 + .../src/test/data/in/AL_CXBN-2.xml | 21 + .../src/test/data/in/AL_CXBN.xml | 20 + .../src/test/data/in/AL_CanX-4.xml | 18 + .../src/test/data/in/AL_CanX-5.xml | 18 + .../src/test/data/in/AL_Challenger (US01).xml | 21 + .../src/test/data/in/AL_ChargerSat-1.xml | 18 + .../src/test/data/in/AL_Chasqui-1.xml | 22 + .../src/test/data/in/AL_ChubuSat-1.xml | 22 + .../src/test/data/in/AL_ChubuSat-2.xml | 32 + .../src/test/data/in/AL_ChubuSat-3.xml | 32 + .../src/test/data/in/AL_Columbia (US04).xml | 21 + .../test/data/in/AL_CubeBel-1(BSUSat-1).xml | 60 + .../src/test/data/in/AL_CubeBug-1.xml | 24 + .../src/test/data/in/AL_CubeBug-2 (LO-74).xml | 50 + .../src/test/data/in/AL_CubeSail 1.xml | 42 + .../src/test/data/in/AL_D-SAT.xml | 29 + .../test/data/in/AL_D-Star ONE EXOCONNECT.xml | 25 + .../test/data/in/AL_D-Star ONE Phoenix.xml | 21 + .../test/data/in/AL_D-Star ONE Sparrow.xml | 58 + .../src/test/data/in/AL_D-Star ONE iSat.xml | 35 + .../src/test/data/in/AL_DANDE.xml | 20 + .../src/test/data/in/AL_DIWATA-2.xml | 67 + .../src/test/data/in/AL_DO-17(DOVE).xml | 21 + .../src/test/data/in/AL_DO-64(DELFI-C3).xml | 34 + .../src/test/data/in/AL_DOSAAF-85 (RS-44).xml | 57 + .../test/data/in/AL_DRAGONSat(AggieSat-2).xml | 30 + .../src/test/data/in/AL_DTUSAT.xml | 20 + .../src/test/data/in/AL_DTUSat-2.xml | 39 + .../src/test/data/in/AL_DUCHIFAT-1.xml | 65 + .../src/test/data/in/AL_DUTHSat (GR01).xml | 21 + .../src/test/data/in/AL_DX-1.xml | 20 + .../src/test/data/in/AL_DaVinci.xml | 61 + .../src/test/data/in/AL_Delfi-n3Xt.xml | 19 + .../src/test/data/in/AL_Delphini-1.xml | 41 + .../src/test/data/in/AL_DeorbitSail.xml | 21 + .../src/test/data/in/AL_Dove-1 - 2.xml | 19 + .../src/test/data/in/AL_DragonSat-1.xml | 18 + .../src/test/data/in/AL_Duchifat3.xml | 73 + .../src/test/data/in/AL_E-Star-2.xml | 42 + .../src/test/data/in/AL_E1P-U2.xml | 24 + .../src/test/data/in/AL_EDSN.xml | 19 + .../src/test/data/in/AL_ELFIN-A.xml | 49 + .../src/test/data/in/AL_ELFIN-B.xml | 49 + .../data/in/AL_EO-88 (FUNcube-5 Nayif-1).xml | 59 + .../src/test/data/in/AL_EQUISat.xml | 45 + .../src/test/data/in/AL_ESEO (FUNcube 4).xml | 81 + .../src/test/data/in/AL_ESTELLE.xml | 19 + .../test/data/in/AL_Eagle-1 (BeakerSat-1).xml | 19 + .../data/in/AL_Eagle-2 ($50SAT MO-76).xml | 36 + .../src/test/data/in/AL_EagleSat-1.xml | 21 + .../src/test/data/in/AL_EcAMSat.xml | 21 + .../src/test/data/in/AL_EduSat-1 (BIRD-N).xml | 29 + .../src/test/data/in/AL_EnduroSat One.xml | 24 + .../src/test/data/in/AL_EntrySat.xml | 67 + .../in/AL_Es'Hail-2 (Phase-4A QO-100).xml | 58 + .../src/test/data/in/AL_EstCube-1.xml | 26 + .../src/test/data/in/AL_ExAlta-1 (CA03).xml | 29 + .../src/test/data/in/AL_ExoCube.xml | 23 + .../src/test/data/in/AL_F-1.xml | 24 + .../src/test/data/in/AL_FACSAT.xml | 46 + .../src/test/data/in/AL_FIREBIRD-II FU3.xml | 24 + .../src/test/data/in/AL_FIREBIRD-II FU4.xml | 24 + .../src/test/data/in/AL_FIREBIRD-U1.xml | 20 + .../src/test/data/in/AL_FIREBIRD-U2.xml | 20 + .../src/test/data/in/AL_FITSAT-1.xml | 19 + .../test/data/in/AL_FMN-1 (FengMaNiu-1).xml | 39 + .../src/test/data/in/AL_FO-12 (JAS-1).xml | 22 + .../src/test/data/in/AL_FO-20(JAS-1b).xml | 20 + .../src/test/data/in/AL_FO-29(JAS-2).xml | 22 + .../src/test/data/in/AL_FO-69(FASTRAC-1).xml | 29 + .../src/test/data/in/AL_FO-70(FASTRAC-2).xml | 29 + .../src/test/data/in/AL_FUNcube-1 (AO-73).xml | 58 + .../src/test/data/in/AL_FalconSAT-3.xml | 25 + .../src/test/data/in/AL_First-MOVE.xml | 53 + .../src/test/data/in/AL_FloripaSat-1.xml | 77 + .../src/test/data/in/AL_FossaSat-1.xml | 56 + .../data/in/AL_Fox-1B (RadFxSat AO-91).xml | 35 + .../src/test/data/in/AL_GEARRSat-1.xml | 21 + .../src/test/data/in/AL_GO-32(TechSat).xml | 21 + .../src/test/data/in/AL_GOMX-1.xml | 53 + .../src/test/data/in/AL_GOMX-3.xml | 25 + .../test/data/in/AL_GRAHAM (PhoneSat1).xml | 20 + .../src/test/data/in/AL_GRIFEX.xml | 24 + .../src/test/data/in/AL_Galassia.xml | 21 + .../src/test/data/in/AL_GeneSat-1.xml | 20 + .../src/test/data/in/AL_Goliat.xml | 22 + .../in/AL_HA-1 (Zhou Enlai Huai'An-1).xml | 45 + .../src/test/data/in/AL_HAUSAT-1.xml | 21 + .../src/test/data/in/AL_HAVELSAT (TR02).xml | 30 + .../src/test/data/in/AL_HO-59(HITSAT).xml | 20 + .../src/test/data/in/AL_HO-68(XW-1).xml | 30 + .../src/test/data/in/AL_HORYU-4.xml | 51 + .../data/in/AL_HawaiiSat1 (HiakaSat1).xml | 28 + .../src/test/data/in/AL_HawkSat-1.xml | 19 + .../src/test/data/in/AL_HiNCube.xml | 18 + .../src/test/data/in/AL_Ho'oponopono-2.xml | 19 + .../src/test/data/in/AL_Hoopoe (IL01).xml | 21 + .../src/test/data/in/AL_Horyu-2.xml | 27 + .../src/test/data/in/AL_Humsat-D.xml | 18 + .../test/data/in/AL_HuskySat-1 - HO-107.xml | 73 + .../src/test/data/in/AL_ICEcube1.xml | 21 + .../src/test/data/in/AL_ICEcube2.xml | 21 + .../src/test/data/in/AL_ICUBE-1.xml | 18 + .../src/test/data/in/AL_INS-1C.xml | 21 + .../src/test/data/in/AL_IO-26(ITAMSAT).xml | 21 + .../data/in/AL_IO-86 (LAPAN-A2 ORARI).xml | 45 + .../src/test/data/in/AL_ION.xml | 21 + .../src/test/data/in/AL_IPEX.xml | 23 + .../src/test/data/in/AL_ISS.xml | 53 + .../src/test/data/in/AL_ISX (CP-11).xml | 25 + .../test/data/in/AL_ISX-SR1 -ISX - CP11.xml | 56 + .../src/test/data/in/AL_ITASAT 1.xml | 61 + .../src/test/data/in/AL_ITF-1.xml | 19 + .../src/test/data/in/AL_ITF-2 (TO-89).xml | 26 + .../src/test/data/in/AL_ITU-pSat1.xml | 27 + .../src/test/data/in/AL_IceCube.xml | 21 + .../src/test/data/in/AL_IiNUSat.xml | 19 + .../test/data/in/AL_InflateSail (GB06).xml | 21 + .../src/test/data/in/AL_InnoSAT-2 .xml | 46 + .../src/test/data/in/AL_Irazu.xml | 21 + .../src/test/data/in/AL_Irvine 02.xml | 49 + .../src/test/data/in/AL_Irvine.xml | 45 + .../src/test/data/in/AL_JAISAT-1.xml | 48 + .../src/test/data/in/AL_JY1SAT -JO-97.xml | 69 + .../src/test/data/in/AL_Jugnu.xml | 19 + .../data/in/AL_Juvenile-1F(Shaonian-Xing).xml | 24 + .../src/test/data/in/AL_K2SAT.xml | 68 + .../src/test/data/in/AL_KAGAYAKI.xml | 23 + .../data/in/AL_KAITUO-1B (CAS-3G DCBB).xml | 30 + .../src/test/data/in/AL_KALAMSAT-V2.xml | 21 + .../src/test/data/in/AL_KAUSAT-5.xml | 30 + .../src/test/data/in/AL_KAZSCISAT-1.xml | 21 + .../src/test/data/in/AL_KKS-1(KISEKI).xml | 23 + .../src/test/data/in/AL_KO-23(KITSAT-A).xml | 21 + .../src/test/data/in/AL_KO-25(KITSAT-B).xml | 21 + .../src/test/data/in/AL_KS-1Q.xml | 21 + .../src/test/data/in/AL_KUTESatPathfinder.xml | 21 + .../src/test/data/in/AL_Kaidun-1.xml | 21 + .../src/test/data/in/AL_Karksat .xml | 57 + .../src/test/data/in/AL_KickSat-2.xml | 21 + .../src/test/data/in/AL_KickSat.xml | 20 + .../src/test/data/in/AL_Knacksat.xml | 55 + .../src/test/data/in/AL_KySat-2.xml | 19 + .../src/test/data/in/AL_LIBERTAD-1.xml | 20 + .../src/test/data/in/AL_LINK (KR01).xml | 21 + .../src/test/data/in/AL_LO-19(LUSAT).xml | 20 + .../data/in/AL_LO-90 (LilacSat-1 CN02).xml | 32 + .../src/test/data/in/AL_LO-93 (DSLWP-A1).xml | 40 + .../src/test/data/in/AL_LO-94 (DSLWP-A2).xml | 40 + .../src/test/data/in/AL_LQSat.xml | 42 + .../src/test/data/in/AL_LUME-1.xml | 24 + .../src/test/data/in/AL_Lambda-Sat.xml | 19 + .../src/test/data/in/AL_LightSail-A.xml | 19 + .../in/AL_LightSail-B (now LightSail-2).xml | 47 + .../test/data/in/AL_LightSat (D-Star One).xml | 30 + .../test/data/in/AL_LilacSat-2 (CAS-3H).xml | 44 + .../src/test/data/in/AL_LitSat-1.xml | 30 + .../data/in/AL_LituanicaSAT-1 (LO-78).xml | 30 + .../test/data/in/AL_LituanicaSAT-2 (LT01).xml | 21 + .../src/test/data/in/AL_Lucky-7.xml | 40 + .../src/test/data/in/AL_M-Cubed.xml | 25 + .../src/test/data/in/AL_M6P.xml | 21 + .../src/test/data/in/AL_MAST.xml | 19 + .../src/test/data/in/AL_MAYA-1.xml | 59 + .../src/test/data/in/AL_MCubed-2.xml | 36 + .../src/test/data/in/AL_MEROPE.xml | 21 + .../src/test/data/in/AL_MINXSS 2.xml | 52 + .../src/test/data/in/AL_MIR.xml | 19 + .../src/test/data/in/AL_MO-30 (UNAMSAT-B).xml | 22 + .../src/test/data/in/AL_MO-46(TiungSat).xml | 21 + .../src/test/data/in/AL_MOVE II.xml | 56 + .../src/test/data/in/AL_MOVE-IIb.xml | 29 + .../src/test/data/in/AL_MYSAT-1.xml | 32 + .../src/test/data/in/AL_MaSat-1(MO-72).xml | 19 + .../src/test/data/in/AL_MakerSat-0.xml | 21 + .../src/test/data/in/AL_Max Valier Sat.xml | 57 + .../src/test/data/in/AL_MeaHuaka'iVoyager.xml | 21 + .../src/test/data/in/AL_MicroMAS-1.xml | 21 + .../src/test/data/in/AL_NCUBE2.xml | 20 + .../src/test/data/in/AL_NIUSAT.xml | 30 + .../src/test/data/in/AL_NJUST-1 (CN03).xml | 21 + .../src/test/data/in/AL_NMARS.xml | 20 + .../src/test/data/in/AL_NO-44(PCsat1).xml | 53 + .../src/test/data/in/AL_NO-45(Sapphire).xml | 21 + .../src/test/data/in/AL_NO-60(RAFT).xml | 21 + .../src/test/data/in/AL_NO-61(ANDE).xml | 21 + .../src/test/data/in/AL_NO-62(FCAL).xml | 21 + .../src/test/data/in/AL_NO-83 (BRICsat).xml | 32 + .../src/test/data/in/AL_NPS-SCAT.xml | 22 + .../data/in/AL_NUDT-PhoneSat (CAS-3I).xml | 21 + .../src/test/data/in/AL_NUDTSat (CN06).xml | 24 + .../src/test/data/in/AL_NanoSail-D2.xml | 20 + .../data/in/AL_NanoSat-6 (Oculus-ASR).xml | 29 + .../test/data/in/AL_Nanosat-7 (Prox-1).xml | 43 + .../src/test/data/in/AL_NanosatC-Br1.xml | 51 + .../src/test/data/in/AL_Negai.xml | 23 + .../src/test/data/in/AL_NepaliSat1 .xml | 57 + .../src/test/data/in/AL_Nexus.xml | 74 + .../src/test/data/in/AL_Nodes-1.xml | 21 + .../src/test/data/in/AL_Nodes-2.xml | 21 + .../src/test/data/in/AL_NuSat-1 (LO-87).xml | 46 + .../src/test/data/in/AL_NuSat-2.xml | 24 + .../src/test/data/in/AL_OO-38(OPAL).xml | 21 + .../src/test/data/in/AL_OPS-Sat.xml | 58 + .../src/test/data/in/AL_OPUSAT.xml | 27 + .../src/test/data/in/AL_ORS-Squared.xml | 20 + .../src/test/data/in/AL_OSIRIS-3U.xml | 28 + .../src/test/data/in/AL_OSSI-1.xml | 24 + .../src/test/data/in/AL_OUFTI-1.xml | 35 + .../data/in/AL_Orbital Factory 2 (OF-2).xml | 51 + .../src/test/data/in/AL_OrigamiSat-1.xml | 61 + .../src/test/data/in/AL_PACE.xml | 25 + .../src/test/data/in/AL_PCSat2.xml | 21 + .../src/test/data/in/AL_PHOENIX (TW01).xml | 21 + .../src/test/data/in/AL_PHOENIX.xml | 61 + .../src/test/data/in/AL_PICPOT.xml | 29 + .../src/test/data/in/AL_PO-28(POSAT).xml | 21 + .../src/test/data/in/AL_PO-34(PANSAT).xml | 20 + .../src/test/data/in/AL_PO-63 (PehuenSat).xml | 22 + .../src/test/data/in/AL_PO-63(PehuenSat).xml | 21 + .../src/test/data/in/AL_POPSAT-HIP1.xml | 22 + .../src/test/data/in/AL_PRISM(HITOMI).xml | 29 + .../src/test/data/in/AL_PROITERES.xml | 23 + .../src/test/data/in/AL_PSAT-2.xml | 73 + .../src/test/data/in/AL_PTecSat.xml | 19 + .../src/test/data/in/AL_PUCP-SAT-1.xml | 19 + .../src/test/data/in/AL_PW-Sat 2.xml | 56 + .../src/test/data/in/AL_PW-Sat1.xml | 22 + .../test/data/in/AL_ParkinsonSAT (PSAT).xml | 54 + .../src/test/data/in/AL_Pegasus (AT03).xml | 24 + .../src/test/data/in/AL_PharmaSat-1.xml | 19 + .../src/test/data/in/AL_PhoneSat24.xml | 20 + .../src/test/data/in/AL_PhoneSat25.xml | 20 + .../src/test/data/in/AL_PicSat.xml | 38 + .../src/test/data/in/AL_PicoDragon.xml | 23 + .../src/test/data/in/AL_Pocket-PUCP.xml | 23 + .../src/test/data/in/AL_PolyITAN-1.xml | 23 + .../test/data/in/AL_PolyITAN-2-SAU (UA01).xml | 21 + .../src/test/data/in/AL_PolySatCP1.xml | 20 + .../src/test/data/in/AL_PolySatCP2.xml | 21 + .../src/test/data/in/AL_PolySatCP3.xml | 20 + .../src/test/data/in/AL_PolySatCP4.xml | 20 + .../src/test/data/in/AL_Pratham.xml | 25 + .../src/test/data/in/AL_PrintSat.xml | 20 + .../src/test/data/in/AL_QARMAN.xml | 50 + .../src/test/data/in/AL_QB50p1 - FUNcube3.xml | 76 + .../src/test/data/in/AL_QB50p2 (EO-80).xml | 75 + .../src/test/data/in/AL_QBEE (SE01).xml | 21 + .../src/test/data/in/AL_QBITO (ES01).xml | 21 + .../src/test/data/in/AL_QUAKESAT.xml | 20 + .../src/test/data/in/AL_QUETZAL-1.xml | 55 + ...antutong-1 (TY-6 Tianyi-6 Xiaoxiang-6).xml | 54 + .../src/test/data/in/AL_Qubescout-S1.xml | 19 + .../src/test/data/in/AL_RAIKO.xml | 21 + .../src/test/data/in/AL_RANGE-A.xml | 21 + .../src/test/data/in/AL_RASAT.xml | 21 + .../src/test/data/in/AL_RAX-1.xml | 20 + .../src/test/data/in/AL_RAX-2.xml | 20 + .../src/test/data/in/AL_RINCON.xml | 21 + .../data/in/AL_RS-1 (Radio Sputnik 1).xml | 21 + .../test/data/in/AL_RS-10 (COSMOS 1861).xml | 30 + .../src/test/data/in/AL_RS-12(Sputnik).xml | 27 + .../test/data/in/AL_RS-14 (Informator-1).xml | 30 + .../src/test/data/in/AL_RS-15(Sputnik).xml | 19 + .../test/data/in/AL_RS-16 (Mozhayets-2).xml | 21 + .../test/data/in/AL_RS-17 (Sputnik 40).xml | 21 + .../test/data/in/AL_RS-18 (Sputnik 41).xml | 21 + .../test/data/in/AL_RS-19 (Sputnik 99).xml | 21 + .../data/in/AL_RS-2 (Radio Sputnik 2).xml | 21 + .../test/data/in/AL_RS-20 (Mozhayets-3).xml | 30 + .../src/test/data/in/AL_RS-21(Sputnik).xml | 18 + .../src/test/data/in/AL_RS-22(Mozhayets).xml | 19 + .../src/test/data/in/AL_RS-23 (Tatyana).xml | 30 + .../src/test/data/in/AL_RS-25.xml | 19 + .../src/test/data/in/AL_RS-28(UgatuSat).xml | 22 + .../data/in/AL_RS-3 (Radio Sputnik 3).xml | 21 + .../src/test/data/in/AL_RS-30(Yubileiniy).xml | 22 + .../src/test/data/in/AL_RS-38(Tatiana-2).xml | 22 + .../src/test/data/in/AL_RS-39 (Chibis-M).xml | 30 + .../data/in/AL_RS-4 (Radio Sputnik 4).xml | 21 + .../data/in/AL_RS-40 (Yubileyny-2 MiR).xml | 21 + .../test/data/in/AL_RS-46 (COSMOS-2491).xml | 30 + .../test/data/in/AL_RS-47 (COSMOS-2499).xml | 30 + .../data/in/AL_RS-5 (Radio Sputnik 5).xml | 21 + .../data/in/AL_RS-6 (Radio Sputnik 6).xml | 21 + .../data/in/AL_RS-7 (Radio Sputnik 7).xml | 21 + .../data/in/AL_RS-8 (Radio Sputnik 8).xml | 21 + .../src/test/data/in/AL_RSP-00.xml | 48 + .../src/test/data/in/AL_Raavana 1 .xml | 57 + .../src/test/data/in/AL_RadSat-u.xml | 56 + .../src/test/data/in/AL_Range A.xml | 58 + .../src/test/data/in/AL_Range B.xml | 55 + .../test/data/in/AL_Reaktor Hello World.xml | 73 + .../src/test/data/in/AL_Robusta-1B.xml | 29 + .../src/test/data/in/AL_Robusta.xml | 19 + .../src/test/data/in/AL_SACRED.xml | 26 + .../src/test/data/in/AL_SAFIR-S.xml | 22 + .../src/test/data/in/AL_SEAM-2.0.xml | 27 + .../src/test/data/in/AL_SEEDS.xml | 21 + .../src/test/data/in/AL_SERPENS.xml | 54 + .../src/test/data/in/AL_SGSat.xml | 21 + .../src/test/data/in/AL_SHIN'EN2 (FO-82).xml | 19 + .../in/AL_SIRIUSSAT-1 (SXC1-181 RS13S).xml | 54 + .../src/test/data/in/AL_SMOG-P (MO-105) .xml | 41 + .../src/test/data/in/AL_SNUSAT-1 (KR02).xml | 21 + .../src/test/data/in/AL_SNUSAT-1b (KR03).xml | 21 + .../src/test/data/in/AL_SNUSAT-2.xml | 55 + .../src/test/data/in/AL_SO-33(SEDSAT-1).xml | 21 + .../src/test/data/in/AL_SO-35(SUNSAT-1).xml | 20 + .../test/data/in/AL_SO-41(SaudiSat-1a).xml | 21 + .../test/data/in/AL_SO-42(SaudiSat-1b).xml | 21 + .../src/test/data/in/AL_SO-43(Starshine).xml | 21 + .../test/data/in/AL_SO-50(SaudiSat-1c).xml | 20 + .../test/data/in/AL_SO-67(SumbandilaSat).xml | 19 + .../src/test/data/in/AL_SOHLA-1(MAIDO-1).xml | 23 + .../src/test/data/in/AL_SOMP-2 (DE02).xml | 25 + .../src/test/data/in/AL_SOMP.xml | 27 + .../src/test/data/in/AL_SONATE.xml | 46 + .../src/test/data/in/AL_SPROUT.xml | 70 + .../src/test/data/in/AL_SRMSAT.xml | 19 + .../src/test/data/in/AL_STARS(KUKAI).xml | 35 + .../src/test/data/in/AL_STARS-AO.xml | 44 + .../test/data/in/AL_STARS-C (Daughter).xml | 34 + .../src/test/data/in/AL_STARS-II (Mother).xml | 35 + .../src/test/data/in/AL_STARS-Me (Mother).xml | 72 + .../data/in/AL_STEP Cube Lab (STEP-1).xml | 25 + .../src/test/data/in/AL_STMSat-1.xml | 25 + .../src/test/data/in/AL_STRaND-1.xml | 23 + .../src/test/data/in/AL_SUCHAI.xml | 28 + .../src/test/data/in/AL_SUSat (AU01).xml | 21 + .../src/test/data/in/AL_SamSat-218D.xml | 21 + .../src/test/data/in/AL_Sathyabamasat.xml | 28 + .../src/test/data/in/AL_SaudiSat-4.xml | 21 + .../src/test/data/in/AL_SeeMe.xml | 61 + .../src/test/data/in/AL_ShindaiSat.xml | 23 + .../in/AL_SiriusSat-2(SXC1-182 RS14S).xml | 54 + .../src/test/data/in/AL_Snuglite.xml | 43 + .../src/test/data/in/AL_Socrat.xml | 21 + .../src/test/data/in/AL_SpaceCube (FR05).xml | 31 + .../src/test/data/in/AL_SpinSat.xml | 18 + .../src/test/data/in/AL_SpooQy-1.xml | 33 + .../src/test/data/in/AL_SporeSat.xml | 19 + .../src/test/data/in/AL_StudSat.xml | 23 + .../src/test/data/in/AL_Suomi 100.xml | 61 + .../src/test/data/in/AL_SurfSat.xml | 26 + .../src/test/data/in/AL_SwampSat II.xml | 69 + .../src/test/data/in/AL_SwampSat.xml | 18 + .../src/test/data/in/AL_Swayam COEP.xml | 25 + .../src/test/data/in/AL_Swiatowid .xml | 63 + .../src/test/data/in/AL_SwissCube-1.xml | 27 + .../src/test/data/in/AL_TBEx-a.xml | 54 + .../src/test/data/in/AL_TBEx-b.xml | 54 + .../src/test/data/in/AL_TIsat-1.xml | 28 + .../src/test/data/in/AL_TJ3Sat.xml | 17 + .../src/test/data/in/AL_TO-31(TMSAT-1).xml | 21 + .../src/test/data/in/AL_TRSI-Sat.xml | 63 + .../test/data/in/AL_TSAT (TestSat-Lite).xml | 21 + .../src/test/data/in/AL_TSUBAME.xml | 23 + .../src/test/data/in/AL_TURKSAT-3USAT.xml | 18 + .../in/AL_TY-3 (Tianyi-3 Xiaoxiang-3).xml | 21 + .../in/AL_TY-5 (Tianyi-5 Xiaoxiang-5).xml | 21 + .../src/test/data/in/AL_TabletSat-Aurora.xml | 18 + .../data/in/AL_Tancredo-1 (UbatubaSat).xml | 25 + .../data/in/AL_Tanusha-SWSU-1 (RS-6S).xml | 25 + .../data/in/AL_Tanusha-SWSU-2 (RS-7S).xml | 25 + .../data/in/AL_Tanusha-SWSU-3 (RS-8S).xml | 25 + .../data/in/AL_Tanusha-SWSU-4 (RS-9S).xml | 25 + .../data/in/AL_Taurus-1 (Jinniuzuo-1).xml | 54 + .../src/test/data/in/AL_TechEdSat-3.xml | 21 + .../src/test/data/in/AL_TechEdSat-4.xml | 21 + .../src/test/data/in/AL_TechEdSat-5.xml | 21 + .../src/test/data/in/AL_TechEdSat.xml | 23 + .../src/test/data/in/AL_TechnoSat.xml | 32 + .../src/test/data/in/AL_TeikyoSat-3.xml | 23 + .../src/test/data/in/AL_Ten-Koh.xml | 47 + .../src/test/data/in/AL_TetherSat.xml | 20 + .../data/in/AL_Tianwang-1A (TW-1A SECM-1).xml | 28 + .../in/AL_Tianwang-1B (TW-1B NJUST-2).xml | 28 + .../data/in/AL_Tianwang-1C (TW-1C NJFA-1).xml | 28 + .../src/test/data/in/AL_TigriSat.xml | 20 + .../src/test/data/in/AL_Toki (BIRD-J).xml | 29 + .../test/data/in/AL_Tomsk-TPU-120 (RS04S).xml | 25 + .../src/test/data/in/AL_Trailblazer-1.xml | 18 + .../src/test/data/in/AL_Triton-1.xml | 22 + .../src/test/data/in/AL_TuPOD.xml | 25 + .../test/data/in/AL_TugSat-1 (CanX-3B).xml | 18 + .../src/test/data/in/AL_UAPSat-1.xml | 19 + .../src/test/data/in/AL_UBAKUSAT.xml | 45 + .../src/test/data/in/AL_UCLSat (GB03).xml | 24 + .../src/test/data/in/AL_UKube-1-FUNcube-2.xml | 35 + .../src/test/data/in/AL_UNICubeSAT.xml | 19 + .../src/test/data/in/AL_UNITEC-1.xml | 24 + .../src/test/data/in/AL_UNSA-SAT1.xml | 20 + .../src/test/data/in/AL_UNSW-EC0 (AU02).xml | 30 + .../src/test/data/in/AL_UO-11(UoSAT-2).xml | 20 + .../src/test/data/in/AL_UO-14(UoSAT-3).xml | 20 + .../src/test/data/in/AL_UO-15 (UoSAT-4).xml | 22 + .../src/test/data/in/AL_UO-22(UoSAT-5).xml | 21 + .../src/test/data/in/AL_UO-36(UoSAT-12).xml | 21 + .../src/test/data/in/AL_UO-9 (UoSAT-1).xml | 24 + .../src/test/data/in/AL_UPSat (GR02).xml | 24 + .../src/test/data/in/AL_URSA MAIOR (IT02).xml | 24 + .../src/test/data/in/AL_USS Langley.xml | 18 + .../src/test/data/in/AL_UWE-1.xml | 20 + .../src/test/data/in/AL_UWE-2.xml | 23 + .../src/test/data/in/AL_UWE-3.xml | 54 + .../src/test/data/in/AL_UWE-4.xml | 62 + .../data/in/AL_UbatubaSat (Tancredo-1).xml | 25 + .../test/data/in/AL_Uguisu (BIRD-JPN) .xml | 57 + .../src/test/data/in/AL_UiTMSat-1.xml | 59 + .../test/data/in/AL_UniBRITE (CanX-3A).xml | 18 + .../src/test/data/in/AL_UniSat-5.xml | 19 + .../src/test/data/in/AL_UniSat-6.xml | 28 + .../src/test/data/in/AL_VDNH-80.xml | 21 + .../src/test/data/in/AL_VELOX-2.xml | 25 + .../src/test/data/in/AL_VELOX-I.xml | 23 + .../src/test/data/in/AL_VELOX-P2.xml | 22 + .../src/test/data/in/AL_VO-52(Hamsat).xml | 27 + .../test/data/in/AL_VO-96 (ExseedSat-1).xml | 58 + .../src/test/data/in/AL_VZLUsat-1 (CZ02).xml | 39 + .../src/test/data/in/AL_Venta-1.xml | 20 + .../src/test/data/in/AL_Vermont Lunar.xml | 20 + .../src/test/data/in/AL_WASEDA-SAT3.xml | 25 + .../src/test/data/in/AL_WE_WISH.xml | 27 + .../src/test/data/in/AL_WO-18(WEBERSAT).xml | 21 + .../src/test/data/in/AL_WO-39(JAWSAT).xml | 21 + .../src/test/data/in/AL_Waseda-SAT2.xml | 23 + .../src/test/data/in/AL_Wren.xml | 22 + .../src/test/data/in/AL_X-CubeSat (FR01).xml | 25 + .../src/test/data/in/AL_XO-53(SSETI).xml | 21 + .../src/test/data/in/AL_XW-2A (CAS 3).xml | 78 + .../src/test/data/in/AL_XW-2B (CAS 3B).xml | 78 + .../src/test/data/in/AL_XW-2C (CAS 3C).xml | 78 + .../src/test/data/in/AL_XW-2D (CAS 3D).xml | 81 + .../src/test/data/in/AL_XW-2F (CAS-3F).xml | 42 + .../src/test/data/in/AL_Xatcobeo.xml | 20 + .../in/AL_Xiaoxiang-1 (TY-1 Tianyi-1).xml | 39 + .../in/AL_Xiaoxiang-2 (TY-2 Tianyi-2).xml | 54 + .../in/AL_Xiaoxiang-4 (TY-4 Tianyi-4).xml | 51 + .../src/test/data/in/AL_ZA-AeroSat(AZ01).xml | 24 + .../src/test/data/in/AL_ZACube-1.xml | 73 + .../src/test/data/in/AL_ZACube-2.xml | 77 + .../src/test/data/in/AL_e-st@r.xml | 19 + .../test/data/in/AL_i-INSPIRE II (AU03).xml | 20 + .../src/test/data/in/AL_myPocketQub.xml | 19 + .../src/test/data/in/AL_nCUBE-1.xml | 21 + .../src/test/data/in/AL_nSight-1 (AZ02).xml | 35 + .../src/test/data/in/AL_skCUBE.xml | 49 + .../Commande/executeCommandeTest.java | 48 + 593 files changed, 29061 insertions(+), 9721 deletions(-) create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/Commande.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/CommandeList.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/executeCommande.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/check/TwoListCompare.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/source/ReadCsvFile.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFlat.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/FlatSatList.java create mode 100644 ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/FlatSatellite.java create mode 100644 ModuleSatelliteDatabase/src/test/data/FileIn/testcommandeSave.txt create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_1KUNS-PF.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_3CAT-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_3CAT1 .xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_4M-LXS.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-5.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-II.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AAUSat3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ACRUX-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AESP14.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AIST-1 (RS-41).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AIST-2 (RS-43).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AISTECHSAT-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AISTECHSAT-3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AISat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ALEXANDER (PhoneSat2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ALMASat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ALSat-1N.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AMSAT-India APRS .xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ANDE-2 (Castor).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ANDE-2(Pollux).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ANTELSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ANUSAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-1(Oscar-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-10(Phase-3B).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-13(Phase-3C).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-16(PACSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-2(Oscar-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-24 (ARSENE).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-27(EYESAT-A).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-3(Oscar-3).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-37(ASUSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-4(Oscar-4).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-40(Phase-3D).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-49(Rubin-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-5(Oscar-5).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-51(Echo).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-54(SuitSat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-6(Phase-2A).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-7(Phase-2B).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-71(AubieSat-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-8(Phase-2D).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-85 (Fox-1A).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-92 (Fox-1D).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AO-95 (Fox-1Cliff).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ARC-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ARISSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ARTSAT1-INVADER (CO-77).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ARTSAT2-DESPATCH (FO-81).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ATL 1 (MO-106).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AZTECHSAT-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Aalto-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Aalto-2 (FI01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Aeneas.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AeroCube-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AeroCube1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AggieSat-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Al-Farabi-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_All-Star - THEIA.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AmurSat (AmGU-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_AoXiang-1 (CN04).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Aoba-VELOX-III.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Aoba-Velox 4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-X.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Argus-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Argus.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Armadillo.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Astrocast-0.2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Athenoxat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Atlantis (US02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-9.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BELL (PhoneSat1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BHUTAN-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BIRD-G (Ghana GhanaSat-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BIRD-M (Mongolia Mazaalai).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BIROS.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BO-47(IDEFIX)BO-48(IDEFIX).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BRAC (BIRD-B).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BRICSat-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BRITE-PL.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BY70-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BeEagleSat (TR01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BeeSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Bevo-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BisonSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Black Knight-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_BugSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CADRE.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CAERUS.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CAMSAT CAS-6.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CANX-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CANX-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CAPE-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CAPE-2 (LO-75).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CAS-3E (XW-2E).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CAS-4A (ZHUHAI-1 01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CAS-4B (ZHUHAI-1 02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CAS-7B (BP-1B).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CHOMPTT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CNUSail-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CO-55(CUTE-I).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CO-56(CUTE17).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CO-57(XI-IV).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CO-58(XI-V).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CO-66(SEEDS-II).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_COMPASS-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_COMPASS-2 - DragSail (DE04).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_COPPER.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CP-6.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CP-7 (DAVE).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CP-9.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CP5.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CSIM.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CSSWE.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CSTB-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CSUNSat1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CUAVA-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CUNYSAT-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CUSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CUSat-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CUTE17+APDII.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CXBN-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CXBN.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CanX-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CanX-5.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Challenger (US01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ChargerSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Chasqui-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Columbia (US04).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CubeBel-1(BSUSat-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CubeBug-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CubeBug-2 (LO-74).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_CubeSail 1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_D-SAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE EXOCONNECT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE Phoenix.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE Sparrow.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE iSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DANDE.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DIWATA-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DO-17(DOVE).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DO-64(DELFI-C3).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DOSAAF-85 (RS-44).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DRAGONSat(AggieSat-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DTUSAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DTUSat-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DUCHIFAT-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DUTHSat (GR01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DX-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DaVinci.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Delfi-n3Xt.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Delphini-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DeorbitSail.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Dove-1 - 2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_DragonSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Duchifat3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_E-Star-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_E1P-U2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_EDSN.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ELFIN-A.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ELFIN-B.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_EO-88 (FUNcube-5 Nayif-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_EQUISat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ESEO (FUNcube 4).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ESTELLE.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Eagle-1 (BeakerSat-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Eagle-2 ($50SAT MO-76).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_EagleSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_EcAMSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_EduSat-1 (BIRD-N).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_EnduroSat One.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_EntrySat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Es'Hail-2 (Phase-4A QO-100).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_EstCube-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ExAlta-1 (CA03).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ExoCube.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_F-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FACSAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-II FU3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-II FU4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-U1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-U2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FITSAT-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FMN-1 (FengMaNiu-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FO-12 (JAS-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FO-20(JAS-1b).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FO-29(JAS-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FO-69(FASTRAC-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FO-70(FASTRAC-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FUNcube-1 (AO-73).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FalconSAT-3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_First-MOVE.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FloripaSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_FossaSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Fox-1B (RadFxSat AO-91).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_GEARRSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_GO-32(TechSat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_GOMX-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_GOMX-3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_GRAHAM (PhoneSat1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_GRIFEX.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Galassia.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_GeneSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Goliat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HA-1 (Zhou Enlai Huai'An-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HAUSAT-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HAVELSAT (TR02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HO-59(HITSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HO-68(XW-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HORYU-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HawaiiSat1 (HiakaSat1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HawkSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HiNCube.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Ho'oponopono-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Hoopoe (IL01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Horyu-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Humsat-D.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_HuskySat-1 - HO-107.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ICEcube1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ICEcube2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ICUBE-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_INS-1C.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_IO-26(ITAMSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_IO-86 (LAPAN-A2 ORARI).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ION.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_IPEX.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ISS.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ISX (CP-11).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ISX-SR1 -ISX - CP11.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ITASAT 1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ITF-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ITF-2 (TO-89).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ITU-pSat1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_IceCube.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_IiNUSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_InflateSail (GB06).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_InnoSAT-2 .xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Irazu.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Irvine 02.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Irvine.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_JAISAT-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_JY1SAT -JO-97.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Jugnu.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Juvenile-1F(Shaonian-Xing).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_K2SAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KAGAYAKI.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KAITUO-1B (CAS-3G DCBB).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KALAMSAT-V2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KAUSAT-5.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KAZSCISAT-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KKS-1(KISEKI).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KO-23(KITSAT-A).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KO-25(KITSAT-B).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KS-1Q.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KUTESatPathfinder.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Kaidun-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Karksat .xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KickSat-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KickSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Knacksat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_KySat-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LIBERTAD-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LINK (KR01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LO-19(LUSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LO-90 (LilacSat-1 CN02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LO-93 (DSLWP-A1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LO-94 (DSLWP-A2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LQSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LUME-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Lambda-Sat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LightSail-A.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LightSail-B (now LightSail-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LightSat (D-Star One).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LilacSat-2 (CAS-3H).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LitSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LituanicaSAT-1 (LO-78).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_LituanicaSAT-2 (LT01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Lucky-7.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_M-Cubed.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_M6P.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MAST.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MAYA-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MCubed-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MEROPE.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MINXSS 2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MIR.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MO-30 (UNAMSAT-B).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MO-46(TiungSat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MOVE II.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MOVE-IIb.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MYSAT-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MaSat-1(MO-72).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MakerSat-0.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Max Valier Sat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MeaHuaka'iVoyager.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_MicroMAS-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NCUBE2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NIUSAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NJUST-1 (CN03).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NMARS.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NO-44(PCsat1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NO-45(Sapphire).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NO-60(RAFT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NO-61(ANDE).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NO-62(FCAL).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NO-83 (BRICsat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NPS-SCAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NUDT-PhoneSat (CAS-3I).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NUDTSat (CN06).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NanoSail-D2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NanoSat-6 (Oculus-ASR).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Nanosat-7 (Prox-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NanosatC-Br1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Negai.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NepaliSat1 .xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Nexus.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Nodes-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Nodes-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NuSat-1 (LO-87).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_NuSat-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_OO-38(OPAL).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_OPS-Sat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_OPUSAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ORS-Squared.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_OSIRIS-3U.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_OSSI-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_OUFTI-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Orbital Factory 2 (OF-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_OrigamiSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PACE.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PCSat2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PHOENIX (TW01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PHOENIX.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PICPOT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PO-28(POSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PO-34(PANSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PO-63 (PehuenSat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PO-63(PehuenSat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_POPSAT-HIP1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PRISM(HITOMI).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PROITERES.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PSAT-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PTecSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PUCP-SAT-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PW-Sat 2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PW-Sat1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ParkinsonSAT (PSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Pegasus (AT03).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PharmaSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PhoneSat24.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PhoneSat25.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PicSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PicoDragon.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Pocket-PUCP.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PolyITAN-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PolyITAN-2-SAU (UA01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Pratham.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_PrintSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_QARMAN.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_QB50p1 - FUNcube3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_QB50p2 (EO-80).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_QBEE (SE01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_QBITO (ES01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_QUAKESAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_QUETZAL-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Qubescout-S1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RAIKO.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RANGE-A.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RASAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RAX-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RAX-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RINCON.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-1 (Radio Sputnik 1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-10 (COSMOS 1861).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-12(Sputnik).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-14 (Informator-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-15(Sputnik).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-16 (Mozhayets-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-17 (Sputnik 40).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-18 (Sputnik 41).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-19 (Sputnik 99).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-2 (Radio Sputnik 2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-20 (Mozhayets-3).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-21(Sputnik).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-22(Mozhayets).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-23 (Tatyana).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-25.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-28(UgatuSat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-3 (Radio Sputnik 3).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-30(Yubileiniy).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-38(Tatiana-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-39 (Chibis-M).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-4 (Radio Sputnik 4).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-40 (Yubileyny-2 MiR).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-46 (COSMOS-2491).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-47 (COSMOS-2499).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-5 (Radio Sputnik 5).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-6 (Radio Sputnik 6).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-7 (Radio Sputnik 7).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RS-8 (Radio Sputnik 8).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RSP-00.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Raavana 1 .xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_RadSat-u.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Range A.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Range B.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Reaktor Hello World.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Robusta-1B.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Robusta.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SACRED.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SAFIR-S.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SEAM-2.0.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SEEDS.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SERPENS.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SGSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SHIN'EN2 (FO-82).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SIRIUSSAT-1 (SXC1-181 RS13S).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SMOG-P (MO-105) .xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-1 (KR02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-1b (KR03).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SO-33(SEDSAT-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SO-35(SUNSAT-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SO-41(SaudiSat-1a).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SO-42(SaudiSat-1b).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SO-43(Starshine).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SO-50(SaudiSat-1c).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SO-67(SumbandilaSat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SOHLA-1(MAIDO-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SOMP-2 (DE02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SOMP.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SONATE.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SPROUT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SRMSAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_STARS(KUKAI).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_STARS-AO.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_STARS-C (Daughter).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_STARS-II (Mother).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_STARS-Me (Mother).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_STEP Cube Lab (STEP-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_STMSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_STRaND-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SUCHAI.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SUSat (AU01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SamSat-218D.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Sathyabamasat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SaudiSat-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SeeMe.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ShindaiSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SiriusSat-2(SXC1-182 RS14S).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Snuglite.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Socrat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SpaceCube (FR05).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SpinSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SpooQy-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SporeSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_StudSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Suomi 100.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SurfSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SwampSat II.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SwampSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Swayam COEP.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Swiatowid .xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_SwissCube-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TBEx-a.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TBEx-b.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TIsat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TJ3Sat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TO-31(TMSAT-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TRSI-Sat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TSAT (TestSat-Lite).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TSUBAME.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TURKSAT-3USAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TY-3 (Tianyi-3 Xiaoxiang-3).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TY-5 (Tianyi-5 Xiaoxiang-5).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TabletSat-Aurora.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Tancredo-1 (UbatubaSat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-1 (RS-6S).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-2 (RS-7S).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-3 (RS-8S).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-4 (RS-9S).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Taurus-1 (Jinniuzuo-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-5.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TechnoSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TeikyoSat-3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Ten-Koh.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TetherSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1A (TW-1A SECM-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1B (TW-1B NJUST-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1C (TW-1C NJFA-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TigriSat.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Toki (BIRD-J).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Tomsk-TPU-120 (RS04S).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Trailblazer-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Triton-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TuPOD.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_TugSat-1 (CanX-3B).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UAPSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UBAKUSAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UCLSat (GB03).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UKube-1-FUNcube-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UNICubeSAT.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UNITEC-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UNSA-SAT1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UNSW-EC0 (AU02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UO-11(UoSAT-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UO-14(UoSAT-3).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UO-15 (UoSAT-4).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UO-22(UoSAT-5).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UO-36(UoSAT-12).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UO-9 (UoSAT-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UPSat (GR02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_URSA MAIOR (IT02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_USS Langley.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UWE-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UWE-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UWE-3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UWE-4.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UbatubaSat (Tancredo-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Uguisu (BIRD-JPN) .xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UiTMSat-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UniBRITE (CanX-3A).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UniSat-5.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_UniSat-6.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_VDNH-80.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-I.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-P2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_VO-52(Hamsat).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_VO-96 (ExseedSat-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_VZLUsat-1 (CZ02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Venta-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Vermont Lunar.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_WASEDA-SAT3.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_WE_WISH.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_WO-18(WEBERSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_WO-39(JAWSAT).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Waseda-SAT2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Wren.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_X-CubeSat (FR01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_XO-53(SSETI).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_XW-2A (CAS 3).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_XW-2B (CAS 3B).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_XW-2C (CAS 3C).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_XW-2D (CAS 3D).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_XW-2F (CAS-3F).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Xatcobeo.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-1 (TY-1 Tianyi-1).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-2 (TY-2 Tianyi-2).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-4 (TY-4 Tianyi-4).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ZA-AeroSat(AZ01).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ZACube-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_ZACube-2.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_e-st@r.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_i-INSPIRE II (AU03).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_myPocketQub.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_nCUBE-1.xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_nSight-1 (AZ02).xml create mode 100644 ModuleSatelliteDatabase/src/test/data/in/AL_skCUBE.xml create mode 100644 ModuleSatelliteDatabase/src/test/java/org/josast/AmsatList/Commande/executeCommandeTest.java diff --git a/ApplicationSatelliteDatabaseCli/README.md b/ApplicationSatelliteDatabaseCli/README.md index f0fa55c4..80ed7789 100644 --- a/ApplicationSatelliteDatabaseCli/README.md +++ b/ApplicationSatelliteDatabaseCli/README.md @@ -41,18 +41,52 @@ To launch the application with option : ``` java -jar ApplicationSatelliteDatabaseCli -h - - ``` - - . +``` +AppCli 0.72 +usage: -h [-C] [-h] [-i <InputFile>] [-I <InputRepository>] [-M] [-O + <OutputDirectory>] [-o <OutputFile>] [-U] [-V] + -C,--Check verify AmsatList File data + -h,--help display help message + -i,--InputFile <InputFile> Input file + -I,--Input Directory <InputRepository> Input directory with all input + xml files (*.xml) + -M,--Merge Merge all input folder to new + Directoy to ouput xml file + -O,--Output Directory <OutputDirectory> Output directory with all input + xml files (*.xml) + -o,--OutputFile <OutputFile> output file + -U,--Update update AmsatList File data + -V,--Version Return application version +``` ### Merge ### +Merge Satellite XML file from a folder to one file. + +``` +java -jar ApplicationSatelliteDatabaseCli.jar -M -I ../DatabaseFile -o ../Data/AmsatList.xml +``` + ### Check ### + +``` +java -jar ApplicationSatelliteDatabaseCli.jar -C -i src/test/data/FileIn/AmsatList.xml +``` + ### Update ### + +Update files from on folder to an other. + +Updated data : + - Satellite status + - +``` +java -jar ApplicationSatelliteDatabaseCli.jar -U -I src/test/data/in -O src/test/data/ou +``` + ## Contributing Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java index cbc9cb6f..19fe6393 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java @@ -194,11 +194,11 @@ public class OptionsAnalysis { ParameterSingleton parameter = ParameterSingleton.getInstance(); parameter.setOutputFile(line.getOptionValue("o")); - System.out.println("Output file dir" + line.getOptionValue("o")); + log.info("Output file dir" + line.getOptionValue("o")); parameter.setInputDirectory(line.getOptionValue("I")); - System.out.println("Input dir" + line.getOptionValue("I")); + log.info("Input dir" + line.getOptionValue("I")); parameter.setOutputDirectory(line.getOptionValue("O")); - System.out.println("OUtput dir" + line.getOptionValue("O")); + log.info("OUtput dir" + line.getOptionValue("O")); parameter.setInputFile(line.getOptionValue("InputFile", "")); cmdList.add(new VersionCmd()); diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java index 1cd81cbb..bb35c9e5 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java @@ -10,7 +10,7 @@ public class UpdateCmd implements Cmd { /** * logger. */ - private Logger log = Logger.getLogger(getClass().getName()); + private Logger log = Logger.getLogger(getClass().getName()); /** * diff --git a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java index 2f7f7346..1655078e 100644 --- a/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java @@ -7,7 +7,7 @@ public class VersionCmd implements Cmd { /** * software version. */ - private String version = "0.71"; + private String version = "0.72"; /** * diff --git a/ModuleSatelliteDatabase/pom.xml b/ModuleSatelliteDatabase/pom.xml index 0478ec14..9a6a1bcf 100644 --- a/ModuleSatelliteDatabase/pom.xml +++ b/ModuleSatelliteDatabase/pom.xml @@ -101,6 +101,12 @@ <version>20190722</version> </dependency> +<!-- read csv file --> +<dependency> + <groupId>com.opencsv</groupId> + <artifactId>opencsv</artifactId> + <version>4.5</version> +</dependency> diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/Commande.java b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/Commande.java new file mode 100644 index 00000000..3e745791 --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/Commande.java @@ -0,0 +1,164 @@ +package org.josast.AmsatList.Commande; + +import java.util.GregorianCalendar; + +import javax.xml.datatype.DatatypeConfigurationException; +import javax.xml.datatype.DatatypeFactory; +import javax.xml.datatype.XMLGregorianCalendar; + +import org.josast.AmsatList.generated.IARUCoordination; +import org.josast.AmsatList.generated.Satellites; + +public class Commande { + + public final static int IARUCoordinationUpdate = 1; + public final static int SatelliteStatusUpdate = 2; + public final static int NasaIDUpdate=3; + + + private String satName; + private int nasaId; + private int action; + private String valueRef; + private String valueNew; + private String comments; + + + + public Commande(String satName, int nasaId, int action, String valueRef, String valueNew, String comments) { + super(); + this.satName = satName; + this.nasaId = nasaId; + this.action = action; + this.valueRef = valueRef; + this.valueNew = valueNew; + this.comments = comments; + } + + public Commande(String[] values) + { + + this.satName = values[0]; + this.nasaId = Integer.parseInt(values[1]); + this.action = Integer.parseInt(values[2]); + this.valueRef = values[3]; + this.valueNew = values[4]; + this.comments = values[5]; + } + + + public String toString() + { + return satName +";"+nasaId+";"+action +";"+ valueRef +";"+ valueNew+";"+ comments+";"; + } + + public static int getIARUCoordinationUpdate() { + return IARUCoordinationUpdate; + } + + + + + public String getSatName() { + return satName; + } + + public void setSatName(String satName) { + this.satName = satName; + } + + public int getNasaId() { + return nasaId; + } + + public void setNasaId(int nasaId) { + this.nasaId = nasaId; + } + + public int getAction() { + return action; + } + + public void setAction(int action) { + this.action = action; + } + + public String getValueRef() { + return valueRef; + } + + public void setValueRef(String valueRef) { + this.valueRef = valueRef; + } + + public String getValueNew() { + return valueNew; + } + + public void setValueNew(String valueNew) { + this.valueNew = valueNew; + } + + public String getComments() { + return comments; + } + + public void setComments(String comments) { + this.comments = comments; + } + + public Satellites execute (Satellites sat) + { + /* veriie que c'est le bon sat */ + if(sat.getNasaID() != this.nasaId) + { + System.out.println("Erreur satellite"); + } + else + { + switch (this.action) + { + case Commande.IARUCoordinationUpdate : + IARUCoordination iaru = sat.getIARUCoordination(); + if (iaru == null) + { + iaru = new IARUCoordination(); + sat.setIARUCoordination(iaru); + } + iaru.setCoordinated(Boolean.parseBoolean(this.getValueNew())); + break; + + case Commande.NasaIDUpdate : + sat.setNasaID(Integer.parseInt(this.valueNew)); + break; + + + case Commande.SatelliteStatusUpdate : + // update Status du satellite + sat.setStatus(this.valueNew); + break; + default : System.out.println("erreur commande"); + + } + + GregorianCalendar gcal = new GregorianCalendar(); + XMLGregorianCalendar xgcal = null; + try { + xgcal = DatatypeFactory.newInstance() + .newXMLGregorianCalendar(gcal); + } catch (DatatypeConfigurationException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + sat.setUpdateDate(xgcal); + + } + + + + + return sat; + + } + +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/CommandeList.java b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/CommandeList.java new file mode 100644 index 00000000..b4b8fb02 --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/CommandeList.java @@ -0,0 +1,89 @@ +package org.josast.AmsatList.Commande; + +import java.io.FileNotFoundException; +import java.io.PrintWriter; +import java.util.Hashtable; +import java.util.Iterator; +import java.util.List; +import java.util.Vector; + +import org.josast.AmsatList.source.ReadCsvFile; + +public class CommandeList { + + + Hashtable<Integer, Commande> HashtableCommande = new Hashtable<Integer, Commande>(); + Vector<Commande> listeCommande = null; + + + public CommandeList(String file) + { + listeCommande = new Vector<Commande> () ; + ReadCsvFile rcv = new ReadCsvFile(); + + List<String[]> listrawcmd = rcv.allLine(file); + + Iterator<String[]> it = listrawcmd.iterator(); + { + while(it.hasNext()) + { + Commande cmd = new Commande(it.next()); + listeCommande.add(cmd); + HashtableCommande.put(cmd.getNasaId(),cmd); + } + } + } + + public CommandeList(Vector<Commande> listeCommande) + { + this.listeCommande = listeCommande; + Iterator<Commande> itr = listeCommande.iterator(); + while(itr.hasNext()){ + Commande cmd = itr.next(); + HashtableCommande.put(cmd.getNasaId(),cmd); + } + } + + + public void save(String file) + { + PrintWriter writer = null; + try { + writer = new PrintWriter(file); + } catch (FileNotFoundException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + Iterator<Commande> itr = listeCommande.iterator(); + while(itr.hasNext()){ + writer.println(itr.next().toString()); + } + + writer.close(); + + } + + public Hashtable<Integer, Commande> getHashtableCommande() { + return HashtableCommande; + } + + public void setHashtableCommande(Hashtable<Integer, Commande> hashtableCommande) { + HashtableCommande = hashtableCommande; + } + + public Vector<Commande> getListeCommande() { + return listeCommande; + } + + public void setListeCommande(Vector<Commande> listeCommande) { + this.listeCommande = listeCommande; + } + + public void print() + { + Iterator<Commande> itr = listeCommande.iterator(); + while(itr.hasNext()){ + System.out.println(itr.next().toString()); + } + } +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/executeCommande.java b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/executeCommande.java new file mode 100644 index 00000000..4d97c6f6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/executeCommande.java @@ -0,0 +1,104 @@ +package org.josast.AmsatList.Commande; + +import java.io.File; +import java.util.Hashtable; +import java.util.List; +import java.util.logging.Logger; + +import org.josast.AmsatList.generated.AmsatList; +import org.josast.AmsatList.generated.Satellites; +import org.josast.ModuleSatelliteDatabase.AmsatListFile; + +public class executeCommande { + + private Logger log = Logger.getLogger(getClass().getName()); + + public void execute(String inputRepository, String outputRepository, CommandeList cmd) { + File inputRepertoire = new File(inputRepository); + File outputRepertoire = new File(outputRepository); + + int i = 0; + if (!inputRepertoire.isDirectory()) { + log.severe(inputRepository + "is not a repository"); + } + if (!outputRepertoire.exists()) { + log.info("create " + inputRepository); + if (!outputRepertoire.mkdir()) { + log.severe(outputRepertoire + "is not created"); + } + } else if (!outputRepertoire.isDirectory()) { + log.severe(outputRepertoire + "is not a repository"); + } + + File[] inputsfiles = inputRepertoire.listFiles(); + if (inputsfiles == null) { + log.severe(inputRepository + "Repository empty"); + } else { + + for (i = 0; i < inputsfiles.length; i++) { + AmsatListFile amsatListfile = new AmsatListFile(); + AmsatList amsatList = amsatListfile.openAmsatList(inputsfiles[i].getAbsolutePath()); + List<Satellites> satellites = amsatList.getSatellites(); + if (satellites.size() != 1) { + log.severe("Wrong number of satellite" + satellites.size()); + } + + Satellites sat = satellites.get(0); + + Hashtable<Integer, Commande> cmdhas = cmd.getHashtableCommande(); + Commande cmdex = cmdhas.get(sat.getNasaID()); + if (cmdex != null) { + sat = cmdex.execute(sat); + log.info("commande à exécuter"); + String fichOutSring = outputRepertoire + "\\AL_" + sat.getName()+".xml"; + amsatListfile.save(fichOutSring, amsatList); + } else { + log.info("pas de commande à exécuter"); + } + + } + } + + } + + + public void copie(String inputRepository, String outputRepository) { + File inputRepertoire = new File(inputRepository); + File outputRepertoire = new File(outputRepository); + + int i = 0; + if (!inputRepertoire.isDirectory()) { + log.severe(inputRepository + "is not a repository"); + } + if (!outputRepertoire.exists()) { + log.info("create " + inputRepository); + if (!outputRepertoire.mkdir()) { + log.severe(outputRepertoire + "is not created"); + } + } else if (!outputRepertoire.isDirectory()) { + log.severe(outputRepertoire + "is not a repository"); + } + + File[] inputsfiles = inputRepertoire.listFiles(); + if (inputsfiles == null) { + log.severe(inputRepository + "Repository empty"); + } else { + + for (i = 0; i < inputsfiles.length; i++) { + AmsatListFile amsatListfile = new AmsatListFile(); + AmsatList amsatList = amsatListfile.openAmsatList(inputsfiles[i].getAbsolutePath()); + List<Satellites> satellites = amsatList.getSatellites(); + if (satellites.size() != 1) { + log.severe("Wrong number of satellite" + satellites.size()); + } + Satellites sat = satellites.get(0); + String fichOutSring = outputRepertoire + "\\AL_" + sat.getName()+".xml"; + amsatListfile.save(fichOutSring, amsatList); + + + } + } + + } + +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/check/TwoListCompare.java b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/check/TwoListCompare.java new file mode 100644 index 00000000..bbc9779e --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/check/TwoListCompare.java @@ -0,0 +1,86 @@ +package org.josast.AmsatList.check; + +import java.util.Enumeration; +import java.util.Vector; + +import org.josast.AmsatList.Commande.Commande; +import org.josast.ModuleSatelliteDatabase.FlatSatList; +import org.josast.ModuleSatelliteDatabase.FlatSatellite; + +public class TwoListCompare { + + public Vector<Commande> compareNoradId(FlatSatList ref, FlatSatList tocomp) { + Vector<Commande> listeCommande = new Vector<Commande>(); + + Enumeration<Integer> idSat = tocomp.keys(); + while (idSat.hasMoreElements()) { + Integer key = (Integer) idSat.nextElement(); + + FlatSatellite fsat = ref.get(key); + FlatSatellite flatSatelliteRef = tocomp.get(key); + + if (fsat == null) { + Commande cmd = new Commande(flatSatelliteRef.getSatelliteName(), flatSatelliteRef.getSatelliteNoradId(), + Commande.NasaIDUpdate, "0", "" + flatSatelliteRef.getSatelliteNoradId(), "norad Id not found"); + listeCommande.add(cmd); + } + } + return listeCommande; + } + + public Vector<Commande> compareIARUCoordination(FlatSatList ref, FlatSatList tocomp) { + Vector<Commande> listeCommande = new Vector<Commande>(); + + Enumeration<Integer> idSat = tocomp.keys(); + + while (idSat.hasMoreElements()) { + Integer key = (Integer) idSat.nextElement(); + + FlatSatellite fsat = ref.get(key); + FlatSatellite FlatSatelliteRef = tocomp.get(key); + + if (fsat != null) { + if (FlatSatelliteRef.isIARUCoordination() != fsat.isIARUCoordination()) { + Commande cmd = new Commande(FlatSatelliteRef.getSatelliteName(), + FlatSatelliteRef.getSatelliteNoradId(), Commande.IARUCoordinationUpdate, + " " + fsat.isIARUCoordination(), "" + FlatSatelliteRef.isIARUCoordination(), + "IARU Coordination Update"); + listeCommande.add(cmd); + } + + } + + } + return listeCommande; + } + + public Vector<Commande> compareSatelliteStatus(FlatSatList ref, FlatSatList tocomp) { + Vector<Commande> listeCommande = new Vector<Commande>(); + + Enumeration<Integer> idSat = tocomp.keys(); + + while (idSat.hasMoreElements()) { + Integer key = (Integer) idSat.nextElement(); + + FlatSatellite FlatSatelliteRef = ref.get(key); + FlatSatellite FlatSatellitetoComp = tocomp.get(key); + + if ((FlatSatellitetoComp != null) && (FlatSatelliteRef!=null)) { + + String refStatus = FlatSatelliteRef.getSatelliteStatus(); + String compStatus = FlatSatellitetoComp.getSatelliteStatus(); + if ((refStatus != null) & (compStatus != null)) { + if (refStatus.compareTo(compStatus) != 0) { + Commande cmd = new Commande(FlatSatelliteRef.getSatelliteName(), + FlatSatelliteRef.getSatelliteNoradId(), Commande.SatelliteStatusUpdate, refStatus, + compStatus, "Satellite status from : " + refStatus + " to " + compStatus); + listeCommande.add(cmd); + } + } + + } + + } + return listeCommande; + } +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/source/ReadCsvFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/source/ReadCsvFile.java new file mode 100644 index 00000000..e65e4213 --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/source/ReadCsvFile.java @@ -0,0 +1,48 @@ +package org.josast.AmsatList.source; + +import java.io.FileNotFoundException; +import java.io.FileReader; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; +import com.opencsv.*; +import com.opencsv.CSVParserBuilder; +import com.opencsv.CSVReader; +import com.opencsv.CSVReaderBuilder; + + +public class ReadCsvFile { + + + + public List<String[]> allLine(String file) { + List<String[]> list = new ArrayList<>(); + FileReader fileReader = null; + try { + fileReader = new FileReader(file); + } catch (FileNotFoundException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + CSVParser parser = new CSVParserBuilder().withSeparator(';').build(); + CSVReader csvReader = new CSVReaderBuilder(fileReader).withCSVParser(parser).build(); + + // CSVReader csvReader = new CSVReader(fileReader,';'); + String[] line; + try { + while ((line = csvReader.readNext()) != null) { + list.add(line); + + } + + fileReader.close(); + csvReader.close(); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + return list; + } + +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java index aa5f0035..6866ae7c 100644 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java @@ -3,7 +3,8 @@ package org.josast.ModuleSatelliteDatabase; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; - +import java.util.List; +import java.util.ListIterator; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import javax.xml.bind.Marshaller; @@ -11,8 +12,12 @@ import javax.xml.bind.PropertyException; import javax.xml.bind.Unmarshaller; import org.josast.AmsatList.generated.AmsatList; +import org.josast.AmsatList.generated.Satellites; public class AmsatListFile { + + FlatSatList amsatListFlat = new FlatSatList(); + AmsatList amsatList = null; /** * @param filein @@ -28,7 +33,7 @@ public class AmsatListFile { * @return */ public AmsatList openAmsatList(File filein) { - AmsatList amsatList = null; + JAXBContext jaxbContext = null; try { @@ -53,12 +58,26 @@ public class AmsatListFile { e.printStackTrace(); } + + setupAmsatListFlat(); return amsatList; } - /** + private void setupAmsatListFlat() { + List<Satellites> listSatellite = amsatList.getSatellites(); + ListIterator<Satellites> it = listSatellite.listIterator(); + while (it.hasNext()) { + Satellites sat = it.next(); + AmsatListFlat amSatFlat = new AmsatListFlat(sat); + amsatListFlat.put(amSatFlat.getSatelliteNoradId(),amSatFlat); + } + + + } + + /** * @param fichOutSring * @param amsatList */ @@ -100,4 +119,22 @@ public class AmsatListFile { } + public FlatSatList getAmsatListFlat() { + return amsatListFlat; + } + + public void setAmsatListFlat(FlatSatList amsatListFlat) { + this.amsatListFlat = amsatListFlat; + } + + public AmsatList getAmsatList() { + return amsatList; + } + + public void setAmsatList(AmsatList amsatList) { + this.amsatList = amsatList; + } + + + } diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFlat.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFlat.java new file mode 100644 index 00000000..69cd59e2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFlat.java @@ -0,0 +1,25 @@ +package org.josast.ModuleSatelliteDatabase; + +import org.josast.AmsatList.generated.Satellites; + +public class AmsatListFlat extends FlatSatellite { + + public AmsatListFlat (Satellites sat) + { + setup(sat); + } + + private void setup(Satellites sat) { + satelliteName = sat.getName(); + satelliteStatus = sat.getStatus(); + satelliteNoradId = sat.getNasaID(); + if(sat.getIARUCoordination() != null) + { + IARUCoordination = sat.getIARUCoordination().isCoordinated(); + } + else { + IARUCoordination=false; + } + } + +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/FlatSatList.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/FlatSatList.java new file mode 100644 index 00000000..9790e62b --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/FlatSatList.java @@ -0,0 +1,21 @@ +package org.josast.ModuleSatelliteDatabase; + +import java.util.Hashtable; + + +/** + * Hashtable with Integer as key. + * Usualy the key is satellite Norad ID. + * @author Christophe + * + */ +public class FlatSatList extends Hashtable<Integer, FlatSatellite> { + + /** + * + */ + private static final long serialVersionUID = -8589972573653156592L; + + // Hashtable<Integer, SatelliteInfo> satelliteListNoradID = new Hashtable<Integer, SatelliteInfo> (); + +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/FlatSatellite.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/FlatSatellite.java new file mode 100644 index 00000000..b360670c --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/FlatSatellite.java @@ -0,0 +1,95 @@ +package org.josast.ModuleSatelliteDatabase; + +public abstract class FlatSatellite { + + protected String satelliteName; + protected String satelliteStatus; + protected int satelliteNoradId; + protected String satelliteUplinkFrequency; + protected String satelliteDownlinkFrequency; + protected String satelliteBeaconFrequency; + protected String satelliteBeaconMode; + protected String satellitebeaconCallsign; + protected String reports; + protected String info; + protected String TelemetryDecode; + protected boolean IARUCoordination; + + + public String getSatelliteName() { + return satelliteName; + } + public void setSatelliteName(String satelliteName) { + this.satelliteName = satelliteName; + } + public String getSatelliteStatus() { + return satelliteStatus; + } + public void setSatelliteStatus(String satelliteStatus) { + this.satelliteStatus = satelliteStatus; + } + public int getSatelliteNoradId() { + return satelliteNoradId; + } + public void setSatelliteNoradId(int satelliteNoradId) { + this.satelliteNoradId = satelliteNoradId; + } + public String getSatelliteUplinkFrequency() { + return satelliteUplinkFrequency; + } + public void setSatelliteUplinkFrequency(String satelliteUplinkFrequency) { + this.satelliteUplinkFrequency = satelliteUplinkFrequency; + } + public String getSatelliteDownlinkFrequency() { + return satelliteDownlinkFrequency; + } + public void setSatelliteDownlinkFrequency(String satelliteDownlinkFrequency) { + this.satelliteDownlinkFrequency = satelliteDownlinkFrequency; + } + public String getSatelliteBeaconFrequency() { + return satelliteBeaconFrequency; + } + public void setSatelliteBeaconFrequency(String satelliteBeaconFrequency) { + this.satelliteBeaconFrequency = satelliteBeaconFrequency; + } + public String getSatelliteBeaconMode() { + return satelliteBeaconMode; + } + public void setSatelliteBeaconMode(String satelliteBeaconMode) { + this.satelliteBeaconMode = satelliteBeaconMode; + } + public String getSatellitebeaconCallsign() { + return satellitebeaconCallsign; + } + public void setSatellitebeaconCallsign(String satellitebeaconCallsign) { + this.satellitebeaconCallsign = satellitebeaconCallsign; + } + public String getReports() { + return reports; + } + public void setReports(String reports) { + this.reports = reports; + } + public String getInfo() { + return info; + } + public void setInfo(String info) { + this.info = info; + } + public String getTelemetryDecode() { + return TelemetryDecode; + } + public void setTelemetryDecode(String telemetryDecode) { + TelemetryDecode = telemetryDecode; + } + public boolean isIARUCoordination() { + return IARUCoordination; + } + public void setIARUCoordination(boolean iARUCoordination) { + IARUCoordination = iARUCoordination; + } + + + + +} diff --git a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java index 8fb4e643..28e2511f 100644 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java @@ -1,14 +1,19 @@ package org.josast.ModuleSatelliteDatabase; +import java.util.Enumeration; import java.util.Hashtable; import java.util.List; import java.util.ListIterator; +import java.util.Vector; +import org.josast.AmsatList.Commande.Commande; import org.josast.AmsatList.generated.AmsatList; import org.josast.AmsatList.generated.Satellites; public class UpdateAmsatListFile { + + private Hashtable<String, String> amsatListStatus = new Hashtable<String, String>(); /** * */ @@ -21,14 +26,48 @@ public class UpdateAmsatListFile { /** * @param filein */ + @Deprecated public UpdateAmsatListFile(final String filein) { alf = new AmsatListFile(); al = alf.openAmsatList(filein); + amsatListStatusSetup(); } + public UpdateAmsatListFile() { - /** + amsatListStatusSetup(); + } + private void amsatListStatusSetup() { + + // init table status + + amsatListStatus.put("decayed", "Decayed"); + amsatListStatus.put("Decayed", "Decayed"); + amsatListStatus.put("Deep Space", "Deep Space"); + amsatListStatus.put("Deep space", "Deep Space"); + amsatListStatus.put("Fail", "Failed"); + amsatListStatus.put("Failed", "Failed"); + amsatListStatus.put("Launch", "Launch"); + amsatListStatus.put("No operational", "Not operational"); + amsatListStatus.put("No operational", "Not operational"); + amsatListStatus.put("Not amateur Satellite", "Not amateur satellite"); + amsatListStatus.put("Unknown", "Unknown"); + amsatListStatus.put("Not operational", "Not operational"); + amsatListStatus.put("Not Operational", "Not operational"); + amsatListStatus.put("Operational", "Operational"); + amsatListStatus.put("Operationnal", "Operational"); + amsatListStatus.put("To be deployed", "To be deployed"); + amsatListStatus.put("To Be Laucnh", "To be launch"); + amsatListStatus.put("To Be Launch", "To be launch"); + amsatListStatus.put("To be launched", "To be launch"); + amsatListStatus.put("To be Launched", "To be launch"); + amsatListStatus.put("unknown", "Unknown"); + amsatListStatus.put("Unknown", "Unknown"); + } + + /** * @param filename */ + @Deprecated public void saveUpdateFile(final String filename) { alf.save(filename, al); } @@ -36,10 +75,11 @@ public class UpdateAmsatListFile { /** * */ + @Deprecated public void updateStatus() { - Hashtable<String, String> amsatListStatus = new Hashtable<String, String>(); + // init table status amsatListStatus.put("decayed", "Decayed"); @@ -98,5 +138,44 @@ public class UpdateAmsatListFile { } } + + + public Vector<Commande> checksatelliteStatus(FlatSatList ref) { + Vector<Commande> listeCommande = new Vector<Commande>(); + + Enumeration<Integer> idSat = ref.keys(); + while (idSat.hasMoreElements()) { + Integer key = (Integer) idSat.nextElement(); + FlatSatellite flatSatelliteRef = ref.get(key); + String status = flatSatelliteRef.getSatelliteStatus(); + + if (status == null) { + + Commande cmd = new Commande(flatSatelliteRef.getSatelliteName(), flatSatelliteRef.getSatelliteNoradId(), + Commande.SatelliteStatusUpdate, "null", "Unknown" , "Set status to Unknown"); + listeCommande.add(cmd); + + } else { + status = status.trim(); + if (amsatListStatus.containsKey(status)) { + String refstatus = amsatListStatus.get(status); + + if (refstatus.compareTo(status) != 0) { + + Commande cmd = new Commande(flatSatelliteRef.getSatelliteName(), flatSatelliteRef.getSatelliteNoradId(), + Commande.SatelliteStatusUpdate, status, refstatus , "Status change :" + status + "to" + refstatus); + listeCommande.add(cmd); + } + } else { + Commande cmd = new Commande(flatSatelliteRef.getSatelliteName(), flatSatelliteRef.getSatelliteNoradId(), + Commande.SatelliteStatusUpdate, status, "Unknown" , "Status change :" + status + "to" + "Unknown"); + listeCommande.add(cmd); + } + } + + } + + return listeCommande; + } } diff --git a/ModuleSatelliteDatabase/src/test/data/FileIn/AmsatList.xml b/ModuleSatelliteDatabase/src/test/data/FileIn/AmsatList.xml index 81f94589..155a3ae7 100644 --- a/ModuleSatelliteDatabase/src/test/data/FileIn/AmsatList.xml +++ b/ModuleSatelliteDatabase/src/test/data/FileIn/AmsatList.xml @@ -1,433 +1,529 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <AmsatList> <Satellites> - <Name>SwampSat</Name> - <NasaID>39402</NasaID> - <Status>Not operational</Status> + <Name>1KUNS-PF</Name> + <NasaID>43466</NasaID> + <Status>Operational</Status> + <IARUCoordination> + <Coordinated>true</Coordinated> + <ProcessusStatus>Coordinated</ProcessusStatus> + <URL>http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=559</URL> + <ResponsibleOperator>5Z4HL Heywood Ouma</ResponsibleOperator> + <ApplicationDate>2017-06-03</ApplicationDate> + <CoordinationDecisionDate>2017-06-23</CoordinationDecisionDate> + <ContactPerson>houma@ieee.org.nospam </ContactPerson> + </IARUCoordination> + <SatelliteInformationStatus>Draft</SatelliteInformationStatus> + <UpdateDate>2019-08-07</UpdateDate> + <Information> + <Title>Information page + https://1kuns-pf.ns0.it/ + - Main - 437385000 + Beacon + 437300000 - FSK - 9600 + GMSK + 9600 + + + GMSK + 1200 + + + GMSK + 2400 + + + GMSK + 4800 + - Ho'oponopono-2 - 39403 - 2013-064Z + 3CAT1 + 43781 Not operational + + India + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=370 + 3CAT1 Hello World has been coordinated by IARU + 3CAT1 Hello World a été coordonné par l'IARU + - Main - 427220000 + Telemetry 1 + 437250000 - GMSK - 9600 + FSK + 9k6 + + + CW + + + + + + + + + + + + + + - ChargerSat-1 - 39405 + 3CAT-2 + 41732 Not operational + + true + coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=371 + Vicente J. Gomez Oviedo EA3GP + 2014-01-23 + 2014-06-09 + vjgomez@tsc.upc.edu.nospam + + Draft + 2020-05-24+02:00 - Main - 437405000 + Beacon + 24010000000 - FSK - 9600 + BPSK + 1000000 + + + + + Beacon + 145970000 + + BPSK + 9600 + - Vermont Lunar - 39407 - decayed + 4M-LXS + 0 + To be launch + 2020-05-24+02:00 Main - 437305000 + 145980000 - FSK - 9600 + WSJT-JT65B - W1VTC2 + LX0OHB - ArduSat-1 - 39412 - decayed + Aalto-1 + 42775 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=292 + Timo Nikkanen OH2EGZ + 2013-03-15 + 2015-06-03 + timo.nikkanen@gmail.com.nospam + + INIT + 2019-08-07 + + Mission description + https://wiki.aalto.fi/display/SuomiSAT + + + + PDF file + https://docs.google.com/file/d/0B9SJ8FHoqwj-eVR2SzhrWFFTZTA/edit + + - Main - 437000000 + Beacon + 437220000 - MSK - 9600 + FSK CW + 9600bps - CW + CW + - WG9XFC-1 + OH2A1S - PicoDragon - 39413 - decayed + Aalto-2 (FI01) + 42729 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=362 + Timo Nikkanen OH2EGZ + 2013-11-13 + 2015-06-18 + timo.nikkanen@gmail.com.nospam + + INIT + 2019-08-07 - Main - 437250000 - - AFSK - 1200 - + Beacon + 437.335 - CW + GFSK + 9600 bps - XV9PID + AALTO2 - ArduSat-X - 39414 - decayed + AAUSAT + 27846 + 2003-031G + Not operational Main - 437007000 + 437450000 - MSK + GMSK 9600 - - CW - - WG9XFC-X + - TechEdSat-3 - 39415 + AAUSat3 + 39087 + 2013-009B Not operational Main - 437465000 + 437425000 - AFSK - 9600 + FSK + 400 CW + OZ3CUB - ZACube-1 - 39417 - 2013-066B + AAUSAT-4 + 41460 Operational - - 2013-11-21 - Orenburg, Russia - - Verified - 2019-05-06 - - F'SATI Web Page - http://www.cput.ac.za/blogs/fsati/zacube-1/ - Project page - - - Twitter - https://www.twitter.com/fsatispace - - + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 + Jens Frederick Dalsgaard OZ2JDN + 2014-01-24 + 2014-07-14 + jdn@es.aau.dk.nospam + + VERIFIED + 2019-08-07 - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=204 - - + Mission description + http://www.space.aau.dk/aausat4/ + + - Main - 14099000 + Beacon + 437425000 - GMSK - 9600 + GFSK + 2400 - AFSK - 1200 + GFSK + 9600 - CW + GFSK + 19200 - 123456 + + CW + + + OZ4CUB - - Repeater - - 145860000 - - - 437245000 - - - - - - AX.25 beacon content - http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf - - - QB50 upload interface - https://upload.qb50.eu/ - - fsatispace@gmail.com - - - UniSat-5 - 39421 - 2013-066F - Not operational + AAUSAT-5 + 40948 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 + Jens Frederick Dalsgaard OZ2JDN + 2014-02-01 + 2014-05-04 + jdn@es.aau.dk.nospam + + INIT + 2019-08-07 + + Mission description + http://www.space.aau.dk/aausat5/ + + - Main - 437175000 + Beacon + 437425000 - GMSK - 9600 + GMSK9k6 + 9600 bps + - Triton-1 - 39427 - 2013-066M - Not operational + AAUSAT-II + 32788 + 2008-021F + Operational + + true + + 2020-05-24+02:00 Main - 2408000000 + 437432000 - 1200bps RC-BPSK CW + FFSK/MSK + 1200 + + + + Main + 437432000 - CW + FSK + 9600 - TRIV0 TRIV1 + OZ2CUB - Delfi-n3Xt - 39428 - 2013-066N - Not operational + ACRUX-1 + 44369 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=644 + Gabriel Abrahams VK3EXO + 2018-09-15 + 2018-11-13 + abrahams.gabi@gmail.com.nospam + + + 2019-06-29 + + + draft + 2019-08-07 + + ACRUX-1 + https://melbournespace.com.au/projects/ + + - Main - 2405000000 + Beacon + 437200000 - BPSK MSK - 2400 + GMSK + 9600bps + CQCQCQ + + + + + + + + + + + + - GOMX-1 - 39430 - 2013-066Q + Aeneas + 38760 + 2012-048C Operational - - 2013-11-21 - Orenburg, Russia - - Verified - 2019-05-06 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=231 - - - - Twitter - https://gomspace.com/gomx-1.aspx - - + + true + + 2020-05-24+02:00 Main - 437250000 + 437600000 - GMSK + AFSK 1200 + KE6YFA-1 + + + + + AeroCube1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 - GMSK - 2400 - - - GMSK - 4800 - - - GMSK + GFSK 9600 - - CW - + - BRITE-PL - 39431 - 2013-066R + AeroCube-2 + 31122 + 2007-012F Not operational Main - 145890000 + 0 - 32Kbps-256Kbps + GFSK + 9600 + - ICUBE-1 - 39432 - 2013-066S + AESP14 + 40389 Not operational Main - 145947000 + 437600000 - 1200bps BPSK/FM-DSB_Transponder + GFSK + 9600 - Humsat-D - 39433 - 2013-066T + AggieSat-4 + 41313 Not operational Main - 437325000 + 436250000 - CW + FSK + 9600 - Wren - 39435 - 2013-066V + AISat + 40054 + 2014-034B Not operational Main - 437405000 - - FSK - 1200 - + 437511000 CW + DP0AIS - Eagle-2 ($50SAT MO-76) - 39436 - Decayed - MO-76 - Draft - 2015-05-30 - - project website - http://www.50dollarsat.info/ - $50SAT (aka Eagle-2 prelaunch) MO-76 was launched aboard Unisat-5 on November 21, 2013 from Dombarovsky, Russia on a Dnepr vehicle. This project is a joint effort involving Professor Bob Twiggs, Morehead State University, Howie DeFelice, AB2S, Michael Kirkhart, KD8QBA, and Stuart Robinson, GW7HPW. (Source AMSAT-NA) - - - Yahoo group Discution - https://groups.yahoo.com/neo/groups/50dollarsat/conversations/topics - - - - Main - 437505000 - - GFSK - 9600 - - - CW - - - RTTY - - - - - - Eagle-1 (BeakerSat-1) - 39437 - 2013-066X + AIST-1 (RS-41) + 39492 + 2013-078C Not operational Main - 437465000 + 435265000 - GFSK - 9600 + CW - VELOX-P2 - 39438 - 2013-066Y + AIST-2 (RS-43) + 39133 + 2013-015D Not operational Main - 145980000 - - BPSK - 1200 - + 435265000 CW @@ -435,1628 +531,1595 @@ - First-MOVE - 39439 - 2013-066Z + AISTECHSAT-2 + 43768 Operational - - 2013-11-21 - Orenburg, Russia - - Verified - 2019-05-06 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=125 - - - - Mission information - https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/first-move/ - First-MOVE On-Board Computer Damaged - As we posted on December 21st 2013, we are not receiving data beacons from First-MOVE anymore. In contrast to the nominal mode in which CW beacons and AX.25 beacons alternate every 60 seconds, we are now hearing only CW beacons every 60 seconds. After trying many different approaches to reset our on-board computer via telecommands we re-analyzed our current options again last week. This analysis resulted in the conclusion, that the on-board software has sustained irreparable damage. The fact that we are receiving CW beacons every 60 seconds indicates, that both the transceiver and the power supply are functioning properly. For the transceiver to return to the 60 second CW beacon mode, it has to be power cycled, since this mode cannot be activated by the on-board software. This means that there was definitively an interruption in the power supply. In case of an interruption, the computer should deactivate the 60 second CW beacon mode as the first task during the boot sequence. As this has obviously not happened, the only conclusion is, that the computer is not getting through the entire boot sequence, probably because it was damaged due to an erroneous write process on the memory chip. Since there is no way to upload new software to First-MOVE we see no possibility to continue the mission and perform the planned experiments. It seems that First-MOVE has become inactive after a very short lifetime. We will still receive the CW beacons, but we will not hear anything but his name. - - + Draft + 2019-08-07 - Main - 145970000 + Beacon + 436730000 - BPSK - 1200 + GMSK + 4800 - CW + GMSK + 49600 - MOVE1 + - - Repeater - - 435520000 - - - 145970000 - - - - CubeBug-2 (LO-74) - 39440 - 2013-066AA + AISTECHSAT-3 + 44103 Operational - - 2013-11-21 - Orenburg, Russia - - Verified - 2019-05-06 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=310 - - + Draft + 2019-08-07 - Main - 437445000 + Beacon + 436730000 - FSK - 1200 + GFSK + 9600 - GMSK - 9600 + GFSK + 4800 - CUBEB2-6 + - - - Amateur Radio – PEØSAT - information on telemetry data - https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/cubebug-2/ - - - - - - - - - PUCP-SAT-1 - 39442 - 2013-066AC - Not operational + ALEXANDER (PhoneSat2) + 39146 + Decayed + 2020-05-24+02:00 Main - 145840000 + 437425000 AFSK 1200 + KJ6KRW - Qubescout-S1 - 39443 - 2013-066AD - Not operational + Al-Farabi-2 + 43805 + Operational + Draft + 2019-08-07 - Main - 437525000 + Beacon + 436500000 - GMSK - 9600 + GMSK + 4800bps + + + CW + + UN1GWA - FUNcube-1 (AO-73) - 39444 - 2013-066AE - Operational - - 2013-11-21 - Orenburg, Russia - - Verified - 2019-05-06 - - project information page - https://funcube.org.uk/ - - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=158 - - + All-Star - THEIA + 39683 + Unknown + 2020-05-24+02:00 - BPSK - 145935000 + Main + 2401700000 BPSK - 1200 - - - - CW - 145815000 - - CW - + 256000 + COSGC1AS - - Repeater - - 435130000 - 435150000 - - - 145950000 - 145970000 - - - - HiNCube - 39445 - 2013-066AF + ALMASat-1 + 38078 + 2012-006B Not operational Main - 438305000 + 437465000 - + FSK + 1200 + ALMASAT - UWE-3 - 39446 - 2013-066AG + ALSat-1N + 41789 Operational - - 2013-11-21 - Orenburg, Russia - - Verified - 2019-05-06 - - project information page - http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-3/ - - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=134 - - + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=485 + Djamel Eddine Baba Hamed 7X4TS + 2015-11-06 + 2016-01-11 + debabahamed@cds.asal.dz.nospam + + Draft + 2019-08-07 - Main - 437385000 - - FSK - 9600 - + Beacon + 437650000 - CW + FSK9k6 + 9600 bps - DP0UWG + AL1N + + + AMSAT-India APRS + 44104 + Operational + + 2019-03-04 + Satish Dhawan Space Centre (SDSC) SHAR, Sriharikota + + + Verified + 2019-03-31 + + Project description + http://amsatindia.org/ + This experimental radio payload on the fourth stage platform is an Automatic Packet Reporting System (APRS) – also called a digipeater. + + Charge utile radioamateur fixée sur le quatriéme étage de la fusée PSLV. La charge utile est un digipeater + + + IARU Coordination + + Payload have not been coordinated - APRS default frequency + La fréquence utilisée par la charge utile n'a pas été coordonnée - Utilisation de la fréquence APRS par défaut + + + + APRS + + 1458250000 + + + 1458250000 + + AFSK 1200 + + - Amateur Radio – PEØSAT - information on telemetry data - https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/uwe-3/ + + - - http://www.dk3wn.info/files/uwe3_online.zip + + - FIREBIRD-U1 - 39463 - 2013-072B - Not operational + AmurSat (AmGU-1) + 44394 + Operational + Draft + 2019-08-07 + + IARU coordination Declined + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + - Main - 437405000 + Beacon + 436250000 - FSK - 19200 + mobitex + 4800bps - K7MSU + - FIREBIRD-U2 - 39464 - 2013-072C - Not operational + ANDE-2 (Castor) + 35694 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=144 + Iavan Galysh KD4HBO + 2009-01-03 + 2009-07-02 + Ivan.galysh@nrl.navy.mil.nospam + + Draft + 2019-08-07 - Main - 437230000 + Beacon + 145825000 - FSK - 19200 + AFSK + 1200 bps - K7MSU + KD4HBO-1 - MCubed-2 - 39469 - 2013-072H - Operational - - 2013-12-06 - Air Force Western Test Range - - Verified - 2019-05-06 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=265 - - - - MCubed-2 recovery - http://www.ne.jp/asahi/hamradio/je9pel/mc2recov.htm - - + ANDE-2(Pollux) + 35693 + Decayed + 2020-05-24+02:00 Main - 437485000 + 145825000 - GMSK - 9600 + AFSK + 1200 - NOCALL + POLLUX-1 - - - - CUNYSAT-1 - 39470 - 2013-072J - Not operational - Main - 437505000 - - GMSK - 9600 - + 145825000 - CW + AFSK + 1200 + KD4HBO-1 - IPEX - 39471 - 2013-072K + ANTELSat + 40034 + 2014-033AA Not operational Main - 437270000 + 437280000 - GMSK - 9600 + AFSK GFSK/MSK + 1200 CW - KJ6KSL-1 + CX1SAT - AIST-1 (RS-41) - 39492 - 2013-078C - Not operational + ANUSAT + 34808 + Decayed + Draft + 2019-08-07 - Main - 435265000 + Beacon + 137400000 - CW + AFSK + 1200 bps + - E-Star-2 - 41459 - 2016-025D - Operational - - 2016-04-25 - Kourou, Guyanne Française - + AO-1(Oscar-1) + 214 + Decayed + AO-1 Verified - 2019-02-14 - - Porject page - http://www.cubesatteam-polito.com/e-star-ii/ - - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=241 - - + 2020-05-24+02:00 Main - 437485000 - - AFSK - 1200 - + 144983000 CW - + - CAERUS - 0 + AO-2(Oscar-2) + 305 + Decayed + AO-2 Verified - 2019-02-14 + 2020-05-24+02:00 Main - 437600000 + 144983000 - AFSK - 1200 + CW - KJ6FIX-1 + - TetherSat - 0 - No operational - Verified - 2019-02-14 - - + AO-3(Oscar-3) + 1293 + 1965-016F + Not operational + AO-3 + Verified + 2018-11-28 + + Main - 437100000 - - GFSK - 9600 - - + + 145975000 + 146025000 + + + 144325000 + 144375000 + + SSB/CW + + - LitSat-1 - 39568 - decayed + AO-4(Oscar-4) + 1902 + Decayed + AO-4 + Verified + 2020-05-24+02:00 - - Main - 145965000 - - SSB - - - + Main - 435138000 - - FSK - 9600 - - - CW - - LY1LS - + + 432145000 + 432155000 + + + 144300000 + 144310000 + + SSB/CW + + - LituanicaSAT-1 (LO-78) - 39569 - decayed + AO-5(Oscar-5) + 4321 + 1970-008B + Not operational + AO-5 + Verified + 2018-11-28 - Main - 435176000 + TLM1 + 144050000 - FM_tone 670Hz + CW + - Main - 437275000 - - FSK - 9600 - + TLM2 + 29450000 CW - LY5N + - ArduSat-2 - 39570 - decayed + AO-6(Phase-2A) + 6236 + 1972-082B + Not operational + AO-6 Main - 437000000 + 0 - 9600bps MSK CCSDS + CW + - UAPSat-1 - 39571 - Not operational + AO-7(Phase-2B) + 7530 + 1974-089B + Operational + + 1974-11-15 + Vandenberg + + AO-7 - Main - 437385000 + Mode V/A (A) TLM Beacon + 29502000 - AFSK - 1200 + CW - OA0UAP-1 + - - - - ShindaiSat - 39572 - decayed - - Main - 437485000 + Mode U/V (B) TLM Beacon + 1459775000 - AFSK - 1200 + CW + + + + Mode U TLM Beacon + 435100000 CW - JR0ZST + - ITF-1 - 39573 - decayed + AO-8(Phase-2D) + 10703 + 1978-026B + Not operational + AO-8 Main - 437525000 + 29402000 CW - JQ1ZLO + - - - - OPUSAT - 39575 - decayed - Main - 437154000 - - AFSK - 1200 - - - GFSK - 9600 - + 435095000 CW - JL3ZCA + - TeikyoSat-3 - 39576 - decayed + AO-10(Phase-3B) + 14129 + 1983-058B + Not operational + AO-10 Main - 437450000 - - AFSK - 1200 - + 145810000 CW - JQ1ZKM + - ARTSAT1-INVADER (CO-77) - 39577 - decayed + AO-13(Phase-3C) + 19216 + Decayed + AO-13 + 2020-05-24+02:00 Main - 437325000 - - 1k2AFSK DigiTalker CW - + 145812000 CW - JQ1ZKK + - STARS-II (Mother) - 39579 - decayed + AO-16(PACSAT) + 20439 + 1990-005D + Not operational + AO-16 Main - 437245000 - - AFSK - 1200 - + 2401143000 - CW + PSK - JR5YDX + PACSAT-11-12 + + + + AO-24 (ARSENE) + 22654 + Not operational + AO-24 + Draft + 2020-05-24+02:00 + - Main - 437255000 + Beacon + 2446540000 - AFSK - 1200 + AFSK + 1200bps + + + + Beacon + 145975000 - CW + AFSK + 1200bps - JR5YDY + - SporeSat - 39681 - unknown + AO-27(EYESAT-A) + 22825 + 1993-061C + Not operational + AO-27 Main - 437100000 + 436795000 AFSK 1200 + - All-Star - THEIA - 39683 - unknown - + AO-37(ASUSAT) + 26065 + 2000-004E + Not operational + AO-37 + Main - 2401700000 + 0 - BPSK - 256000 + FSK + 9600 - COSGC1AS + - PhoneSat25 - 39684 - decayed + AO-40(Phase-3D) + 26609 + 2000-072B + Not operational + AO-40 Main - 437425000 + 2401323000 - AFSK - 1200 + PSK + 400 - KJ6KRW + - KickSat - 39685 - decayed + AO-49(Rubin-2) + 27605 + 2002-058A + Not operational + AO-49 Main - 437505000 + 145825000 - 1200bps AFSK - 1200 + U/1200D/9600 - KD2BHC + MSK - SPROUT - 39770 - 2014-029E - Operational - - 2014-05-24 - Tanegashima Space Center - - None - Verified - 2015-08-10 - - SPace Research On Unique Technology Web Page - http://sat.aero.cst.nihon-u.ac.jp/sprout-e/ - There are 3 main missions in SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector - Trois missions sont allouées au satellite SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector - + AO-51(Echo) + 28375 + 2004-025K + Not operational + AO-51 - CW - FM Packet - 437525000 - - AFSK - 1200 - - - GMSK - 9600 - + Main + 435150000 - CW + FM_tone670Hz - JQ1ZJQ + - SSTV - 437600000 + Main + 435150000 - SSTV + FSK + 9600 + PECHO-11-12 - - Digipeater - - 437600000 - - - 437600000 - - - - - - Sprout telemetry format - http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Formats%20of%20telemetry-e.html - - - Sprout team propose different types of Report - http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Amateur%20satellite-e.html - - http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Software-e.html - - - - BugSat-1 - 40014 - 2014-033E - Operational - - 2014-06-19 - Orenburg, Russia - - Verified - 2019-05-06 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=376 - - - - Wikipedia - https://en.wikipedia.org/wiki/BugSat_1 - - - Main - 437445000 + 435150000 - GMSK - 9600 + FSK - LU7AA + 9600 + PACB-11-12 - - - - - - - - - - - http://www.dk3wn.info/software.shtml - - TabletSat-Aurora - 40017 - 2014-033H + AO-54(SuitSat) + 28933 Not operational + AO-54 + Draft + 2020-05-24+02:00 Main - 437050000 + 0 - 9600bps GMSK D-STAR + FM + - DUCHIFAT-1 - 40021 - 2014-033M - Operational - - 2014-06-19 - Orenburg, Russia - - Verified - 2019-05-06 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=258 - - - - Duchifat 1 site - http://www.h-space-lab.org/php/duchifat1-en.php - - + AO-71(AubieSat-1) + 37854 + 2011-061E + Not operational Main - 145980000 + 437473000 - BPSK + AFSK 1200 CW - 4X4HSL + - - APRS Digipeater - - 435220000 - - - 145980000 - - AFSK / BPSK - 1200 - - - - - - - - - - - - http://www.h-space-lab.org/download/Public%20Release.rar - - PACE - 40023 - No operational + AO-85 (Fox-1A) + 40967 + 2015-058D + Operational + + true + + 2020-05-24+02:00 Main - 437485000 - - AFSK - 1200 - + 145980000 - CW + FM CTCSS 670Hz - NanosatC-Br1 - 40024 - 2014-033Q + AO-92 (Fox-1D) + 43137 Operational - - 2014-06-19 - Orenburg, Russia - - Verified - 2019-05-06 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=209 - - - - NanosatC-Br1 - http://www.h-space-lab.org/php/duchifat1-en.php - - - - - Main - 145865000 + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=456 + Andrew Glassbrenner KO4MA + 2015-04-01 + 2015-04-08 + ko4ma@amsat.org.nospam + + AO-92 + Draft + 2019-08-07 + + + Beacon + 145880000 - BPSK - 1200 + DUV + 200 bps + + + + Repeater + + 435350000 + + + 145880000 + + FM + + + Repeater + + 1267350000 + + + 145880000 + + FM + + + + + AO-95 (Fox-1Cliff) + 43770 + 2018-099N + Operational + + true + + + 2018-12-03 + Vandenberg Air Force Base, California + + AMSAT-OSCAR 95 (AO-95) + Verified + 2020-05-24+02:00 + + project + https://www.amsat.org/fox-1cliff-ready-for-launch/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=455 + Fox-1Cliff has been coordinated by IARU + Fox-1Cliff a été coordonné par l'IARU + + + + Telemetry 1 + 145920000 - CW + FSK + - NCBR1 + + + FM voice repeater mode 1 + + 435300000 + + + 145920000 + + FM + 67 + + + FM voice repeater Mode 2 + + 1267300000 + + + 145920000 + + FM + 67 + - Operating for Amateur Radio - http://www.inpe.br/crs/nanosat/acompanhe/radio_amadores.php + Telemesure software : FOXTelem + https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ - Data acquisition page - http://www3.inpe.br/crs/nanosat/aquisicao_dados.php + + - - http://www.dk3wn.info/files/ncbr1.zip + + https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ - QB50p1 - FUNcube3 - 40025 - 2014-033R + Aoba-Velox 4 + 43940 + 2019-003J Not operational - 2014-06-19 - Yasniy site + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan - EO-79 + Verified - 2015-06-04 + 2019-01-19 - QB50 Precursor Mission page - https://www.qb50.eu/index.php/precursor-flight - EO-79, also known as QB50p1 and FUNcube-3, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-NL constructed transponder as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months. (Source AMSAT-NA) + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=499 + + - Funcube Home page - http://funcube.org.uk/ - Funcube project home page + AOBA VELOX-IV site + http://www.eee.ntu.edu.sg/research/SaRC/Research/Projects/Pages/AOBA-VELOX-IV.aspx + + - Main - 145815000 - - BPSK - 1200 - + Telemetry 1 + 437225000 - CW + GMSK + 9600 - QB50P1 + - - Main - - 435035000 - 435065000 - - - 145935000 - 145965000 - - SSB/CW - yes - - QB50 precursor amateur radio operator page - https://www.qb50.eu/index.php/precursor-amateur-radio-operator - - - CW beacon content - http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf - - - AX.25 beacon content - http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + - QB50 upload interface - https://upload.qb50.eu/ + + - operations@isispace.nl + av4mail@googlegroups.com - POPSAT-HIP1 - 40028 - 2014-033U - Not operational + Aoba-VELOX-III + 41935 + Decayed + Draft + 2019-08-07 - Main - 437405000 + Beacon + 437375000 - 1k2 9k6 CCSDS CW + CW + 0 - CW + AFSK + 1200 bps - POPSAT + JG6YBW - DTUSat-2 - 40030 - 2014-033W - Operational - - 2014-06-19 - Orenburg, Russia - - Verified - 2019-05-06 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=87 - - - - DTUsat Site - http://www.dtusat.dtu.dk/ - - + AoXiang-1 (CN04) + 42735 + Decayed + + true + + Draft + 2020-05-24+02:00 - Main - 2401835000 + Beacon + 2401600000 - MSK - 1200 + BPSK + 9600 bps + NPUAX1 + + + Beacon + 437525000 - CW - + BPSK + 9600 bps + NPUAX1 - - - - QB50p2 (EO-80) - 40032 - 2014-033Y - Not operational - - 2014-06-19 - Yasniy site - - EO-80 - Verified - 2015-06-04 - - QB50 Precursor Mission page - https://www.qb50.eu/index.php/precursor-flight - EO-80, also known as QB50p2, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-F constructed repeater as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months.(source AMSAT-NA) - - - - Le@af 4 - Edition spéciale QB50 - http://www.amsat-f.org/spip/IMG/pdf/leaf4.pdf - Amsat-Francophone publication dedicated to QB50P2 - - - Main - 145880000 - - BPSK - 1200 - + Beacon + 437500000 - CW + BPSK + 9600 bps - QB50P2 + NPUAX1 - - FM voice repeater - - 435080000 - - - 145840000 - - FM - 210.7 - - - - QB50 precursor amateur radio operator page - https://www.qb50.eu/index.php/precursor-amateur-radio-operator - - - CW beacon content - http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf - - - AX.25 beacon content - http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf - - - QB50 upload interface - https://upload.qb50.eu/ - - operations@isispace.nl - - - ANTELSat - 40034 - 2014-033AA + ARC-1 + 40969 + 2015-058F Not operational Main - 437280000 - - AFSK GFSK/MSK - 1200 - + 437565000 CW - CX1SAT - PolyITAN-1 - 40042 - 2014-033AJ - Operational + ArduSat-1 + 39412 + Decayed + 2020-05-24+02:00 Main - 437675000 + 437000000 - FSK + MSK 9600 CW - EM0UKP + WG9XFC-1 - TigriSat - 40043 - 2014-033AK - Operational + ArduSat-2 + 39570 + Decayed + 2020-05-24+02:00 Main - 436000000 + 437000000 - FSK - 9600 + 9600bps MSK CCSDS - HNATIG - ESTELLE - 0 - Unknown - Verified - 2019-02-14 + ArduSat-X + 39414 + Decayed + 2020-05-24+02:00 Main - 580000000 + 437007000 - 1Mbps-10Mbps GFSK BPSK + MSK + 9600 + + + CW + WG9XFC-X - UNSA-SAT1 + Argus 0 - Unknown - Verified - 2019-02-14 + To be launch + 2020-05-24+02:00 Main - 34000000 + 437290000 - BPSK - 230000 + AFSK + 1200 - AISat - 40054 - 2014-034B - Not operational + Argus-2 + 0 + To be launch + + Wallops Flight Facility, états unis + + + Draft + 2020-05-24+02:00 + + IARU information + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=682 + + - Main - 437511000 + Beacon + 437290000 - CW + GMSK + 9600 - DP0AIS + + + + + + + + + + + + + - CanX-4 - 40055 - 2014-034C - Not operational + ARISSat-1 + 37772 + Decayed + 2020-05-24+02:00 Main - 437365000 + 145919000 - 32Kbps-256Kbps BPSK + 39FMlinear/inverti + ng - - - - CanX-5 - 40056 - 2014-034D - Not operational - Main - 437365000 + 145950000 - 32Kbps-256Kbps BPSK + FMVOICE/SSTV/Tel + emetry - - - - VELOX-I - 40057 - 2014-034E - Not operational - Main - 145980000 + 145919000 - FSK - 9600 + BPSK + 1000 CW - VELOXI + RS01S - - - - IiNUSat - 0 - Unknown - Verified - 2019-02-14 - Main - 436915000 + 145939000 - 1k2 9k6 2FSK + BPSK + 400 + + + CW - DX-1 - 40071 - 2014-037C + Armadillo + 44352 Operational + + true + + Draft + 2020-05-24+02:00 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=237 + + + + Project information + https://www.facebook.com/UTSatLab/app/208195102528120/?ref=page_internal + + - Main - 438225000 + Beacon + 437525000 - GFSK - 9600 + GMSK + 19200 bps - DAURIA - - - - - UKube-1-FUNcube-2 - 40074 - 2014-037F - Operational - - - Main - 145840000 - BPSK - 1200 + GMSK + 38400 bps CW + - UKUBE1 - - - Main - 145915000 - - BPSK - 1200 - + KE5DTW + + + SATNOGS : Kaitai Struct for telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/armadillo.ksy + + + + + + + + - myPocketQub - 0 - Unknown - Verified - 2018-11-04 + ARTSAT1-INVADER (CO-77) + 39577 + Decayed + 2020-05-24+02:00 Main - 437425000 + 437325000 - + 1k2AFSK DigiTalker CW + + + CW + JQ1ZKK - Venta-1 - 42791 - 2017-036AC - Not operational - Verified - 2018-11-04 + ARTSAT2-DESPATCH (FO-81) + 40321 + Deep Space + 2020-05-24+02:00 Main 437325000 - + CW + JQ1ZNN - Chasqui-1 - 40117 - Not operational + Astrocast-0.2 + 44083 + Operational + + true + + INIT + 2020-05-24+02:00 + + project information + https://www.astrocast.com/ + + - Main - 437025000 - - AFSK - 1200 - + Beacon + 437175000 - GMSK - 9600 + FSK + 1200 bps + HB9GSF - - - - 4M-LXS - 0 - Deep Space - - Main - 145980000 + Beacon + 2406000000 - WSJT-JT65B + FM + 0 - LX0OHB + - ChubuSat-1 - 40300 - 2014-070C - Not operational + Athenoxat-1 + 41168 + Operational + Draft + 2019-08-07 - Main + Beacon 437485000 - 1200bps 9600bps CW + CW + 0 - CW + GMSK + 4800 bps - JJ2YJY + ATX1 - TSUBAME - 40302 - 2014-070E - Not operational + ATL 1 (MO-106) + 44830 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=640 + Levente Dudas HA7WEN + 2018-08-13 + 2018-11-19 + dudas@hvt.bme.hu.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + Magyar-OSCAR 106 (MO-106) + Verified + 2019-11-26 + + Project information + http://gnd.bme.hu + + + - Main - 437275000 - - AFSK - 1200 - + Beacon + 437175000 - CW + GMSK + 12500 - JQ1ZHX + - SpinSat - 40314 - Not operational + Atlantis (US02) + 42737 + Decayed + INIT + 2019-08-07 - Main - 437230000 + Beacon + 436390000 - GFSK - 9600 + GMSK + 9600bps + WD8DOX - ARTSAT2-DESPATCH (FO-81) - 40321 - Deep space + AZTECHSAT-1 + 45261 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=661 + Enrique Sanchez Lara XE1SLE + 2018-11-27 + 2019-05-19 + enrique.sanchez@upaep.mx.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + Project page + http://www.upaep.mx/aztechsat + + - Main - 437325000 + Beacon + 437300000 - CW + GMSK + 9600 - JQ1ZNN + + FSK + 9600 + + + + + + + + + + + + + + - SHIN'EN2 (FO-82) - 40320 - Deep space + BeEagleSat (TR01) + 42736 + Decayed + INIT + 2019-08-07 - Main - 437385000 + Beacon + 437370000 - Transponder WSJT/CW + GMSK + 9600bps - JG6YIG + ON01TR - FIREBIRD-II FU3 - 40377 - 2015-003B - Operational + BeeSat-1 + 35933 + 2009-051C + Not operational + + true + + + Draft + 2020-05-24+02:00 Main - 437395000 + 436000000 - FSK - 19200 + GMSK + 4800 9600 - K7MSU + DP0BEE - FIREBIRD-II FU4 - 40378 - 2015-003C - Operational + BEESAT-2 + 39136 + 2013-015G + Not operational + + true + + + Draft + 2020-05-24+02:00 Main - 437219000 + 435950000 - FSK - 19200 + GMSK + 4800 - K7MSU + + CW + + DP0BEF - GRIFEX - 40379 - 2015-003D - Operational + BEESAT-3 + 39135 + 2013-015F + Not operational + + true + + + Draft + 2020-05-24+02:00 Main - 438480000 + 435950000 GMSK - 1200 + 4800 - KD8SPS + + CW + + DP0BEF - ExoCube - 40380 - 2015-003E + BEESAT-4 + 41619 Operational + + true + + INIT + 2020-05-24+02:00 + + CITATION NEEDED - https://xkcd.com/285/ + + + - Main - 437270000 + Beacon + 435950000 - FSK - 9600 + FM + 0 - CW + GMSK + 4800 bps - KK6HGC XO3 + DP0BEH + + Digipeater + + 435950000 + + + 435950000 + + + - AESP14 - 40389 - Not operational + BEESAT-9 + 44412 + Operational + draft + 2019-08-07 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=657 + + + + Project information + https://www.raumfahrttechnik.tu-berlin.de/menue/research/current_projects/beesat_9/parameter/en/ + + - Main - 437600000 + Beacon + 435950000 - GFSK - 9600 + GMSK + 19200 bps - - - - - Lambda-Sat - 40458 - No operational - - - Main - 437462000 - AFSK - 1200 + GMSK + 38400 bps + + + CW + + DP0BEM + + + information for amateur radio comunitie + https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ + + + Telemetry description + https://www.raumfahrttechnik.tu-berlin.de/fileadmin/fg169/amateur-radio/BEESAT-9_Telemetry_Format.ods + + + + + + + + - AggieSat-4 - 41313 - Not operational + BELL (PhoneSat1) + 39143 + Decayed + 2020-05-24+02:00 Main - 436250000 + 437425000 - FSK - 9600 + AFSK + 1200 + KJ6KRW-1 @@ -2079,253 +2142,264 @@ - LightSail-A - 40661 - decayed + BHUTAN-1 + 43591 + 1998-067PF + Operational + + true + + + 2018-08-10 + ISS + + + Verified + 2020-05-24+02:00 + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=562 + + Main - 437435000 + 437375000 - FSK - 9600 + BPSK + 1200 + + + CW + JG6YKL + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + - ARC-1 - 40969 - 2015-058F + BIRD-G (Ghana GhanaSat-1) + 42821 Not operational + Draft + 2020-05-24+02:00 - Main - 437565000 + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + CW + + JG6YJP - BisonSat - 40968 - 2015-058E - Operational + BIRD-M (Mongolia Mazaalai) + 42822 + Decayed + Draft + 2019-08-07 - Main - 437375000 - - GMSK - 9600 - - - - - - AO-85 (Fox-1A) - 40967 - 2015-058D - Operational - - - Main - 145980000 + Beacon + 437372000 - FM CTCSS 670Hz + GMSK + 9600 bps - - - - - Pocket-PUCP - 0 - No operational - Verified - 2019-02-14 - - - Main - 437200000 - AFSK - 1200 + AFSK + 1200 bps CW + + JG6YJQ - PTecSat - 0 - Unknown - - - Main - 436000000 - - AFSK - 1200 - - - - - - USS Langley - 40652 + BIROS + 41604 Not operational + + true + + Draft + 2020-05-24+02:00 - Main - 437475000 + Beacon + 437525000 - AFSK - 1200 + GMSK + 4800 bps + - Argus - 0 - Unknown + BisonSat + 40968 + 2015-058E + Operational + + true + + 2020-05-24+02:00 Main - 437290000 + 437375000 - AFSK - 1200 + GMSK + 9600 - EDSN - -29 + Black Knight-1 + 39398 + Not operational Main - 437100000 + 437345000 - AFSK - 1200 + - HawaiiSat1 (HiakaSat1) - 0 - Fail - Verified - 2018-11-04 + BO-47(IDEFIX)BO-48(IDEFIX) + 27422 + 2002-021B + Not operational + BO-47 - Main - 437270500 + BO-47 + 145840000 - GFSK - 9600 + BPSK + 400 + - Main - 145980500 + BO-48 + 435270000 - GFSK - 9600 + BPSK + 400 + - ORS-Squared - 0 - Fail - Verified - 2018-11-04 + BRAC (BIRD-B) + 42823 + Decayed + Draft + 2019-08-07 - Main - 437325000 + Beacon + 437372000 - GMSK - 9600 + GMSK + 9600 bps - - - - - PrintSat - 0 - Fail - Verified - 2018-11-04 - - - Main - 437325000 - GMSK - 9600 + AFSK + 1200 bps + + + CW + + JG6YJS - SeeMe - 0 - To be launched + BRICSat-2 + 44355 + Operational + + true + - Vandenberg Air Force Base, California + 2019-08-07 + - + Navy-OSCAR 103 (NO-103) Verified - 2018-11-04 + 2020-05-24+02:00 - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=457 - SeeMehas been coordinated by IARU - SeeMe a été coordonné par l'IARU + Information page + http://aprs.org/bricsat-2.html - Telemetry 1 - 437425000 - - - - - - - - Telemetry 2 - 437450000 - - - - - - - - Telemetry 3 - 2424250000 + Beacon + 437605000 - BPSK - 1.6Mbps + FSK + 9600 - + USNA14 + + APRS + + 145825000 + + + 145825000 + + APRS 1200 bauds + - - + + @@ -2336,220 +2410,212 @@ - K2SAT - 43761 - To be launched - - Vandenberg Air Force Base, California - - - Verified - 2018-11-04 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=552 - K2SAT has been coordinated by IARU - K2SAT a été coordonné par l'IARU - - - K2SAT S-band image receiver - https://destevez.net/2018/07/k2sat-s-band-image-receiver/ - Technical article from DANIEL ESTÉVEZ - Article technique de DANIEL ESTÉVEZ - + BRITE-PL + 39431 + 2013-066R + Not operational - Telemetry 1 - 435835000 + Main + 145890000 - BPSK - 9600 + 32Kbps-256Kbps - - - - Telemetry 2 - 2404000000 - - QPSK - 2 Mb - - - - FM voice repeater - - 145980000 - - - 436225000 - - FM - - - - - - - - - - - - - - MINXSS 2 - 41474 - decayed + BugSat-1 + 40014 + 2014-033E + Operational + + true + - Vandenberg Air Force Base, California + 2014-06-19 + Orenburg, Russia - Verified - 2018-11-04 + 2020-05-24+02:00 - Project web site - http://lasp.colorado.edu/home/minxss/ - - - + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=376 + + - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=477 - MINXSS 2 has been coordinated by IARU - MINXSS 2 a été coordonné par l'IARU - + Wikipedia + https://en.wikipedia.org/wiki/BugSat_1 + + - Telemetry 1 - 437250000 + Main + 437445000 - GMSK - 9600 + GMSK + 9600 - + LU7AA - Ham radio information - http://lasp.colorado.edu/home/minxss/data/ + + - - + + - - https://github.com/jmason86/MinXSS_Beacon_Decoder/releases + + http://www.dk3wn.info/software.shtml - Karksat - 44427 - Operational - - 2019-04-17 - - - + BY70-1 + 41909 + Decayed Draft - 2019-05-07 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=608 - coordinated by IARU - coordonné par l'IARU - - - Project Site - https://www.kraksat.pl/space/ - project page - site du projet - + 2019-08-07 Beacon - 435500000 - - AFSK - 1200 - + 436200000 - AFSK - 9600 + BPSK + 9600 bps - + + + Repeater + + 145920000 + + + 436200000 + + + - - - - - - - - - - - - - OSIRIS-3U - 43027 + CADRE + 41475 Decayed Draft 2019-08-07 Beacon - 437505000 + 437485000 - GMSK - 9600 Bps + GMSK 1Mbit OQPSK + 9600bps + + + + Beacon + 3404000000 - GMSK - 38400 Bps + OQPSK + 1Mbit - Snuglite - 43784 + CAERUS + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437600000 + + AFSK + 1200 + + KJ6FIX-1 + + + + + CAMSAT CAS-6 + 44880 Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=622 + Alan Kung BA1DU + 2018-05-18 + 2018-07-19 + alankung@vip.sina.com.nospam + - Vandenberg Air Force Base, California + 2019-12-20 + CZ-4B launch vehicle from Taiyuan Satellite Launch + Center + - - Verified - 2018-11-04 + INIT + 2020-05-24+02:00 - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=529 - Snuglite has been coordinated by IARU - Snuglite a été coordonné par l'IARU + Information document + https://ukamsat.files.wordpress.com/2019/12/camsat-news-release-for-cas-6-satellie.pdf + + + - Telemetry 1 - 437275000 + CW Beacon + 145910000 - GMSK - 9600 + CW + - + BJ1SO + + + GMSK Beacon + 145890000 + + GMSK + 4800 + + BJ1SO + + U/V Linear Transponder + + 435282000 + + + 145945000 + + + true + - - + Digital telemetry format + + https://ukamsat.files.wordpress.com/2019/12/cas-6-satellites-digital-telemetry-description.pdf + + + + CW telemetry format + + https://ukamsat.files.wordpress.com/2019/12/cas-6-cw-telemetry-encoding-format.pdf + @@ -2560,296 +2626,393 @@ - Knacksat - 43761 - Not Operational - - Vandenberg Air Force Base, California - - - Verified - 2018-11-16 - - project pages - http://www.knacksat.space - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=520 - Knacksat has been coordinated by IARU - Knacksat a été coordonné par l'IARU - + CANX-1 + 27847 + 2003-031H + Not operational - FUNcube telemetry - 435635000 + Main + 437880000 - CW - + AFSK + 1200 + VA3SFL + + + + + CANX-2 + 32790 + 2008-021H + Not operational + + + Main + 0 - GFSK - 9600 + OverGSonly + VA3SFL + + + Main + 0 - GFSK - 1200 + 6KbpsGMSK - HS0K + VA3SFL - - - Hamradio Information - http://www.knacksat.space/amateur-radio - - - - - - knacksat@gmail.com - - - Range B - 43773 + CanX-4 + 40055 + 2014-034C Not operational - - Vandenberg Air Force Base, California - - - Verified - 2018-11-04 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 - RAnge B has been coordinated by IARU - RAnge B a été coordonné par l'IARU - - Telemetry 1 - 437475000 + Main + 437365000 - FSK - 0.1 kbps to 115.2 kbps + 32Kbps-256Kbps BPSK + + + + + CanX-5 + 40056 + 2014-034D + Not operational + + + Main + 437365000 - MSK - 0.1 kbps to 115.2 kbps + 32Kbps-256Kbps BPSK + + + + + CAPE-1 + 31130 + 2007-012P + Not operational + + + Main + 435248000 - GFSK - 0.1 kbps to 115.2 kbps + AFSK + 1200 + + K5USL + + + + + CAPE-2 (LO-75) + 39382 + Decayed + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 - GMSK - 0.1 kbps to 115.2 kbps + CW - + W5UL-15 - - - n - - - - - - - - - - VO-96 (ExseedSat-1) - 43758 - Not operational - - 2018-12-03 - Vandenberg Air Force Base, California - - VUsat-OSCAR 96 (VO-96) - Verified - 2018-10-29 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=636 - ExseedSat 1 has been coordinated by IARU - ExseedSat 1 a été coordonné par l'IARU - + CAS-3E (XW-2E) + 40909 + Operational + + true + + Draft + 2020-05-24+02:00 - TLM 1 - 145900000 + Beacon + 145910000 - - + CW + 0 - + BJ1SF + + + Beacon + 145890000 + + GMSK + 9600 + + BJ1SF - FM voice repeater and digipeater (APRS ) + Repeater - 435340000 + 435270000 + 435290000 - 145900000 + 145915000 + 145935000 - FM - 67 + - - - - - - - - - - - - - AO-95 (Fox-1Cliff) - 43770 - 2018-099N + CAS-4A (ZHUHAI-1 01) + 42761 Operational - - 2018-12-03 - Vandenberg Air Force Base, California - - AMSAT-OSCAR 95 (AO-95) - Verified - 2018-10-29 - - project - https://www.amsat.org/fox-1cliff-ready-for-launch/ - - - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=455 - Fox-1Cliff has been coordinated by IARU - Fox-1Cliff a été coordonné par l'IARU - + + true + + Draft + 2020-05-24+02:00 - Telemetry 1 - 145920000 + Beacon 1 + 145855000 - FSK - + CW + 0 - - - - FM voice repeater mode 1 + + GMSK + 4800bps + + BJ1SK + + + Beacon 2 + 145835000 + + CW + 0 + + + GMSK + 4800bps + + BJ1SK + + + Repeater - 435300000 + 435210000 + 435230000 - 145920000 + 145860000 + 145880000 - FM - 67 + SSB 20_kHz bandwidth inverted + + + + CAS-4B (ZHUHAI-1 02) + 42759 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 145910000 + + CW + 0 + + + GMSK + 4800 bps + + BJ1SL + + + Beacon + 145890000 + + FSK + 4800 + + + - FM voice repeater Mode 2 + Repeater - 1267300000 + 435270000 + 435290000 - 145920000 + 145915000 + 145935000 - FM - 67 + SSB 20_kHz bandwidth inverted - - - Telemesure software : FOXTelem - https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ - - - - - - - https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ - - Irvine 02 - 43789 - Not operational + CAS-7B (BP-1B) + 44443 + + Operational - Vandenberg Air Force Base, California + 2019-07-25 + Jiuquan - - Verified - 2018-10-29 + BIT Progress-OSCAR 102 (BO-102) + verified + 2015-11-02 - Project - https://www.irvinecubesat.org/irvine02 - - + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=659 - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 - Irvine 02 has been coordinated by IARU - Irvine 02a été coordonné par l'IARU + Information + CAS-7B (BP-1B) was developed by the Chinese Amateur Satellite Group (CAMSAT), and in cooperation with the Beijing Institute of Technology (BIT). CAMSAT completed the project planning, design, build, and testing, and manages the on-orbit operation of the satellite. BIT provided the satellite environmental testing, launch support, and financial support. Many students from BIT were involved with the project, learning about satellite technology and amateur radio. The satellite carries a CW telemetry beacon and FM repeater that has been active since launch. - Telemetry 1 - 437450000 + CW Beacon + 435715000 - FSK - 9600 + CW + + FM Transpondeur + + 145900000 + + + 435690000 + + FM + yes + - - + Telemetry information + https://ukamsat.files.wordpress.com/2019/06/camsat-cas-7b-news-release.pdf + + + + + + + + - - + + - + - CubeSail 1 - 43851 - To be Launch + Challenger (US01) + 42721 + Decayed + Draft + 2019-08-07 + + + Beacon + 437510000 + + GMSK + 9600 bps + + QBUS01 + + + + + ChargerSat-1 + 39405 + Not operational + + + Main + 437405000 + + FSK + 9600 + + + + + + Chasqui-1 + 40117 + Not operational + + + Main + 437025000 + + AFSK + 1200 + + + GMSK + 9600 + + + + + + CHOMPTT + 43855 + Operational + + true + + 2018-12-16 Launch Complex 1 - Māhia Peninsula, New Zealand - Draft - 2018-12-11 + Verified + 2020-05-24+02:00 - - + CHOMPTT presentation + http://mstl.atl.calpoly.edu/~bklofas/Presentations/DevelopersWorkshop2014/Conklin_CHOMPTT.pdf + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=523 Telemetry - 437505000 + 437560000 GMSK 9600 bauds @@ -2871,919 +3034,615 @@ - DIWATA-2 - 43678 - 2018-084H - Operational - - 2018-10-29 - Tanegeshima Space Center in Japan - - PO-101 - Verified - 2018-11-06 - - Project page - http://phl-microsat.upd.edu.ph/diwata2 - - - - Facebook - https://www.facebook.com/PHLMicrosat - - + ChubuSat-1 + 40300 + 2014-070C + Not operational - Telemetry APRS - 145900000 + Main + 437485000 - BPSK - 1200 bauds + 1200bps 9600bps CW CW - 120 WPM - D1W2PH + JJ2YJY - - Main - - 437700000 - - - 145900000 - - FM / APRS - - - - - Telemetrie description - http://phl-microsat.upd.edu.ph/diwata2 - - - - - - - - - TBEx-a - 44356 - - - 2019-06-25 - - - - DRAFT - 2019-06-24 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 - has been coordinated by IARU - a été coordonné par l'IARU - - - project information - https://exploration.engin.umich.edu/blog/?page_id=3257 - - - + ChubuSat-2 + 41338 + Not operational + + true + + draft + 2020-05-24+02:00 - Telemetry 1 - 437535000 + Beacon + 437102000 - GMSK - 9k6 + GMSK + 9600 bps - + + AFSK + 1200 bps + + + CW + + + JJ2YPN - - - TBEx – Tandem Beacon Experiment - https://exploration.engin.umich.edu/blog/?page_id=3257 - - - SATNOGS : Kaitai Struct for Telemetry - https://exploration.engin.umich.edu/blog/?page_id=3257 - - - - - - jwcutler@umich.edu - - - EagleSat-1 - 43018 - No operational + ChubuSat-3 + 41339 + Not operational + + true + Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 437645000 + 437424000 - AFSK - 1200bps + GMSK + 9600 bps - + + AFSK + 1200 bps + + + CW + + + JJ2YPO - FACSAT - 43721 - Operational - - India - - - Verified - 2018-11-27 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=635 - FACSAT Hello World has been coordinated by IARU - FACSAT Hello World a été coordonné par l'IARU - + CNUSail-1 + 43133 + Unknown + Draft + 2019-08-07 - Telemetry 1 - 437350000 + Beacon + 437100000 - GMSK - 9k6 + GMSK + 9600 bps - + - - - - - - - - - - - - - InnoSAT-2 - 43738 + CO-55(CUTE-I) + 27844 + 2003-031E Operational - - India - - - Verified - 2018-11-27 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=548 - InnoSAT-2 has been coordinated by IARU - InnoSAT-2 a été coordonné par l'IARU - + + true + + CO-55 + 2020-05-24+02:00 - Telemetry 1 - 437450000 + Main + 4368375000 - - + AFSK + 1200 - + JQ1YCY - - - - - - - - - - - - - XW-2D (CAS 3D) - 40907 - 2015-049J - Operational - - 2015-09-19 - Taiyuan Satellite Launch Center - - - Draft - 2015-11-02 - - XW-2/CAS-3 Frequency Information Chart - https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf - Frequency information for all XW-2 constellation - Information sur les fréuence exploitées par la XW-2 constellation - + CO-56(CUTE17) + 28941 + Decayed + CO-56 + 2020-05-24+02:00 - CW Beacon - 145855000 + Main + 437382000 - CW + AFSK + 1200 - BJ1SE + JQ1YPC - Digital Telemetry - 145835000 + Main + 437382000 GMSK 9600 + + + + + + CO-57(XI-IV) + 27848 + 2003-031J + Operational + + true + + CO-57 + 2020-05-24+02:00 + + + Main + 4368475000 + + AFSK + 1200 + - GMSK - 19200 + CW - BJ1SE + JQ1YCW - - Linear Transponder - - 435210000 - 435230000 - - - 14586000 - 14588000 - - FM - yes - - - - XW-2 CW Telemetry Encoding Format - https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf - - - - - - - - - - - - - - - - - Irvine - 43693 - 2018-088D + CO-58(XI-V) + 28895 + 2005-043F Operational - - - - - Verified - 2018-12-03 + + true + + CO-58 + 2020-05-24+02:00 - Telemetry 1 - 437800000 + Main + 437465000 - FSK - 9600 + AFSK + 1200 - CW - + CW - WI2XPH + JQ1YGW - - - - - - - - - - - - - Robusta-1B - 42792 - 2017-036AD + CO-66(SEEDS-II) + 32791 + 2008-021J Operational - Verified - 2018-12-03 + + true + + CO-66 + 2020-05-24+02:00 Main - 437325000 - - AFSK - 1200 - + 437485000 - CW - + 1200bpsFMCWTalk - FX6FR + erJQ1YGU - SERPENS - 40897 - decayed - - 2015-09-17 - International Space Station - - None - Verified - 2015-09-19 - - SERPENS Ham Radio Page - http://www.aerospace.unb.br/serpens_radioamateurs - SERPENS is a 3U CubeSat which was developed by students at the University of Brasilia and focuses on meteorological data collection. - + Columbia (US04) + 42702 + Not operational + Draft + 2020-05-24+02:00 - Sector A - 145980000 + Beacon + 437055000 - GFSK - 9600 + GMSK + 9600 bps - PY0ESA + KD8CJT + + + + COMPASS-1 + 32787 + 2008-021E + Not operational + - SECTOR B - 437365000 + Main + 437275000 - CW + AFSK + 1200 - MSK - 1200 + CW - PY0ESA + DP0COM - - - SERPEN HamRadio Home Page - http://www.aerospace.unb.br/serpens_radioamateurs - - - Report shall be sent by email - serpens.reports@aerospace.unb.br. - - - - XW-2A (CAS 3) - 40903 - 2015-049E - Operational - - 2015-09-19 - Taiyuan Satellite Launch Center - - + COMPASS-2 - DragSail (DE04) + 42777 + Not operational Draft - 2015-11-02 + 2020-05-24+02:00 - XW-2/CAS-3 Frequency Information Chart - https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf - Frequency information for all XW-2 constellation - Information sur les fréquences exploitées par la XW-2 constellation + Information page + http://149.201.163.33/?page_id=125 - CW Beacon - 145660000 + Beacon + 437300000 - CW + s AFSK + 1200 Bps - BJ1SB + - Digital Telemetry - 145660000 - - GMSK - 9600 - + Beacon + 2403000000 - GMSK - 19200 + AFSK + 1200 Bps - BJ1SB + - - Linear Transponder - - 435030000 - 435050000 - - - 145665000 - 145685000 - - FM - yes - - - XW-2 CW Telemetry Encoding Format - https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf - - - - - - - + Amateur radio information + http://149.201.163.33/?page_id=892 - - + + https://www.dropbox.com/sh/v6ji3pduzm4ue4m/AABQGgBKULDBgroJWs0e-Bqwa?dl=0 - XW-2B (CAS 3B) - 40911 - 2015-049N - Operational - - 2015-09-19 - Taiyuan Satellite Launch Center - - - verified - 2015-11-02 - - XW-2/CAS-3 Frequency Information Chart - https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf - Frequency information for all XW-2 constellation - Information sur les fréuence exploitées par la XW-2 constellation - + COPPER + 39395 + Not operational - CW Beacon - 145725000 - - CW - - BJ1SC - - - Digital Telemetry - 145705000 + Main + 437290000 - GMSK + FSK 9600 + + + + + CP5 + 38763 + 2012-048F + Not operational + + + Main + 437405000 - GMSK - 19200 + AFSK + 1200 - BJ1SC + CP5 - - Linear Transponder - - 435090000 - 435110000 - - - 145815000 - 145795000 - - FM - yes - - - - XW-2 CW Telemetry Encoding Format - https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf - - - - - - - - - - - - - - - - - XW-2C (CAS 3C) - 40906 - 2015-049H + CP-6 + 35003 + Not operational + + + Main + 437365000 + + AFSK + 1200 + + + CW + + N6CP + + + + + CP-7 (DAVE) + 43615 Operational - - 2015-09-19 - Taiyuan Satellite Launch Center - - - Verified - 2015-11-02 + + true + + Draft + 2020-05-24+02:00 - XW-2/CAS-3 Frequency Information Chart - https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf - Frequency information for all XW-2 constellation - Information sur les fréuence exploitées par la XW-2 constellation + Project information + https://www.polysat.org/launched + - CW Beacon - 145790000 + Beacon + 437150000 + + FSK + 9600 bps + CW + - BJ1SD + WI2XNR-1 + + + + CP-9 + 44360 + Operational + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=481 + CP-9 has been coordinated by IARU + CP-9 a été coordonné par l'IARU + + + Information page + https://www.polysat.org/ + + - Digital Telemetry - 145770000 + Telemetry 1 + 437505000 - GMSK - 9600 + FSK + 9k6 - GMSK - 19200 + FSK + 19k2 - BJ1SD + + FSK + 38k4 + + KJ6RQH-1 - - Linear Transponder - - 435150000 - 435170000 - - - 145795000 - 14581500 - - FM - yes - - - XW-2 CW Telemetry Encoding Format - https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf - - - - - - - + + - + - ParkinsonSAT (PSAT) - 40654 - 2015-025D - Not operational - NO-84 + CSIM + 43793 + Operational + + true + + + Vandenberg Air Force Base, California + + Verified - 2018-12-03 + 2020-05-24+02:00 - PSAT - http://aprs.org/psat.html - ParkinsonSAT description + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=585 + CSIM has been coordinated by IARU + CSIM a été coordonné par l'IARU - APRS - 145825000 - - AX25 - 1200 - - - - PSK31 - 435350000 + Telemetry 1 + 437250000 - PSK31 + GMSK + 19200 kbps - W3ADO-5 + - - PSK31 - - 28120000 - - - 435035000 - - SSB PSK31 - - LIVE Telemetry Downlink - http://pcsat.aprs.org + + + + + + + + - AO-1(Oscar-1) - 214 - decayed - AO-1 - Verified - 2018-11-28 + CSSWE + 38761 + 2012-048D + Not operational Main - 144983000 + 437349000 - CW + GMSK + 9600 - + CSSWE - AO-2(Oscar-2) - 305 - decayed - AO-2 - Verified - 2018-11-28 - - - Main - 144983000 - - CW - - - - - - - AO-3(Oscar-3) - 1293 - 1965-016F - Not operational - AO-3 - Verified - 2018-11-28 - - - Main - - 145975000 - 146025000 - - - 144325000 - 144375000 - - SSB/CW - - - - - - AO-4(Oscar-4) - 1902 - decayed - AO-4 - Verified - 2018-11-28 - - - Main - - 432145000 - 432155000 - - - 144300000 - 144310000 - - SSB/CW - - - - - - AO-5(Oscar-5) - 4321 - 1970-008B + CSTB-1 + 31133 + 2007-012R Not operational - AO-5 - Verified - 2018-11-28 - - - TLM1 - 144050000 - - CW - - - - - TLM2 - 29450000 - - CW - - - - - - - F-1 - 38855 - decayed - Verified - 2018-12-03 Main - 437485000 + 0 AFSK 1200 - - CW - - XV1VN + - WE_WISH - 38856 - decayed - Verified - 2018-12-03 + CSUNSat1 + 42715 + Decayed + Draft + 2019-08-07 - Main - 437505000 - - CW - + Beacon + 437400000 - SSTV + CW + 0 - AFSK - 2400 + GMSK + 9600 bps - JQ1ZIJ + CSUNSAT1 - UniSat-6 - 40012 - 2014-033C - Operational - Verified - 2018-11-27 + CUAVA-1 + 0 + To be launch + + + + + DRAFT + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum= + CUAVA-1 has been coordinated by IARU + EntrySat a été coordonné par l'IARU + - Main - 437425000 + Telemetry U + 437075000 GMSK - 9600 - - - CW + 9k6 - II0US + - - - - BeEagleSat (TR01) - 42736 - Decayed - INIT - 2019-08-07 - - Beacon - 437370000 + Telemetry S + 2404000000 - GMSK - 9600bps + + - ON01TR + - - - - DaVinci - 0 - To be Launch - - Launch Complex 1 - Māhia Peninsula, New Zealand - - - Verified - 2018-12-11 - - IARU coordination - http://www.amsatuk.me.uk/iaru/informal_detail.php?serialnum=524 - No frequency coordination has been provided - - - DaVinci project pages - https://www.projectdavincicubesat.org/ - - - - Twitter @DavinciCubeSat - https://twitter.com/davincicubesat - - - - FaceBook - https://www.facebook.com/Project-DaVinci-1225716617456409/ - - - - Telemetry - 436500000 + Telemetry S? + 5840000000 - GMSK - 9600 bauds + + + + + + Telemetry M + 76800000000 - CW + - + + + transpondeur U + + 145875000 + + + + + + transpondeur S + + 2404000000 + + + + + + Transponder + + 5660000000 + + + + - + @@ -3795,141 +3654,149 @@ - D-Star ONE Sparrow - 43881 + CubeBel-1(BSUSat-1) + 43666 Operational - - 2018-12-27 - Vostochny - - - Verified - 2018-12-27 + + true + + Draft + 2020-05-24+02:00 - D-Star ONE presentation - http://www.d-star.one/ - - - - IARU coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=577 + - Telemetry - 435700000 + Beacon + 436990000 - GMSK Mobitex (CMX990) - 4800 bauds + GMSK + 4800 bps - DP1GOS + + GMSK + 9600 bps + + EU10S - D-Star + Digipeater - 437325000 + 436200000 - 435525000 + 436200000 - DSTAR + - - + information for amateur radio comunitie + https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ + + + Telemetry description + https://bsusat.com/projects/telemetry-data-structure - - + How to upload telemetry + https://bsusat.com/for-radio-amateurs/how-to-upload-telemetry - UWE-4 - 43880 - 2018-111E + CubeBug-1 + 39153 + 2013-018D + Not operational + + true + + 2020-05-24+02:00 + + + Main + 437438000 + + AFSK + 1200 + + CUBEB1 + + + + + CubeBug-2 (LO-74) + 39440 + 2013-066AA Operational + + true + - 2018-12-27 - Vostochny + 2013-11-21 + Orenburg, Russia - Verified - 2018-12-28 - - UWE-4 presentation - http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-4/news/ - - + 2020-05-24+02:00 - IARU coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=627 - - + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=310 + + - Telemetry - 437385000 + Main + 437445000 - FSK AX25 - 9600 bauds + FSK + 1200 - DP0UWH + + GMSK + 9600 + + CUBEB2-6 - - Digieater - - 437385000 - - - 437385000 - - - - Telemetry XL file descriptor - http://www7.informatik.uni-wuerzburg.de/fileadmin/10030700/user_upload/forschung/Space_Exploration_Group/UWE4/UWE-4_Beacon.xlsx + Amateur Radio – PEØSAT - information on telemetry data + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/cubebug-2/ - - + + - uwe4@informatik.uni-wuerzburg.de - http://www.dk3wn.info/files/uwe4.zip + + - CHOMPTT - 43855 - Operational + CubeSail 1 + 43851 + Unknown - 2018-12-16 Launch Complex 1 - Māhia Peninsula, New Zealand - Verified - 2018-12-18 - - CHOMPTT presentation - http://mstl.atl.calpoly.edu/~bklofas/Presentations/DevelopersWorkshop2014/Conklin_CHOMPTT.pdf - - + Draft + 2020-05-24+02:00 - IARU coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=523 + + Telemetry - 437560000 + 437505000 GMSK 9600 bauds @@ -3951,453 +3818,329 @@ - Reaktor Hello World - 43743 - Operational - - 2018-12-16 - India - - - Verified - 2018-12-18 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=503 - Reaktor Hello World has been coordinated by IARU - Reaktor Hello World a été coordonné par l'IARU - + CUNYSAT-1 + 39470 + 2013-072J + Not operational - Telemetry 1 - 437775000 + Main + 437505000 - CW - + GMSK + 9600 - 2GFSK - 9k6 + CW - + + + + CUSat-1 + 39266 + 2013-055B + Not operational + - Telemetry corrected frequency - 437775270 - - CW - - + Main + 437405000 - 2GFSK - 9k6 + AFSK + 1200 - + BOTTOM + + + + CUSat-2 + 39271 + Not operational + - Telemetry 1 - 2410000000 + Main + 437485000 - MSK - 1Mbs + AFSK + 1200 - + WG2XTI - - - - - - - - - - - - - CSIM - 43793 + CUTE17+APDII + 32785 + 2008-021C Operational - - Vandenberg Air Force Base, California - - - Verified - 2018-12-18 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=585 - CSIM has been coordinated by IARU - CSIM a été coordonné par l'IARU - + + true + + CO-65 + Draft + 2020-05-24+02:00 - Telemetry 1 - 437250000 + Main + 0 GMSK - 19200 kbps + 9600 - + JQ1YTC + + + Main + 437275000 + + AFSK + 1200 + + + CW + + JQ1YTC - - - - - - - - - - - - - ESEO (FUNcube 4) - 43792 - Operational - - 2018-12-03 - Vandenberg Air Force Base, California - - - Verified - 2019-03-19 - - Project description - https://www.esa.int/Education/ESEO - During its operational mission phase, ESEO will run the scientific experiments and test the various technology demonstrators designed and built by the students, and constantly monitor its own performance. - - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=82 - ESEO has been coordinated by IARU - ESEO a été coordonné par l'IARU - + CXBN + 38762 + 2012-048E + Not operational - TLM 1 - 145895000 - - BPSK - 4800 bps - + Main + 437525000 - BPSK - 1200 bps + GFSK + 9600 - + + + + + CXBN-2 + 42704 + Decayed + Draft + 2019-08-07 + - TLM 2 - 437000000 + Beacon + 437525000 - BPSK - 4800 bps + FSK + 9600 bps + + + + + + DANDE + 39267 + 2013-055C + Not operational + + + Main + 436750000 - BPSK - 1200 bps + GMSK + 9600 - + DANDE-2 - - FM voice repeater - - 1263500000 - - - 145895000 - - FM - 67 - - - - - - - - - - - - https://download.funcube.org.uk/ESEO_Dashboard_v1177.msi - - ITASAT 1 - 43786 - Not operational + DaVinci + 0 + To be launch - + Launch Complex 1 - Māhia Peninsula, New Zealand Verified - 2018-12-18 + 2020-05-24+02:00 - project Web site - http://www.itasat.ita.br/ - - + IARU coordination + http://www.amsatuk.me.uk/iaru/informal_detail.php?serialnum=524 + No frequency coordination has been provided - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=435 - ITASAT 1 has been coordinated by IARU - ITASAT 1 a été coordonné par l'IARU + DaVinci project pages + https://www.projectdavincicubesat.org/ + + + + Twitter @DavinciCubeSat + https://twitter.com/davincicubesat + + + + FaceBook + https://www.facebook.com/Project-DaVinci-1225716617456409/ + - Telemetry 1 - 145860000 + Telemetry + 436500000 - BPSK - 1200 + GMSK + 9600 bauds - - - - Telemetry 1 - 2400150000 - BPSK - 14400 + CW + - + - - + + - - + + - JY1SAT -JO-97 - 43803 - Operational - - 2018-12-03 - Vandenberg Air Force Base, California - - Jordan-OSCAR 97 (JO-97) - Verified - 2018-12-18 - - JY1SAT launch information and Dashboard - https://funcube.org.uk/2018/11/15/jy1sat/ - - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=554 - JY1SAT has been coordinated by IARU - JY1SAT a été coordonné par l'IARU - + Delfi-n3Xt + 39428 + 2013-066N + Not operational - FUNcube telemetry - 145840000 - - BPSK - 1200 - + Main + 2405000000 - SSDV - + BPSK MSK + 2400 - JY1 - - Main - - 435100000 - 435120000 - - - 145855000 - 145875000 - - SSB/CW - yes - - - - Telemetry dashboard - http://data2.amsat-uk.org/ui/jy1sat-fm - - - - - - operations@funcube.org.uk - https://download.funcube.org.uk/JY11Sat_Dashboard_v1160.msi - - MOVE II - 43780 + Delphini-1 + 44030 Operational - - Vandenberg Air Force Base, California - - - Verified - 2018-12-18 - - Project - https://www.move2space.de/MOVE-II/ - MOVE-II is a CubeSat, a tiny satellite with dimensions of 10 x 10 x 13 cm and a mass of 1.2 kg. It is the second satellite of the Technical University of Munich (TUM) and the follow-up project of First-MOVE. The name MOVE is an acronym and stands for Munich Orbital Verification Experiment. The number “II” implies that it is the second of its series. - - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 - MOVE II has been coordinated by IARU - MOVE II a été coordonné par l'IARU - + + true + + Draft + 2020-05-24+02:00 - Telemetry 1 - 145950000 - - BPSK - 9600 - + Beacon + - CW - + 1k2/4k8/9k6* GMSK + 0 - DP0MOV + - - - - Hamradio information - https://www.move2space.de/MOVE-II/radio-amateurs/ - - - - - - - - - - - Range A - 43798 - Operational - - Vandenberg Air Force Base, California - - - Verified - 2018-12-18 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 - RAnge A has been coordinated by IARU - RAnge A a été coordonné par l'IARU - - - Telemetry 1 - 437150000 + Beacon + 437500000 - FSK - 0.1 kbps to 115.2 kbps + GMSK + 1200 Bps - MSK - 0.1 kbps to 115.2 kbps + GMSK + 4800 Bps - GFSK - 0.1 kbps to 115.2 kbps + GMSK + 9600 Bps + + + + + + DeorbitSail + 40719 + Not operational + Drfat + 2020-05-24+02:00 + + + Beacon + 145975000 - GMSK - 0.1 kbps to 115.2 kbps + BPSK + 1200bps - + DOS - - - - - - - - - - - - - Suomi 100 - 43804 + DIWATA-2 + 43678 + 2018-084H Operational + + true + - Vandenberg Air Force Base, California + 2018-10-29 + Tanegeshima Space Center in Japan - + PO-101 Verified - 2018-12-18 + 2020-05-24+02:00 - Project - http://www.suomi100satelliitti.fi/eng - - + Project page + http://phl-microsat.upd.edu.ph/diwata2 + - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=507 - Suomi 100 has been coordinated by IARU - Suomi 100 a été coordonné par l'IARU + Facebook + https://www.facebook.com/PHLMicrosat + - Telemetry 1 - 437775000 + Telemetry APRS + 145900000 - - + BPSK + 1200 bauds - - - - Telemetry 2 - 2410000000 - - + CW + 120 WPM - + D1W2PH + + Main + + 437700000 + + + 145900000 + + FM / APRS + + - - + Telemetrie description + http://phl-microsat.upd.edu.ph/diwata2 @@ -4408,2938 +4151,3703 @@ - SNUSAT-2 - 43782 + DO-17(DOVE) + 20440 + 1990-005E + Not operational + DO-17 + + + Main + 2401220000 + + AFSK + 1200 + + DOVE-1 + + + + + DO-64(DELFI-C3) + 32789 + 2008-021G Operational - - Vandenberg Air Force Base, California - - - Verified - 2018-12-18 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=509 - SNUSAT-2 has been coordinated by IARU - SNUSAT-2 a été coordonné par l'IARU - + + true + + DO-64 + Draft + 2020-05-24+02:00 - Telemetry 1 - 437625000 + Main + 1458675000 - BPSK - 9600 + BPSK + 1200 - + DLFIC3 - Telemetry 2 - 2402000000 + Main + 145930000 - DQPSK - 1.06Mbit/s + CW - + DLFIC3 - - - - - - - - - - - - - ISX-SR1 -ISX - CP11 - 0 - To be Launch + DOSAAF-85 (RS-44) + 44909 + Operational + + false + - Launch Complex 1 - Māhia Peninsula, New Zealand + 2019-12-26 + Plesetsk Cosmodrome - - Verified - 2018-12-11 + Draft + 2020-05-01 - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=514 - - - - Project page - http://www.polysat.org/in-development/ - + satellite information + https://r4uab.ru/2020/04/30/na-sputnike-dosaaf-85-rs-44-dlya-testirovaniya-byl-vklyuchen-radiolyubitelskij-retranslyator/ - Telemetry UHF - 437150000 - - FSK - 9600 bauds - - - - - Telemetry 2 - 5840000000 + Beacon + 435605000 - QPSK - 10 Mb + CW + RS44 + + Transpondeur + + 145935000 + 145995000 + + + 435610000 + 435670000 + + SSB/CW + yes + - - + + - - + + - Atlantis (US02) - 42737 + Dove-1 - 2 + 39144 Decayed - INIT - 2019-08-07 + 2020-05-24+02:00 - Beacon - 436390000 + Main + 2420000000 - GMSK - 9600bps + AFSK + 1200 - WD8DOX - UiTMSat-1 - 43589 - 1998-067PD - Operational - - 2018-08-10 - ISS - - + DRAGONSat(AggieSat-2) + 35690 + Decayed Verified - - BIRDS-2 Operation page - http://birds2.birds-project.com/operation/ - The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. - - - - IARU - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=563 - - + 2020-05-24+02:00 Main - 437375000 + 436250000 - BPSK - 1200 + FSK + 19200 + + + + Main + 437325000 - CW + FSK + 9600 - JG6YKN + - - - Beacon Sequence and Format of BIRDS-2 CubeSats - http://birds2.birds-project.com/operation/ - - - BIRDS-2 Data Submission - http://birds2.birds-project.com/data-submission/ - - - - BIRDS-2 Data Submission - http://birds2.birds-project.com/data-submission/ - - - MAYA-1 - 43590 - 1998-067PE - Operational - - 2018-08-10 - ISS - - - Verified - - BIRDS-2 Operation page - http://birds2.birds-project.com/operation/ - The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. - - - - IARU - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=564 - - + DragonSat-1 + 39383 + Not operational Main - 437375000 - - BPSK - 1200 - + 0000 - CW + FSK + 9600 - JG6YKM - - - Beacon Sequence and Format of BIRDS-2 CubeSats - http://birds2.birds-project.com/operation/ - - - BIRDS-2 Data Submission - http://birds2.birds-project.com/data-submission/ - - - - BIRDS-2 Data Submission - http://birds2.birds-project.com/data-submission/ - - - SIRIUSSAT-1 (SXC1-181 RS13S) - 43595 - 1998-067PG - Operational - - 2018-08-15 - ISS - - - Verified - 2019-02-14 - - Siriussat information page (Russian) - http://sputnix.ru/ru/nashi-sputniki/siriussat-1 - - - http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information - - - Siriussat hamradio information from Sputnix companie - http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information - hamradio information from Spunix Companie - + D-SAT + 42794 + Not operational + Draft + 2020-05-24+02:00 - Main - 435570000 + Beacon + 437505000 - GMSK - 4800 + 4800bps GMSK CW + - RS13S + + GMSK + 4800 bps + + + CW + + + U1-DSAT-U1 - - - - - - - - - - siriussat@sputnix.ru - - Télécharger SPUTNIX Telemetry Viewer (Win ENG) - http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip - - - TechnoSat - 42829 + D-Star ONE EXOCONNECT + 44413 Operational - draft + INIT 2019-08-07 Beacon - 435950000 - - GMSK - 4800bps - + 435700000 - GMSK - 9600bps + mobitex GMSK + 4800 - CW - + mobitex GMSK + 9600 - DP0TBA + - Ten-Koh - 43677 + D-Star ONE iSat + 43879 Operational Draft 2019-08-07 - - Project information - http://kit-okuyama-lab.com/en/ten-koh/ - - Beacon - 437390000 + 435700000 - AFSK - 1200bps + GMSK + 4800 - GMSK - 9600bps - - - CW - + GMSK4k8 + 9600 + DP2GOS + + + Repeater + + 437325000 + + + 435525000 + + FM + + + + + D-Star ONE Phoenix + 43188 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435525000 - WSJT - + D-Star Telemetry + 0 - JG6YKY + DP1GOS - - - amateur information - http://kit-okuyama-lab.com/en/ten-koh/for-amateur-radio-reception/ - - - BHUTAN-1 - 43591 - 1998-067PF + D-Star ONE Sparrow + 43881 Operational - 2018-08-10 - ISS + 2018-12-27 + Vostochny - + Verified + 2018-12-27 - BIRDS-2 Operation page - http://birds2.birds-project.com/operation/ - The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. - - + D-Star ONE presentation + http://www.d-star.one/ + + - IARU - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=562 - - + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + - Main - 437375000 - - BPSK - 1200 - + Telemetry + 435700000 - CW + GMSK Mobitex (CMX990) + 4800 bauds - JG6YKL + DP1GOS + + D-Star + + 437325000 + + + 435525000 + + DSTAR + - Beacon Sequence and Format of BIRDS-2 CubeSats - http://birds2.birds-project.com/operation/ + + - BIRDS-2 Data Submission - http://birds2.birds-project.com/data-submission/ + + - - BIRDS-2 Data Submission - http://birds2.birds-project.com/data-submission/ - + - AO-6(Phase-2A) - 6236 - 1972-082B + DTUSAT + 27842 + 2003-031C Not operational - AO-6 Main - 0 + 437475000 - CW + AFSK + 2400 - + OZ2DTU - AO-7(Phase-2B) - 7530 - 1974-089B + DTUSat-2 + 40030 + 2014-033W Operational - 1974-11-15 - Vandenberg + 2014-06-19 + Orenburg, Russia - AO-7 + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=87 + + + + DTUsat Site + http://www.dtusat.dtu.dk/ + + - Mode V/A (A) TLM Beacon - 29502000 - - CW - - - - - Mode U/V (B) TLM Beacon - 1459775000 + Main + 2401835000 - CW + MSK + 1200 - - - - Mode U TLM Beacon - 435100000 CW + - - AO-8(Phase-2D) - 10703 - 1978-026B - Not operational - AO-8 + DUCHIFAT-1 + 40021 + 2014-033M + Operational + + true + + + 2014-06-19 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=258 + + + + Duchifat 1 site + http://www.h-space-lab.org/php/duchifat1-en.php + + Main - 29402000 + 145980000 - CW + BPSK + 1200 - - - - Main - 435095000 CW - + 4X4HSL + + APRS Digipeater + + 435220000 + + + 145980000 + + AFSK / BPSK + 1200 + + + + + + + + + + + + http://www.h-space-lab.org/download/Public%20Release.rar + - UO-9 (UoSAT-1) - 12888 - decayed + Duchifat3 + 44854 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=586 + Shamai Opfer 4Z1WS and David Greenberg 4X1DG + 2017-10-17 + 2017-11-22 + 4z1ws@amsat.org.nospam and david.greenberg@bezeqint.net.nospam + - 1981-10-06 - Vandenberg + 2019-12-11 + + - UO-9 - - - Main - 2401000000 - - CW - - - - - - - AO-10(Phase-3B) - 14129 - 1983-058B - Not operational - AO-10 + INIT + 2020-05-24+02:00 + + + + + + + - Main - 145810000 + Beacon + 436400000 - CW + PBSK + 9600 - + + + U/V FM + + 145970000 + + + 436400000 + + + + + + + + + + + + + + + + + + + + + + + + - UO-11(UoSAT-2) - 14781 - 1984-021B - Operational - UO-11 + DUTHSat (GR01) + 42724 + Decayed + Draft + 2019-08-07 - Main - 2401500000 + Beacon + 436420000 - PSK + BPSK + 1200 bps - UOSAT-2 + SZ2DUT - MIR - 16609 - decayed + DX-1 + 40071 + 2014-037C + Operational Main - 145985000 + 438225000 - PSK + GFSK + 9600 - R0MIR-1 + DAURIA - RS-12(Sputnik) - 21089 - 1991-007A - Not operational + E1P-U2 + 37855 + 2011-061F + Operational + + true + + 2020-05-24+02:00 Main - 29408000 - - CW - - - - - Main - 145862000 + 437502000 - CW + AFSK + 1200 - AO-13(Phase-3C) - 19216 - decayed - AO-13 + Eagle-1 (BeakerSat-1) + 39437 + 2013-066X + Not operational Main - 145812000 + 437465000 - CW + GFSK + 9600 - - UO-14(UoSAT-3) - 20437 - 1990-005B - Not operational - UO-14 + Eagle-2 ($50SAT MO-76) + 39436 + Decayed + MO-76 + Draft + 2015-05-30 + + project website + http://www.50dollarsat.info/ + $50SAT (aka Eagle-2 prelaunch) MO-76 was launched aboard Unisat-5 on November 21, 2013 from Dombarovsky, Russia on a Dnepr vehicle. This project is a joint effort involving Professor Bob Twiggs, Morehead State University, Howie DeFelice, AB2S, Michael Kirkhart, KD8QBA, and Stuart Robinson, GW7HPW. (Source AMSAT-NA) + + + Yahoo group Discution + https://groups.yahoo.com/neo/groups/50dollarsat/conversations/topics + Main - 0 + 437505000 - FM + GFSK + 9600 - - - - - - RS-15(Sputnik) - 23439 - 1994-085A - Operational - - - Main - 29352000 CW - + + RTTY + - AO-16(PACSAT) - 20439 - 1990-005D + EagleSat-1 + 43018 Not operational - AO-16 + Draft + 2020-05-24+02:00 - Main - 2401143000 + Beacon + 437645000 - PSK + AFSK + 1200bps - PACSAT-11-12 + - DO-17(DOVE) - 20440 - 1990-005E - Not operational - DO-17 + EcAMSat + 43019 + Operational + Draft + 2019-08-07 - Main - 2401220000 + Beacon + 437095000 - AFSK - 1200 + AFSK + 1200bps - DOVE-1 + KE6QLL - WO-18(WEBERSAT) - 20441 - 1990-005F - Not operational - WO-18 + EDSN + -29 + Unknown + 2020-05-24+02:00 Main - 0 + 437100000 - PSK + AFSK 1200 - - LO-19(LUSAT) - 20442 - 1990-005G - Not operational - LO-19 + EduSat-1 (BIRD-N) + 42824 + Decayed + Draft + 2019-08-07 - Main - 437125000 + Beacon + 437372000 - CW + GMSK + 9600 bps + + + AFSK + 1200 bps - LUSAT-11-12 - - - - - FO-20(JAS-1b) - 20480 - 1990-013C - Not operational - FO-20 - - - Main - 435795000 CW + - + JG6YJR - RS-21(Sputnik) - 27394 - Decayed + ELFIN-A + 43617 + Operational + + true + + Draft + 2020-05-24+02:00 + + Project information + https://elfin.igpp.ucla.edu/ + + - Main - 145825000 + Beacon + 437450000 - CW + GFSK + 9600bps - + WJ2XNX + + + information for amateur radio comunitie + https://elfin.igpp.ucla.edu/listen-to-elfin + + + Telemetry description + https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx + + + SatNOGS : Kaitai Struct telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy + + + + + + elfin@igpp.ucla.edu + + - RS-22(Mozhayets) - 27939 - 2003-042A + ELFIN-B + 43616 Operational + + true + + Draft + 2020-05-24+02:00 + + Project information + https://elfin.igpp.ucla.edu/ + + - Main - 435352000 + Beacon + 437450000 - CW + GFSK + 9600bps - + WJ2XOX + + + information for amateur radio comunitie + https://elfin.igpp.ucla.edu/listen-to-elfin + + + Telemetry description + https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx + + + SatNOGS : Kaitai Struct telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy + + + + + + elfin@igpp.ucla.edu + + - UO-22(UoSAT-5) - 21575 - 1991-050B + EnduroSat One + 43551 Not operational - UO-22 + + true + + Draft + 2020-05-24+02:00 - Main - 435120000 + Beacon + 437050000 - FSK - 9600 + GMSK + 9600bps - UOSAT5-11-12 + LZ0AMS - KO-23(KITSAT-A) - 22077 - 1992-052B + EntrySat + 44429 Not operational - KO-23 + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=334 + Nicolas Nolhier F5MDY + 2013-10-15 + 2015-01-08 + nolhier@laas.fr.nospam + + + 2019-07-03 + ISS + + + Verified + 2020-05-24+02:00 + + Mission description + https://www.csut.eu/en/project/entrysat/ + The objective of the mission, to study the atmospheric re-entry of debris, is well described, the scientific requirements and the system requirements are fully specified. However, given the short duration of analysis of atmospheric re-entry phenomena, this mission is ambitious and requires additional technical studies to show its full feasibility. +The mission analysis is to consolidate, when information about the orbit and the launcher will be well known. + + + + Mission description + https://websites.isae-supaero.fr/entrysat/ + + - Main - 435175000 + Telemetry 1 + 436950000 - FSK - 9600 + BPSK + 9k6 - HL01-11-12 + ON02FR + + + EntrySat reception + https://www.csut.eu/en/recevoir-entrysat/ + + + AMSAT-F : Kaitai file Description (*.ksy) + https://code.electrolab.fr/xtof/telemetrydescription/tree/master/EntrySat + + + SatNogGS: Kaitai file Description (*.ksy) + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/entrysat.ksy + + + + + + + http://site.amsat-f.org/entrysat/ + - KO-25(KITSAT-B) - 22828 - 1993-061F - Not operational - KO-25 + EO-88 (FUNcube-5 Nayif-1) + 42017 + Operational + + true + + EO-88 + Draft + 2020-05-24+02:00 - Main - 436500000 + Beacon + 145940000 - FSK - 9600 + BPSK SSB + 1200 - HL02-11-12 + - - - - RS-25 - 28898 - 2005-043G - Unknown - - Main - 435325000 + Beacon + 145940000 - CW + BPSK SSB + 1200 + + Main + + 435015000 + 435045000 + + + 145960000 + 145990000 + + SSB/CW + yes + + + + Telemetry dashboard + http://data2.amsat-uk.org/ui/nayif1 + + + + + + operations@funcube.org.uk + https://funcube.org.uk/working-documents/funcube-telemetry-dashboard/ + - SAFIR-S - 25399 - 1998-043F - Not operational - Verified - 2019-02-14 + EQUISat + 43552 + Operational + Draft + 2019-08-07 + + Information page + https://brownspace.org/equisat/ + - Main - 2401900000 + Beacon + 435550000 - FSK - 9600 + CW + - DP1AIS + + FSK + 9600 + + + FSK + 4800 + + + + + + + + + Dasboard + https://equisat.brownspace.org + + + + - IO-26(ITAMSAT) - 22826 - 1993-061D - Not operational - IO-26 + ESEO (FUNcube 4) + 43792 + Operational + + true + + + 2018-12-03 + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project description + https://www.esa.int/Education/ESEO + During its operational mission phase, ESEO will run the scientific experiments and test the various technology demonstrators designed and built by the students, and constantly monitor its own performance. + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=82 + ESEO has been coordinated by IARU + ESEO a été coordonné par l'IARU + - Main - 435791000 + TLM 1 + 145895000 - PSK - 1200 + BPSK + 4800 bps - ITMSAT-11-12 + + BPSK + 1200 bps + + + + + TLM 2 + 437000000 + + BPSK + 4800 bps + + + BPSK + 1200 bps + + + + FM voice repeater + + 1263500000 + + + 145895000 + + FM + 67 + + + + + + + + + + + + https://download.funcube.org.uk/ESEO_Dashboard_v1177.msi + - AO-27(EYESAT-A) - 22825 - 1993-061C - Not operational - AO-27 + Es'Hail-2 (Phase-4A QO-100) + 43700 + Operational + QO-100 + Verified + 2019-08-07 + + P4A AMSAT DL Forum + https://forum.amsat-dl.org/index.php?board/3-es-hail-2-amsat-phase-4-a/ + AMSAT DL Forum for Phase 4A payload + Forum de l'AMSAT-DL pour Phase 4A + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=630 + AMSAT P4-A has been coordinated by IARU + AMSAT P4-A a été coordonné par l'IARU + - Main - 436795000 + Beacon + - AFSK - 1200 + Linear transponder + + + Narrowband Linear transponder + + 2400050000 + 2400300000 + + + 10489550000 + 10489800000 + + + + + Wideband digital transponder + + 2401500000 + 2409500000 + + + 10491000000 + 10499000000 + + + - PO-28(POSAT) - 22829 - 1993-061G + e-st@r + 38079 Not operational - PO-28 Main - 0 + 437445000 - FSK - 9600 + AFSK + 1200 - POSAT1-11-12 + E-STAR-I - FO-29(JAS-2) - 24278 - 1996-046B + E-Star-2 + 41459 + 2016-025D Operational - FO-29 - Draft - 2019-08-05 + + true + + + 2016-04-25 + Kourou, Guyanne Française + + Verified + 2020-05-24+02:00 + + Porject page + http://www.cubesatteam-polito.com/e-star-ii/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=241 + + Main - 4357964000 + 437485000 + + AFSK + 1200 + CW + - 8J1JCS - TO-31(TMSAT-1) - 25396 - 1998-043C + EstCube-1 + 39161 + 2013-021C Not operational - TO-31 + + Draft + 2019-08-05 Main - 436925000 + 437254000 - FSK + GMSK 9600 - TMSAT1-11-12 + + CW + + ES5E-11 ES5E/S - GO-32(TechSat) - 25397 - 1998-043D - Operational - GO-32 + ESTELLE + 0 + To be launch + Verified + 2020-05-24+02:00 Main - 435225000 + 580000000 - FSK - 9600 + 1Mbps-10Mbps GFSK BPSK - 4XTECH-11-12 - SO-33(SEDSAT-1) - 25509 - 1998-061B - Not operational - SO-33 + ExAlta-1 (CA03) + 42734 + Decayed + Draft + 2019-08-07 - Main - 437910000 + Beacon + 436705000 - FSK - 9600 + 4k8*/9k6/19k2 GMSK + 4800 - SEDSAT-1 - - - - - PO-34(PANSAT) - 25520 - 1998-064B - Not operational - PO-34 - - - Main - 0 - Spectrum + 4k8*/9k6/19k2 GMSK + 9600 - + + 4k8*/9k6/19k2 GMSK + 19200 + + ON03CA - ISS - 25544 - 1998-067A + ExoCube + 40380 + 2015-003E Operational - Draft - 2019-08-05 Main - 0 - - Voice(Reg1) - - NA1SS - - - Main - 0 + 437270000 - Voice(Reg23) + FSK + 9600 - NA1SS - - - Main - 145800000 - Packet + CW - RS0ISS + KK6HGC XO3 + + + + F-1 + 38855 + Decayed + Verified + 2020-05-24+02:00 + Main - 437550000 + 437485000 - APRS + AFSK + 1200 - RS0ISS - - - Main - 145825000 - APRS + CW - RS0ISS-4-11 + XV1VN - SO-35(SUNSAT-1) - 25636 - 1999-008C - Not operational - SO-35 + FACSAT + 43721 + Operational + + true + + + India + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=635 + FACSAT Hello World has been coordinated by IARU + FACSAT Hello World a été coordonné par l'IARU + - Main - 145825000 + Telemetry 1 + 437350000 - 9600bpsFM + GMSK + 9k6 - SUNSAT-3 + + + + + + + + + + + + + - UO-36(UoSAT-12) - 25693 - 1999-021A - Not operational - UO-36 + FalconSAT-3 + 30776 + Operational + + true + + INIT + 2020-05-24+02:00 - - Main - 437400000 - - FSK - 38400 - - UO121-11-12 - + + Digipeater + + 145840000 + + + 435103000 + + 9600bps GMSK + - AO-37(ASUSAT) - 26065 - 2000-004E - Not operational - AO-37 + FIREBIRD-II FU3 + 40377 + 2015-003B + Operational + + true + + 2020-05-24+02:00 Main - 0 + 437395000 FSK - 9600 + 19200 - + K7MSU - OO-38(OPAL) - 26063 - 2000-004C - Not operational - OO-38 + FIREBIRD-II FU4 + 40378 + 2015-003C + Operational + + true + + 2020-05-24+02:00 Main - 437100000 + 437219000 FSK - 9600 + 19200 - KF6RFX + K7MSU - WO-39(JAWSAT) - 26061 - 2000-004A + FIREBIRD-U1 + 39463 + 2013-072B Not operational - WO-39 Main - 0 + 437405000 FSK - 9600 + 19200 - + K7MSU - AO-40(Phase-3D) - 26609 - 2000-072B + FIREBIRD-U2 + 39464 + 2013-072C Not operational - AO-40 Main - 2401323000 + 437230000 - PSK - 400 + FSK + 19200 - + K7MSU - SO-41(SaudiSat-1a) - 26545 - 2000-057A - Not operational - SO-41 + First-MOVE + 39439 + 2013-066Z + Operational + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=125 + + + + Mission information + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/first-move/ + First-MOVE On-Board Computer Damaged - As we posted on December 21st 2013, we are not receiving data beacons from First-MOVE anymore. In contrast to the nominal mode in which CW beacons and AX.25 beacons alternate every 60 seconds, we are now hearing only CW beacons every 60 seconds. After trying many different approaches to reset our on-board computer via telecommands we re-analyzed our current options again last week. This analysis resulted in the conclusion, that the on-board software has sustained irreparable damage. The fact that we are receiving CW beacons every 60 seconds indicates, that both the transceiver and the power supply are functioning properly. For the transceiver to return to the 60 second CW beacon mode, it has to be power cycled, since this mode cannot be activated by the on-board software. This means that there was definitively an interruption in the power supply. In case of an interruption, the computer should deactivate the 60 second CW beacon mode as the first task during the boot sequence. As this has obviously not happened, the only conclusion is, that the computer is not getting through the entire boot sequence, probably because it was damaged due to an erroneous write process on the memory chip. Since there is no way to upload new software to First-MOVE we see no possibility to continue the mission and perform the planned experiments. It seems that First-MOVE has become inactive after a very short lifetime. We will still receive the CW beacons, but we will not hear anything but his name. + + Main - 436775000 + 145970000 - FSK - 9600 + BPSK + 1200 - SASAT1-11-12 - - - - - SO-42(SaudiSat-1b) - 26549 - 2000-057E - Not operational - SO-42 - - - Main - 436075000 - - FSK - 9600 - - SASAT2-11-12 + + CW + + MOVE1 + + Repeater + + 435520000 + + + 145970000 + + + - SO-43(Starshine) - 26929 - decayed - SO-43 + FITSAT-1 + 38853 + Decayed + 2020-05-24+02:00 Main - 145820000 + 437250000 - FSK - 9600 + 1200bps/1152kbps - STRSHN + JG6YEW - NO-44(PCsat1) - 26931 - 2001-043C + FloripaSat-1 + 44885 Operational - NO-44 - Draft - 2019-08-05 + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 + Mauricio Sinigaglia PP5BMS + 2018-09-27 + 2018-10-23 + mauricio.sinigaglia@gmail.com.nospam + + + 2019-12-20 + CZ-4B launch vehicle from Taiyuan Satellite Launch Center + + INIT + 2019-12-19 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 + + + + + FloripaSat-1 web site + https://floripasat.ufsc.br/ + + + - Main - 145827000 + VHF Beacon + 145900000 - AFSK + GFSK 1200 - (A)PCSAT-1 + - Main - 145827000 + UHF Beacon + 436100000 - FSK - 9600 + GFSK + 2400 - (A)PCSAT-2 + + + Repeater + + 436100000 + + + 436100000 + + GFSK -2400 + + + + + INFORMATION FOR COMMUNICATING WITH FLORIPASAT-1 + https://floripasat.ufsc.br/communication-info/ + + + + + + + https://github.com/floripasat/grs/releases + + + + FMN-1 (FengMaNiu-1) + 43192 + Operational + + true + + INIT + 2020-05-24+02:00 + + CITATION NEEDED - https://xkcd.com/285/ + + + + - Main - 144390000 + Beacon + 435350000 - AFSK - 1200 + BPSK + 9600bps - (B)PCSAT-11 + BUAABJ + + Repeater + + 145945000 + + + 435350000 + + FM + + + + + FO-12 (JAS-1) + 16909 + Not operational + FO-12 + Draft + 2020-05-24+02:00 + - Main - 144390000 + Beacon + 435795000 - FSK - 9600 + CW + - (B)PCSAT-12 + - NO-45(Sapphire) - 26932 - 2001-043D + FO-20(JAS-1b) + 20480 + 1990-013C Not operational - NO-45 + FO-20 Main - 437100000 + 435795000 - AFSK - 1200 + CW - KE6QMD + - MO-46(TiungSat) - 26548 - 2000-057D - Not operational - MO-46 + FO-29(JAS-2) + 24278 + 1996-046B + Operational + FO-29 + Draft + 2019-08-05 Main - 437325000 + 4357964000 - FSK - 38400 + CW - MYSAT3-11-12 + 8J1JCS - BO-47(IDEFIX)BO-48(IDEFIX) - 27422 - 2002-021B + FO-69(FASTRAC-1) + 37227 + 2010-062F Not operational - BO-47 - BO-47 - 145840000 + Main + 437342000 - BPSK - 400 + AFSK + 1200 - + FAST1 - BO-48 - 435270000 + Main + 437342000 - BPSK - 400 + FSK + 9600 - + FAST1 - AO-49(Rubin-2) - 27605 - 2002-058A + FO-70(FASTRAC-2) + 37380 + 2010-062M Not operational - AO-49 Main 145825000 - U/1200D/9600 + AFSK + 1200 - MSK + FAST2 - - - - SO-50(SaudiSat-1c) - 27607 - 2002-058C - Operational - SO-50 - Main - 0 + 145825000 - FM_tone670Hz + FSK + 9600 - + FAST2 - DTUSAT - 27842 - 2003-031C - Not operational + FossaSat-1 + 44829 + Launch + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=652 + Julian Ismael Fernandez Barcellona EA4HCD + 2018-10-29 + 2019-05-27 + julian.ismael.fernandez@gmail.com.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + INIT + 2019-11-26 + + The FossaSat-1 Pocketqube + https://fossa.systems/fossasat-1/ + + + - Main - 437475000 + Beacon + 436700000 - AFSK - 2400 + LORA + : Bandwidth 125 kHz , Spreading factor 11 , Coding rate 4/8 , Sync word 0x0F0F - OZ2DTU + + RTTY + Frequency shift 182 Hz, Baudrate 45 baud , Encoding ITA2 (5-bit, aka “Baudot code”), Single stop bit, no parity + + + + + To use and decode the FossaSat-1 Satellite, please consult our ground station database and instructional guides. + http://groundstationdatabase.com/index.php + + + + + + + + - AAUSAT - 27846 - 2003-031G - Not operational + Fox-1B (RadFxSat AO-91) + 43017 + Operational + + true + + Draft + 2020-05-24+02:00 - Main - 437450000 + Beacon + 145960000 - GMSK - 9600 + DUV + 200 Bps + + FM voice repeater mode 1 + + 435250000 + + + 145960000 + + FM + 67 + - CANX-1 - 27847 - 2003-031H - Not operational + FUNcube-1 (AO-73) + 39444 + 2013-066AE + Operational + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + project information page + https://funcube.org.uk/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=158 + + - Main - 437880000 + BPSK + 145935000 - AFSK + BPSK 1200 - VA3SFL - - - - QUAKESAT - 27845 - 2003-031F - Not operational - - Main - 436682000 + CW + 145815000 - FSK - 9600 + CW + - KD7OVB + + Repeater + + 435130000 + 435150000 + + + 145950000 + 145970000 + + + - AO-51(Echo) - 28375 - 2004-025K + Galassia + 41170 Not operational - AO-51 + INIT + 2020-05-24+02:00 - Main - 435150000 + Beacon + 145800000 - FM_tone670Hz + GMSK + 9600 bps - - Main - 435150000 - - FSK - - 9600 - PECHO-11-12 - - - Main - 435150000 - - FSK - - 9600 - PACB-11-12 - - VO-52(Hamsat) - 28650 - 2005-017B - Not operational + GEARRSat-1 + 40456 + Unknown + INIT + 2019-08-07 - Main - 145936000 + Beacon + - SSBCarrier + + 0 - Indian + + + + + GeneSat-1 + 29655 + Decayed + 2020-05-24+02:00 + Main - 145860000 + 437065000 - CW + AFSK + 1200 - Dutch + KE7EGC - PCSat2 - 0 - Failed - Verified - 2019-02-14 + GO-32(TechSat) + 25397 + 1998-043D + Operational + GO-32 Main - 437975000 + 435225000 FSK 9600 - PC2TLM + 4XTECH-11-12 - UWE-1 - 28892 - 2005-043C + Goliat + 38085 Not operational Main - 437505000 + 437485000 AFSK 1200 - DP0UWE - - - - - XO-53(SSETI) - 28894 - 2005-043E - Not operational - XO-53 - - - Main - 437250000 - FSK - 9600 + CW - SSETI1 + YO7MJF - AO-54(SuitSat) - 28933 - Not Operational - AO-54 - Draft - 2019-08-05 - - - Main - 0 - - FM - - - - - - - CO-55(CUTE-I) - 27844 - 2003-031E + GOMX-1 + 39430 + 2013-066Q Operational - CO-55 + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=231 + + + + Twitter + https://gomspace.com/gomx-1.aspx + + Main - 4368375000 + 437250000 - AFSK + GMSK 1200 - JQ1YCY + + GMSK + 2400 + + + GMSK + 4800 + + + GMSK + 9600 + + + CW + - CO-56(CUTE17) - 28941 - decayed - CO-56 + GOMX-3 + 40949 + Decayed + Draft + 2019-08-07 - Main - 437382000 + Beacon + 437250000 - AFSK - 1200 + GMSK + 19200 - JQ1YPC - - - Main - 437382000 - GMSK - 9600 + GMSK + 4800 - CO-57(XI-IV) - 27848 - 2003-031J - Operational - CO-57 + GRAHAM (PhoneSat1) + 39142 + Decayed + 2020-05-24+02:00 Main - 4368475000 + 437425000 AFSK 1200 - - CW - - JQ1YCW + KJ6KRW-2 - CO-58(XI-V) - 28895 - 2005-043F + GRIFEX + 40379 + 2015-003D Operational - CO-58 + + true + + 2020-05-24+02:00 Main - 437465000 + 438480000 - AFSK + GMSK 1200 - - CW - - JQ1YGW + KD8SPS - NCUBE2 - 28897 - 2005-043H - Not operational + HA-1 (Zhou Enlai Huai'An-1) + 43156 + Operational + INIT + 2019-08-07 + + CITATION NEEDED - https://xkcd.com/285/ + + + - Main - 437305000 + Beacon + 437350000 - FSK - 9600 + BPSK + 9600bps - LA1CUB + BI4ST + + + Beacon + 437644000 + + BPSK + 9600bps + + BI4ST + + Repeater + + 145930000 + + + 436950000 + + FM + - SACRED + HAUSAT-1 0 - Failed + To be launch Verified - 2019-02-14 - - Wiki page - https://en.wikipedia.org/wiki/SACRED - - + 2020-05-24+02:00 Main - 0 + 437465000 AFSK 1200 - WA4CEW + D90HP - ION - 0 - Failed - Verified - 2019-02-14 + HAVELSAT (TR02) + 42701 + Not operational + Draft + 2020-05-24+02:00 - Main - 437505000 + Beacon + 436845000 - AFSK - 1200 + GMSK + 9600 bps + + + + + Beacon + 436843500 + + CW + 0 - RINCON + HawaiiSat1 (HiakaSat1) 0 - Failed + To be launch Verified - 2019-02-14 + 2020-05-24+02:00 Main - 437345000 + 437270500 - AFSK - 1200 + GFSK + 9600 - WA4CEW - - - - ICEcube1 - 0 - Failed - Verified - 2019-02-14 - Main - 0 + 145980500 - FSK + GFSK 9600 - W2CXM - KUTESatPathfinder - 0 - Failed - Verified - 2019-02-14 + HawkSat-1 + 35004 + Not operational Main - 0 + 437345000 AFSK 1200 - KC0RMW + - nCUBE-1 - 0 - Failed - Verified - 2019-02-14 + HiNCube + 39445 + 2013-066AF + Not operational Main - 0 + 438305000 - GMSK - 9600 + - LA1CUB - HAUSAT-1 - 0 - Failed - Verified - 2019-02-14 + HO-59(HITSAT) + 29484 + Decayed + 2020-05-24+02:00 Main - 437465000 + 437275000 AFSK 1200 - D90HP + JR8YJT - SEEDS - 0 - Failed - Verified - 2019-02-14 + HO-68(XW-1) + 36122 + 2009-072B + Operational Main - 0 + 435790000 - AFSK - 1200 + SSBinvertingCW - JQ1YGU + BJ1SA-11-12 - - - - PolySatCP2 - 0 - Failed - Verified - 2019-02-14 - Main - 437325000 + 435790000 - AFSK - 1200 + FM_tone67Hz - + + CW + + BJ1SA-11-12 - AeroCube1 - 0 - Failed - Verified - 2019-02-14 + Hoopoe (IL01) + 42718 + Decayed + Draft + 2019-08-07 - Main - 0 + Beacon + 437740000 - GFSK - 9600 + BPSK + 9600 bps - + ON01IL - MEROPE - 0 - Failed - Verified - 2019-02-14 + Ho'oponopono-2 + 39403 + 2013-064Z + Not operational Main - 0 + 427220000 - AFSK - 1200 + GMSK + 9600 - K7MSU-1 - MeaHuaka'iVoyager - 0 - Failed - Verified - 2019-02-14 + Horyu-2 + 38340 + 2012-025D + Not operational + + true + + 2020-05-24+02:00 Main - 0 + 437378000 - AFSK + FSK 1200 + + CW + - ICEcube2 - 0 - Failed - Verified - 2019-02-14 + HORYU-4 + 41340 + Operational + + true + + + 2016-02-17 + TANEGASHIMA SPACE CENTER + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=434 + has been coordinated by IARU + a été coordonné par l'IARU + - Main - 0 + Beacon + 437375000 - FSK - 9600 + CW + - N2VR + + AFSK + 1200 + + + GFSK + 9600 + + JG6YBW + + + Beacon S + 2400300000 + + BPSK + 10000 + + - PolySatCP1 - 0 - Failed - Verified - 2019-02-14 + Humsat-D + 39433 + 2013-066T + Not operational Main - 0 + 437325000 - 15bpsDTMFCW + CW - N6CP - PICPOT - 0 - Failed + HuskySat-1 - HO-107 + 45119 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=604 + Jeffrey Chrisope KI7ORW + 2018-03-07 + 2018-04-09 + jeffchrisope@live.com.nospam + + + 2019-11-02 + Wallops Flight Facility,USA + + HuskySat-OSCAR 107 (HO-107) Verified - 2019-02-14 + 2020-05-16 + + Project Information page + https://sites.google.com/uw.edu/huskysatellitelab/huskysat-1 + - Main - 0 + Beacon + 435800000 - FSK - 9600 + BPSK + 1200 - Main - 0 + Beacon Experimental + 24049000000 - 10kbitGFSK + + + + V/U + + 145910000 + 145940000 + + + 435810000 + 435840000 + + + true + + + + FoxTLM is used for this satellite + https://www.amsat.org/tlm/leaderboard.php?id=0 + + + + + + cubesat@uw.edu + https://www.g0kla.com/foxtelem/index.php + - HO-59(HITSAT) - 29484 - decayed + IceCube + 42705 + Unknown + INIT + 2019-08-07 - Main - 437275000 + Beacon + - AFSK - 1200 + + 0 - JR8YJT + - GeneSat-1 - 29655 - decayed + ICEcube1 + 0 + To be launch + Verified + 2020-05-24+02:00 Main - 437065000 + 0 - AFSK - 1200 + FSK + 9600 - KE7EGC + W2CXM - NMARS - 29662 - decayed + ICEcube2 + 0 + To be launch + Verified + 2020-05-24+02:00 Main 0 - AFSK - 1200 + FSK + 9600 - + N2VR - NO-60(RAFT) - 29661 - decayed - NO-60 + ICUBE-1 + 39432 + 2013-066S + Not operational Main - 145825000 + 145947000 - AFSK - 1200 + 1200bps BPSK/FM-DSB_Transponder - RAFT - NO-61(ANDE) - 29664 - decayed - NO-61 + i-INSPIRE II (AU03) + 42731 + Decayed + INIT + 2019-08-07 - Main - 145825000 + - AFSK - 1200 + GMSK + 4800 bps - ANDE-1 + ON03AU - NO-62(FCAL) - 29667 - decayed - NO-62 + IiNUSat + 0 + To be launch + Verified + 2020-05-24+02:00 Main - 437385000 + 436915000 - AFSK - 1200 + 1k2 9k6 2FSK - KD4HBO - PO-63(PehuenSat) - 29709 - PO-63 + InflateSail (GB06) + 42770 + Decayed + Draft + 2019-08-07 - Main - 145825000 + Beacon + 436060000 - AFSK - 1200 + BPSK + 1200bps - LU1YUC + ON06GB - AeroCube-2 - 31122 - 2007-012F - Not operational + InnoSAT-2 + 43738 + Operational + + true + + + India + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=548 + InnoSAT-2 has been coordinated by IARU + InnoSAT-2 a été coordonné par l'IARU + - Main - 0 + Telemetry 1 + 437450000 - GFSK - 9600 + + - + + + + + + + + + + + + + - MAST - 31126 - 2007-012K + INS-1C + 43116 Not operational + Draft + 2020-05-24+02:00 - Main - 0 + Beacon + 435080000 - FHSS + FSK + 1200 bps - + INDUSR-10 - PolySatCP3 - 31128 - 2007-012M + IO-26(ITAMSAT) + 22826 + 1993-061D Not operational + IO-26 Main - 0 + 435791000 - AFSK + PSK 1200 - + ITMSAT-11-12 - LIBERTAD-1 - 31129 - 2007-012N - Not operational + IO-86 (LAPAN-A2 ORARI) + 40931 + Operational + + true + + IO-86 + INIT + 2020-05-24+02:00 - Main - 437399000 + Beacon + 437325000 - AFSK - 1200 + AFSK + 1200 Bps - 5K3L + YBSAT/YBOX-1 + + Repeater + + 145825000 + + + 145825000 + + APRS + + + Repeater + + 145880000 + + + 435880000 + + FM + - CAPE-1 - 31130 - 2007-012P - Not operational + ION + 0 + To be launch + Verified + 2020-05-24+02:00 Main - 435248000 + 437505000 AFSK 1200 - K5USL + - PolySatCP4 - 31132 - 2007-012Q + IPEX + 39471 + 2013-072K Not operational Main - 437323000 + 437270000 - SSB - 1200 + GMSK + 9600 - N6CP - - - - - CSTB-1 - 31133 - 2007-012R - Not operational - - - Main - 0 - AFSK - 1200 + CW - + KJ6KSL-1 - CUTE17+APDII - 32785 - 2008-021C + Irazu + 43468 Operational - CO-65 Draft - 2019-08-05 + 2019-08-07 - Main - 0 - - GMSK - 9600 - - JQ1YTC - - - Main - 437275000 - - AFSK - 1200 - + Beacon + 436500000 - CW + FSK + 9600bps - JQ1YTC + TI0IRA - COMPASS-1 - 32787 - 2008-021E + Irvine 02 + 43789 Not operational + + Vandenberg Air Force Base, California + + + Verified + 2018-10-29 + + Project + https://www.irvinecubesat.org/irvine02 + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 + Irvine 02 has been coordinated by IARU + Irvine 02a été coordonné par l'IARU + - Main - 437275000 - - AFSK - 1200 - + Telemetry 1 + 437450000 - CW + FSK + 9600 - DP0COM + + + + + + + + + + + + + - AAUSAT-II - 32788 - 2008-021F + Irvine + 43693 + 2018-088D Operational + + true + + + + + + Verified + 2020-05-24+02:00 - Main - 437432000 + Telemetry 1 + 437800000 - FFSK/MSK - 1200 + FSK + 9600 - - - - Main - 437432000 - FSK - 9600 + CW + - OZ2CUB + WI2XPH + + + + + + + + + + + + - DO-64(DELFI-C3) - 32789 - 2008-021G + ISS + 25544 + 1998-067A Operational - DO-64 Draft 2019-08-05 Main - 1458675000 - - BPSK - 1200 - - DLFIC3 - - - Main - 145930000 + 0 - CW + Voice(Reg1) - DLFIC3 + NA1SS - - - - CANX-2 - 32790 - 2008-021H - Not operational - Main 0 - OverGSonly + Voice(Reg23) - VA3SFL + NA1SS Main - 0 + 145800000 - 6KbpsGMSK + Packet - VA3SFL + RS0ISS - - - - CO-66(SEEDS-II) - 32791 - 2008-021J - Operational - CO-66 - Main - 437485000 + 437550000 - 1200bpsFMCWTalk + APRS - erJQ1YGU + RS0ISS - - - - RS-30(Yubileiniy) - 32953 - 2008-025A - Not operational - - Draft - 2019-08-05 - Main - 435315000 + 145825000 - CW + APRS - RS30 + RS0ISS-4-11 - PRISM(HITOMI) - 33493 - 2009-002B - Operational + ISX (CP-11) + 43856 + Not operational + INIT + 2020-05-24+02:00 - Main - 437250000 - - AFSK - + Beacon + 437150000 - GMSK + FSK + 9600 bps - CW + CW + 0 - JQ1YCX + - KAGAYAKI - 33495 - 2009-002D - Not operational + ISX-SR1 -ISX - CP11 + 0 + To be launch + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=514 + + + + Project page + http://www.polysat.org/in-development/ + + - Main - 437375000 + Telemetry UHF + 437150000 FSK - 9600 + 9600 bauds + + + + Telemetry 2 + 5840000000 - CW + QPSK + 10 Mb + + + + + + + + + + + + - SOHLA-1(MAIDO-1) - 33496 - 2009-002E + ITASAT 1 + 43786 Not operational + + true + + + + + + Verified + 2020-05-24+02:00 + + project Web site + http://www.itasat.ita.br/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=435 + ITASAT 1 has been coordinated by IARU + ITASAT 1 a été coordonné par l'IARU + - Main - 437505000 + Telemetry 1 + 145860000 - AFSK + BPSK 1200 + + + + Telemetry 1 + 2400150000 - CW + BPSK + 14400 - JL3YUS + - - - STARS(KUKAI) - 33498 - 2009-002G - Operational + + + + + + + + + + + + + + + ITF-1 + 39573 + Decayed + 2020-05-24+02:00 Main - 437305000 - - FM - 1200 - + 437525000 CW - JR5YBN(mother + JQ1ZLO + + + + ITF-2 (TO-89) + 41932 + Decayed + TO-89 + Draft + 2019-08-07 + - Main - 437275000 + Beacon + 437525000 - FM - 1200 + FM CW + 1200 bps - CW + CW + 0 - JR5YBO(daught + JQ1ZTK - KKS-1(KISEKI) - 33499 - 2009-002H + ITU-pSat1 + 35935 + 2009-051E Operational + + true + + 2020-05-24+02:00 Main - 437385000 + 437325000 - AFSK - 1200 + GFSK + 19200 CW - JQ1YYY + - PharmaSat-1 - 35002 - Not operational + JAISAT-1 + 44419 + Unknown + + true + + Draft + 2020-05-24+02:00 + + Information page + http://www.rast.or.th/jaisat + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=521 + - Main - 437465000 + Beacon + 4435325000 - AFSK - 1200 + CW + - KE7EGC + + GMSK + 4800 + + + + Transpondeur + + 145935000 + 145965000 + + + 435935000 + 435965000 + + + - CP-6 - 35003 - Not operational + Jugnu + 37839 + 2011-058B + Operational Main - 437365000 - - AFSK - 1200 - + 4372759000 CW - N6CP + - HawkSat-1 - 35004 - Not operational + Juvenile-1F(Shaonian-Xing) + 43199 + Operational + + true + + INIT + 2020-05-24+02:00 - Main - 437345000 + Beacon + 436370000 - AFSK - 1200 + BPSK + 9600 bps - + MXSAT-1 - DRAGONSat(AggieSat-2) - 35690 - decayed + JY1SAT -JO-97 + 43803 + Operational + + true + + + 2018-12-03 + Vandenberg Air Force Base, California + + Jordan-OSCAR 97 (JO-97) Verified - 2019-02-14 + 2020-05-24+02:00 + + JY1SAT launch information and Dashboard + https://funcube.org.uk/2018/11/15/jy1sat/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=554 + JY1SAT has been coordinated by IARU + JY1SAT a été coordonné par l'IARU + - Main - 436250000 + FUNcube telemetry + 145840000 - FSK - 19200 + BPSK + 1200 - - - - Main - 437325000 - FSK - 9600 + SSDV + - + JY1 + + Main + + 435100000 + 435120000 + + + 145855000 + 145875000 + + SSB/CW + yes + + + + Telemetry dashboard + http://data2.amsat-uk.org/ui/jy1sat-fm + + + + + + operations@funcube.org.uk + https://download.funcube.org.uk/JY11Sat_Dashboard_v1160.msi + - ANDE-2(Pollux) - 35693 - decayed + K2SAT + 43761 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=552 + K2SAT has been coordinated by IARU + K2SAT a été coordonné par l'IARU + + + K2SAT S-band image receiver + https://destevez.net/2018/07/k2sat-s-band-image-receiver/ + Technical article from DANIEL ESTÉVEZ + Article technique de DANIEL ESTÉVEZ + - Main - 145825000 + Telemetry 1 + 435835000 - AFSK - 1200 + BPSK + 9600 - POLLUX-1 + - Main - 145825000 + Telemetry 2 + 2404000000 - AFSK - 1200 + QPSK + 2 Mb - KD4HBO-1 + - + + FM voice repeater + + 145980000 + + + 436225000 + + FM + + + + + + + + + + + + + + - RS-28(UgatuSat) - 35869 - 2009-049D + KAGAYAKI + 33495 + 2009-002D Not operational - - Draft - 2019-08-05 Main - 435264000 + 437375000 + + FSK + 9600 + CW - RS28 + - RS-38(Tatiana-2) - 35868 - 2009-049E - Not operational - + Kaidun-1 + 41915 + Operational Draft - 2019-08-05 + 2019-08-07 - Main - 435490000 + Beacon + 437600000 - CW + G3RUH BPSK + 1200 bps - RS38 + AXNWPU-4 - SO-67(SumbandilaSat) - 35870 - 2009-049F - Not operational + KAITUO-1B (CAS-3G DCBB) + 40912 + Operational + Draft + 2019-08-07 - Main - 435300000 + Beacon + 437950000 - FM_tone2336Hz + GMSK + 9600 - + BJ1SH + + + Beacon + 145475000 + + GMSK + 9600 + + BJ1SH - SwissCube-1 - 35932 - 2009-051B - Operational + KALAMSAT-V2 + 43948 + Unknown + Draft + 2019-08-07 - Main - 437505000 - - BFSK - 1200 - + Beacon + 436500000 - CW + + 0 - HB9EG1 + - BeeSat-1 - 35933 - 2009-051C - Not operational - + Karksat + 44427 + Operational + + true + + + 2019-04-17 + + + Draft - 2019-08-05 + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=608 + coordinated by IARU + coordonné par l'IARU + + + Project Site + https://www.kraksat.pl/space/ + project page + site du projet + - Main - 436000000 + Beacon + 435500000 - GMSK - 4800 9600 + AFSK + 1200 - DP0BEE + + AFSK + 9600 + + + + + + + + + + + + + + - UWE-2 - 35934 - 2009-051D - Not operational + KAUSAT-5 + 43135 + Unknown + INIT + 2019-08-07 - Main - 437385000 + Beacon + 437465000 - AFSK - 1200 + FSK + 9600 Bps + + + + Beacon 2 + 2413000000 - CW + MSK + 115200 - ITU-pSat1 - 35935 - 2009-051E + KAZSCISAT-1 + 43787 Operational + Draft + 2019-08-07 - Main - 437325000 - - GFSK - 19200 - + Beacon + 435500000 - CW + GMSK + 9600bps - HO-68(XW-1) - 36122 - 2009-072B - Operational + KickSat + 39685 + Decayed + 2020-05-24+02:00 Main - 435790000 + 437505000 - SSBinvertingCW + 1200bps AFSK + 1200 - BJ1SA-11-12 + KD2BHC + + + + KickSat-2 + 44046 + Decayed + Draft + 2019-08-07 + - Main - 435790000 - - FM_tone67Hz - + Beacon + 437505000 - CW + FSK + 1200bps - BJ1SA-11-12 + KD2BHC - Waseda-SAT2 - 36574 - decayed + KKS-1(KISEKI) + 33499 + 2009-002H + Operational Main - 437485000 + 437385000 - FSK + AFSK 1200 CW - WASEDA + JQ1YYY - Negai - 36575 - decayed - + Knacksat + 43761 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + project pages + http://www.knacksat.space + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=520 + Knacksat has been coordinated by IARU + Knacksat a été coordonné par l'IARU + + - Main - 437305000 - - AFSK - 1200 - + FUNcube telemetry + 435635000 - CW + CW + - JQ1ZEX - - - - - UNITEC-1 - 36578 - 2010-020F - Deep space - - - Main - 5840000000 - AFSK - 1200 + GFSK + 9600 - CW + GFSK + 1200 - JQ1ZUN + HS0K + + + Hamradio Information + http://www.knacksat.space/amateur-radio + + + + + + knacksat@gmail.com + + - StudSat - 36796 - 2010-035B + KO-23(KITSAT-A) + 22077 + 1992-052B Not operational + KO-23 Main - 437861000 + 435175000 FSK 9600 - - CW - - + HL01-11-12 - TIsat-1 - 36799 - 2010-035E + KO-25(KITSAT-B) + 22828 + 1993-061F Not operational - - Draft - 2019-08-05 + KO-25 Main - 145980000 - - PSK - - - AFSK - + 436500000 - CW + FSK + 9600 - HB9DE + HL02-11-12 - RAX-1 - 37223 - 2010-062B + KS-1Q + 41847 Not operational + Drfat + 2020-05-24+02:00 - Main - 437505000 + Beacon + 436500000 - GMSKKISS - 9600 + GMSK + 20000 bps - RAX-1 + - FO-69(FASTRAC-1) - 37227 - 2010-062F - Not operational + KUTESatPathfinder + 0 + To be launch + Verified + 2020-05-24+02:00 Main - 437342000 + 0 AFSK 1200 - FAST1 + KC0RMW + + + + KySat-2 + 39384 + Not operational + Main - 437342000 + 437402000 FSK 9600 - FAST1 + KK4AJJ - NanoSail-D2 - 37361 - decayed + Lambda-Sat + 40458 + Not operational + 2020-05-24+02:00 Main - 437270000 + 437462000 AFSK 1200 - KE7EGC - FO-70(FASTRAC-2) - 37380 - 2010-062M + LIBERTAD-1 + 31129 + 2007-012N Not operational Main - 145825000 + 437399000 AFSK 1200 - FAST2 + 5K3L + + + + LightSail-A + 40661 + Decayed + 2020-05-24+02:00 + Main - 145825000 + 437435000 FSK 9600 - FAST2 - ZACube-2 - 43907 - 2013-066B - Unknown + LightSail-B (now LightSail-2) + 44420 + Operational + + true + - 2018-12-27 - Vostochny + 2019-06-25 + - Verified - 2018-12-27 - - Warning - - Hamradio paylaod not clear - Charge utile radioamateur pas clairement définie - The coordinated frequencies are beacon 14.099MHz, uplinks on 437.525 and 1260.25MHz and downlinks on 437.345 and 2405.00MHz - + DRAFT + 2020-05-24+02:00 IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=205 - IZACUBE 2 has been coordinated by IARU - IZACUBE 2 a été coordonné par l'IARU - - - Project Site - http://www.cput.ac.za/blogs/fsati/zacube-2/ - - + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=489 + LightSail-2 has been coordinated by IARU + LightSail-2 a été coordonné par l'IARU Telemetry 1 - 14099000 + 437025000 - BPSK - 9600 + GMSK + 9k6 - - repeater 1(TBC) - - 437525000 - - - 437345000 - - - - - repeater 2(TBC) - - 1260250000 - - - 2405000000 - - - - - + + @@ -7350,941 +7858,1148 @@ - ARISSat-1 - 37772 - decayed + LightSat (D-Star One) + 44393 + Operational + INIT + 2019-08-07 - Main - 145919000 + Beacon + 435700000 - 39FMlinear/inverti + mobitex GMSK + 4800 Bps - ng + - Main - 145950000 + Beacon + 435700000 - FMVOICE/SSTV/Tel - - emetry - - - Main - 145919000 - - BPSK - 1000 - - - CW - - RS01S - - - Main - 145939000 - - BPSK - 400 - - - CW + mobitex GMSK + 9600 Bps + - Jugnu - 37839 - 2011-058B + LilacSat-2 (CAS-3H) + 40908 Operational + + true + + Draft + 2020-05-24+02:00 - Main - 4372759000 + Beacon + 437200000 - CW + 1k2/4k8*/9k6 AFSK/GFSK + 0 - + BJ1SI + + Repeater + + 144350000 + + + 437250000 + + + + + Repeater + + 144390000 + + + 144390000 + + + - SRMSAT - 37841 - 2011-058D - Operational + LINK (KR01) + 42714 + Not operational + Draft + 2020-05-24+02:00 - Main - 437425000 + Beacon + 436030000 - CW + BPSK + 1200bps - + D80LW - RAX-2 - 37853 - 2011-061D - Not operational + LitSat-1 + 39568 + Decayed + 2020-05-24+02:00 Main - 437345000 + 145965000 - GMSK - 9600 + SSB - - - - - AO-71(AubieSat-1) - 37854 - 2011-061E - Not operational - Main - 437473000 + 435138000 - AFSK - 1200 + FSK + 9600 CW - + LY1LS - E1P-U2 - 37855 - 2011-061F - Operational + LituanicaSAT-1 (LO-78) + 39569 + Decayed + 2020-05-24+02:00 Main - 437502000 + 435176000 - AFSK - 1200 + FM_tone 670Hz - - - - - M-Cubed - 37855 - 2011-061F - Operational - Verified - 2019-02-14 - Main - 437485000 + 437275000 - GMSKKISS + FSK 9600 - - - - - - ALMASat-1 - 38078 - 2012-006B - Not operational - - - Main - 437465000 - FSK - 1200 + CW - ALMASAT + LY5N - e-st@r - 38079 + LituanicaSAT-2 (LT01) + 42768 Not operational + Draft + 2020-05-24+02:00 - Main - 437445000 + Beacon + 437265000 - AFSK - 1200 + FSK + 9600bps - E-STAR-I + LY0LS - Robusta - 38080 + LO-19(LUSAT) + 20442 + 1990-005G Not operational + LO-19 Main - 437325000 + 437125000 - FM - 1200 + CW - + LUSAT-11-12 - MaSat-1(MO-72) - 38081 - decayed + LO-90 (LilacSat-1 CN02) + 42725 + Operational + LO-90 + Draft + 2019-08-07 - Main - 437345000 + Beacon + 436510000 - 625/1250bpsGFSKC + BPSK + 9600bps - WHA5MASAT + ON02CN + + FM Transpondeur + + 145985000 + + + 436510000 + + FM + - Xatcobeo - 38082 - decayed + LO-93 (DSLWP-A1) + 43471 + Not operational + LO-93 + Draft + 2020-05-24+02:00 - Main - 437365000 + Beacon + 436425000 - FFSKSSRC - 1200 + 500/250bps GMSK + 0 - W + BJ1SM - - - - PW-Sat1 - 38083 - Not operational - - Main - 145902000 + Beacon + 435425000 - BPSK - 1200 + 500/250bps GMSK + 0 + BJ1SM + + + Beacon + 2222810000 - CW + 500/250bps GMSK + 0 - VOID + BJ1SM - UNICubeSAT - 38084 - Not operational - - - Main - 437305000 - - FSK - 9600 - - - - - - - Goliat - 38085 - Not operational + LO-94 (DSLWP-A2) + 43472 + Operational + LO-94 + INIT + 2019-08-07 - Main - 437485000 - - AFSK - 1200 - + Beacon + 436400000 - CW + 500/250bps GMSK + 0 - YO7MJF + BJ1SN - - - - Horyu-2 - 38340 - 2012-025D - Not operational - - Main - 437378000 + Beacon + 435400000 - FSK - 1200 + 500/250bps GMSK + 0 + BJ1SN + + + Beacon + 2275220000 - CW + 500/250bps GMSK + 0 - + BJ1SN - PROITERES - 38756 - 2012-047B + LQSat + 40958 Not operational + Draft + 2020-05-24+02:00 - Main - 437485000 + Beacon 1 + 437650000 - AFSK - 1200 + 4k8 MSK + 4800 Bps - CW + CW + 0 - JL3YZL + - - - - Aeneas - 38760 - 2012-048C - Operational - - Main - 437600000 + Beacon - AFSK - 1200 + MSK4k8 + 0 - KE6YFA-1 + - - - - CSSWE - 38761 - 2012-048D - Not operational - - Main - 437349000 + Beacon + 2404035000 - GMSK - 9600 + QPSK + 1Mbps - CSSWE + - CXBN - 38762 - 2012-048E - Not operational + Lucky-7 + 44406 + Operational + + true + + Verified + 2020-05-24+02:00 + + Information page + http://www.lucky7satellite.org/ + - Main - 437525000 + Beacon + 437525000 - GFSK - 9600 + GFSK + 4600 Bps + + + + + + + Telemetry description + http://www.lucky7satellite.org/download/Lucky-7_-_Amateur_Radio_Information.pdf + + + + - CP5 - 38763 - 2012-048F + LUME-1 + 43908 Not operational + + true + + Draft + 2020-05-24+02:00 - Main - 437405000 + Beacon + 437060000 - AFSK - 1200 + GMSK + 4800bps - CP5 + - RAIKO - 38852 - Not amateur Satellite - + M6P + 44109 + Operational Draft - 2019-08-05 + 2019-08-07 - Main - 1300000000000 + Beacon + 437265000 - 384-500kbps + FSK + 9600 bps - + LY0LS - FITSAT-1 - 38853 - decayed + MakerSat-0 + 43016 + Not operational + INIT + 2020-05-24+02:00 - Main - 437250000 + Beacon + - 1200bps/1152kbps + + - JG6YEW + - TechEdSat - 38854 - decayed + MaSat-1(MO-72) + 38081 + Decayed + 2020-05-24+02:00 Main - 437465000 - - FM - 1200 - + 437345000 - CW + 625/1250bpsGFSKC - KJ6TVO + WHA5MASAT - AAUSat3 - 39087 - 2013-009B + MAST + 31126 + 2007-012K Not operational Main - 437425000 - - FSK - 400 - + 0 - CW + FHSS - OZ3CUB + - STRaND-1 - 39090 - 2013-009E + Max Valier Sat + 42778 Operational + + true + + + 2017-06-23 + Satish Dhawan Space Centre. + + Verified + 2020-05-24+02:00 + + Information page + http://aprs.org/bricsat-2.html + - Main - 437568000 + Radio Beacon + 145960000 - GMSK - 9600 + CW + + II3MV - - - - TugSat-1 (CanX-3B) - 39091 - 2013-009F - Not operational - - Main - 2234400000 + Beacon Astrodev Helium-100 + 145860000 - 32Kbps-256Kbps BPSK + GMSK + + II3MV + + + Amateur information + http://www.maxvaliersat.it/amateurradio + + + QSL Card Request + mailto:maxvaliersat[at]tfobz[dot]net. + + + + + + + + - UniBRITE (CanX-3A) - 39092 - 2013-009G - Not operational + MAYA-1 + 43590 + 1998-067PE + Operational + + true + + + 2018-08-10 + ISS + + + Verified + 2020-05-24+02:00 + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=564 + + Main - 145890000 + 437375000 + + BPSK + 1200 + CW + JG6YKM + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + - OSSI-1 - 39131 - Unknown - - Draft - 2019-08-05 + M-Cubed + 37855 + 2011-061F + Operational + + true + + Verified + 2020-05-24+02:00 Main - 145980000 - - AFSK - 1200 - + 437485000 - CW + GMSKKISS + 9600 + - AIST-2 (RS-43) - 39133 - 2013-015D - Not operational + MCubed-2 + 39469 + 2013-072H + Operational + + 2013-12-06 + Air Force Western Test Range + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=265 + + + + MCubed-2 recovery + http://www.ne.jp/asahi/hamradio/je9pel/mc2recov.htm + + Main - 435265000 + 437485000 - CW + GMSK + 9600 + NOCALL - SOMP - 39134 - 2013-015E - Operational + MeaHuaka'iVoyager + 0 + To be launch + Verified + 2020-05-24+02:00 Main - 437503000 + 0 AFSK 1200 - - CW - - DP0TUD + - BEESAT-3 - 39135 - 2013-015F - Not operational - - Draft - 2019-08-05 + MEROPE + 0 + To be launch + Verified + 2020-05-24+02:00 Main - 435950000 - - GMSK - 4800 - + 0 - CW + AFSK + 1200 - DP0BEF + K7MSU-1 - BEESAT-2 - 39136 - 2013-015G - Not operational - + MicroMAS-1 + 40457 + Unknown Draft - 2019-08-05 + 2019-08-07 - Main - 435950000 - - GMSK - 4800 - + Beacon + 468000000 - CW + OQPSK + 1.5Mbit/s - DP0BEF + - GRAHAM (PhoneSat1) - 39142 - decayed + MINXSS 2 + 41474 + Decayed + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project web site + http://lasp.colorado.edu/home/minxss/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=477 + MINXSS 2 has been coordinated by IARU + MINXSS 2 a été coordonné par l'IARU + - Main - 437425000 + Telemetry 1 + 437250000 - AFSK - 1200 + GMSK + 9600 - KJ6KRW-2 + + + + Ham radio information + http://lasp.colorado.edu/home/minxss/data/ + + + + + + + https://github.com/jmason86/MinXSS_Beacon_Decoder/releases + - BELL (PhoneSat1) - 39143 - decayed + MIR + 16609 + Decayed + 2020-05-24+02:00 Main - 437425000 + 145985000 - AFSK - 1200 + PSK - KJ6KRW-1 + R0MIR-1 - Dove-1 - 2 - 39144 - decayed - - - Main - 2420000000 - - AFSK - 1200 - - - - - - ALEXANDER (PhoneSat2) - 39146 - decayed + MO-30 (UNAMSAT-B) + 24305 + Not operational + MO-30 + Draft + 2020-05-24+02:00 - Main - 437425000 + Beacon + 435138000 - AFSK - 1200 + BPSK + 1200bps - KJ6KRW + - TURKSAT-3USAT - 39152 - 2013-018C + MO-46(TiungSat) + 26548 + 2000-057D Not operational + MO-46 Main - 437225000 + 437325000 - CW + FSK + 38400 + MYSAT3-11-12 - CubeBug-1 - 39153 - 2013-018D - Not operational + MOVE II + 43780 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project + https://www.move2space.de/MOVE-II/ + MOVE-II is a CubeSat, a tiny satellite with dimensions of 10 x 10 x 13 cm and a mass of 1.2 kg. It is the second satellite of the Technical University of Munich (TUM) and the follow-up project of First-MOVE. The name MOVE is an acronym and stands for Munich Orbital Verification Experiment. The number “II” implies that it is the second of its series. + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 + MOVE II has been coordinated by IARU + MOVE II a été coordonné par l'IARU + - Main - 437438000 + Telemetry 1 + 145950000 - AFSK - 1200 + BPSK + 9600 - CUBEB1 + + CW + + + DP0MOV + + + Hamradio information + https://www.move2space.de/MOVE-II/radio-amateurs/ + + + + + + + + - EstCube-1 - 39161 - 2013-021C - Not operational - + MOVE-IIb + 44398 + Unknown Draft - 2019-08-05 + 2019-08-07 + + Information page + https://www.move2space.de/MOVE-II/ + - Main - 437254000 + Beacon + 145840000 - GMSK - 9600 + QPSK + 12500 Bps CW + - ES5E-11 ES5E/S + - CUSat-1 - 39266 - 2013-055B - Not operational + myPocketQub + 0 + To be launch + Verified + 2020-05-24+02:00 Main - 437405000 + 437425000 - AFSK - 1200 + - BOTTOM - DANDE - 39267 - 2013-055C - Not operational + MYSAT-1 + 44045 + Operational + + true + + Draft + 2020-05-24+02:00 - Main - 436750000 + Beacon + 435775000 - GMSK - 9600 + BPSK + 1200 - DANDE-2 - - - - - CUSat-2 - 39271 - Not operational - - - Main - 437485000 - AFSK - 1200 + BPSK + 4800 - WG2XTI - - - - - PhoneSat24 - 39381 - decayed - - - Main - 437425000 - AFSK - 1200 + BPSK + 9600 - KJ6KRW + A68MY - CAPE-2 (LO-75) - 39382 - decayed + NanoSail-D2 + 37361 + Decayed + 2020-05-24+02:00 Main - 145825000 + 437270000 AFSK 1200 - - CW - - W5UL-15 + KE7EGC - DragonSat-1 - 39383 - Not operational + NanoSat-6 (Oculus-ASR) + 44346 + Unknown + draft + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=266 + + + Project information page + http://aerospace.mtu.edu/spacecraft/oculus-asr + - Main - 0000 + Beacon + 437200000 - FSK - 9600 + GMSK + 9600 Bps + - KySat-2 - 39384 - Not operational + Nanosat-7 (Prox-1) + 44339 + Unknown + draft + 2019-08-07 + + Information page + http://prox-1.gatech.edu/ + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=437 + Prox-1 has been coordinated by IARU + Prox-1 a été coordonné par l'IARU + - Main - 437402000 + Beacon + 2306500000 - FSK - 9600 + FSK + 38400 Bps - KK4AJJ + - - - TJ3Sat - 39385 - Not operational - - - Main - 437320000 + + + + + + + Telemetry description + http://prox-1.gatech.edu/beacon.html + + + + + + + NanosatC-Br1 + 40024 + 2014-033Q + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=209 + + + + NanosatC-Br1 + http://www.h-space-lab.org/php/duchifat1-en.php + + + + + Main + 145865000 + + BPSK + 1200 + CW + NCBR1 + + + Operating for Amateur Radio + http://www.inpe.br/crs/nanosat/acompanhe/radio_amadores.php + + + Data acquisition page + http://www3.inpe.br/crs/nanosat/aquisicao_dados.php + + + http://www.dk3wn.info/files/ncbr1.zip + - NPS-SCAT - 39389 - Not operational + nCUBE-1 + 0 + To be launch + Verified + 2020-05-24+02:00 Main - 437525000 - - AFSK - 1200 - + 0 - CW + GMSK + 9600 - K6NPS + LA1CUB - COPPER - 39395 + NCUBE2 + 28897 + 2005-043H Not operational Main - 437290000 + 437305000 FSK 9600 + LA1CUB - Black Knight-1 - 39398 - Not operational + Negai + 36575 + Decayed + 2020-05-24+02:00 Main - 437345000 + 437305000 - + AFSK + 1200 + + + CW + JQ1ZEX - Trailblazer-1 - 39400 - Not operational + NepaliSat1 + 44331 + Operational + + true + + + 2019-04-17 + + + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=618 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + - Main - 437425000 + Beacon + 435375000 - FSK - 9600 + CW + + + + GMSK + 9600 + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + Nexus 43937 2019-003F Operational + + true + 2019-01-18 Centre spatial JAXA Uchinoura, Kagoshima, Japan Fuji-OSCAR 99 Verified - 2019-02-07 + 2020-05-24+02:00 IARU Coordination http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=535 @@ -8342,803 +9057,551 @@ - BEESAT-9 - 44412 + NIUSAT + 42766 Operational - draft + INIT 2019-08-07 - - IARU coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=657 - - - - Project information - https://www.raumfahrttechnik.tu-berlin.de/menue/research/current_projects/beesat_9/parameter/en/ - - Beacon - 435950000 - - GMSK - 19200 bps - + 436000000 - GMSK - 38400 bps + FSK + 1200 bps + NIUOBT + + + Beacon + 2240000000 - CW - + + 0 - DP0BEM + - - - information for amateur radio comunitie - https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ - - - Telemetry description - https://www.raumfahrttechnik.tu-berlin.de/fileadmin/fg169/amateur-radio/BEESAT-9_Telemetry_Format.ods - - - - - - - - - CUAVA-1 - 0 - To Be Laucnh - - - - - DRAFT - 2019-04-15 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum= - CUAVA-1 has been coordinated by IARU - EntrySat a été coordonné par l'IARU - + NJUST-1 (CN03) + 42722 + Decayed + Draft + 2019-08-07 - Telemetry U - 437075000 + Beacon + 436570000 - GMSK - 9k6 + BPSK + 1200bps - + BI4ST + + + + NMARS + 29662 + Decayed + 2020-05-24+02:00 + - Telemetry S - 2404000000 + Main + 0 - - + AFSK + 1200 - + - - Telemetry S? - 5840000000 - - - - - - - - Telemetry M - 76800000000 - - - - - - - - transpondeur U - - 145875000 - - - - - - transpondeur S - - 2404000000 - - - - - - Transponder - - 5660000000 - - - - - - - - - - - - - - - - - QARMAN - 0 - To be deployed + NO-44(PCsat1) + 26931 + 2001-043C + Operational true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 - Thosten Scholz DO2TSB - 2013-10-31 - 2015-06-08 - scholz@vki.ac.be.nospam + NO-44 Draft - 2020-01-14 - - Project Information page - https://qarman.eu/ - + 2020-05-24+02:00 - Beacon - 437350000 + Main + 145827000 - GMSK + AFSK + 1200 + + (A)PCSAT-1 + + + Main + 145827000 + + FSK 9600 - ON05BE + (A)PCSAT-2 + + + Main + 144390000 + + AFSK + 1200 + + (B)PCSAT-11 + + + Main + 144390000 + + FSK + 9600 + + (B)PCSAT-12 - - - Qarman Beacon Definition - https://ukamsat.files.wordpress.com/2020/01/qarman_bcndef_v1.1.pdf - - - Beacon Decoder spreadsheet - https://ukamsat.files.wordpress.com/2020/01/qarman_bcndecoder.xlsx - - - - - - operations@qarman.eu - - - Aoba-Velox 4 - 43940 - 2019-003J + NO-45(Sapphire) + 26932 + 2001-043D Not operational - - 2019-01-18 - Centre spatial JAXA Uchinoura, Kagoshima, Japan - - - Verified - 2019-01-19 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=499 - - - - - AOBA VELOX-IV site - http://www.eee.ntu.edu.sg/research/SaRC/Research/Projects/Pages/AOBA-VELOX-IV.aspx - - - + NO-45 - Telemetry 1 - 437225000 + Main + 437100000 - GMSK - 9600 + AFSK + 1200 - + KE6QMD - - - - - - - - - - av4mail@googlegroups.com - - - Raavana 1 - 44329 - Operational - - 2019-04-17 - - - - Draft - 2019-05-07 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=616 - coordinated by IARU - coordonné par l'IARU - - - Bird3 hamradio information - http://birds3.birds-project.com/document/amateur/ - Radio documents - documents radio - + NO-60(RAFT) + 29661 + Decayed + NO-60 + 2020-05-24+02:00 - Beacon - 435375000 + Main + 145825000 - CW - + AFSK + 1200 + RAFT + + + + + NO-61(ANDE) + 29664 + Decayed + NO-61 + 2020-05-24+02:00 + + + Main + 145825000 - GMSK - 9600 + AFSK + 1200 - + ANDE-1 - - - - - - - BIRDS Project - JGMNB - https://www.formpl.us/form/6372043568185344 - - - - - Swiatowid - 44426 - Operational - - 2019-04-17 - - - - Draft - 2019-05-07 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=609 - coordinated by IARU - coordonné par l'IARU - - - project site - https://satrevolution.com/projects/swiatowid/ - - - + NO-62(FCAL) + 29667 + Decayed + NO-62 + 2020-05-24+02:00 - Beacon - 435500000 + Main + 437385000 - AFSK - 1200 + AFSK + 1200 - + KD4HBO - - APRS - - 435500000 - - - 435500000 - - - - - - - - - - - - - - - - SEAM-2.0 - 44411 - Unknown - Draft - 2019-08-07 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=584 - TBEx has been coordinated by IARU - TBEx a été coordonné par l'IARU - + NO-83 (BRICsat) + 40655 + Not operational + AO-83 + INIT + 2020-05-24+02:00 Beacon - 437250000 + 437975000 - GMSK + FSK PSK31 9600 bps - + BRCSAT + + PSK31 + + 28120000 + + + 435350000 + + APRS 1200 bauds + - AmurSat (AmGU-1) - 44394 - Operational - Draft + Nodes-1 + 41478 + Decayed + INIT 2019-08-07 - - IARU coordination Declined - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 - - Beacon - 436250000 + 437100000 - mobitex - 4800bps + AFSK + 1200 - + KE6QLL - SiriusSat-2(SXC1-182 RS14S) - 43596 - 1998-067PH - Operational - - 2018-08-15 - ISS - - - Verified - 2019-02-14 - - Siriussat information page (Russian) - http://sputnix.ru/ru/nashi-sputniki/siriussat-1 - - - http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information - - - Siriussat hamradio information from Sputnix companie - http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information - hamradio information from Spunix Companie - + Nodes-2 + 41477 + Not operational + INIT + 2020-05-24+02:00 - Main - 435670000 + Beacon + 437100000 - GMSK - 4800 + AFSK + 1200 - RS14S + KE6QLL - - - - - - - - - - siriussat@sputnix.ru - - Télécharger SPUTNIX Telemetry Viewer (Win ENG) - http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip - - - Armadillo - 44352 - Operational - Draft - 2019-08-07 - - IARU coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=237 - - - - Project information - https://www.facebook.com/UTSatLab/app/208195102528120/?ref=page_internal - - + NPS-SCAT + 39389 + Not operational - Beacon - 437525000 - - GMSK - 19200 bps - + Main + 437525000 - GMSK - 38400 bps + AFSK + 1200 CW - - KE5DTW + K6NPS - - - SATNOGS : Kaitai Struct for telemetry - https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/armadillo.ksy - - - - - - - - - EcAMSat - 43019 + nSight-1 (AZ02) + 42726 Operational Draft 2019-08-07 + + DK3WN information + http://www.dk3wn.info/p/?page_id=29535 + + Beacon - 437095000 + 435900000 - AFSK - 1200bps + GMSK + 9600bps - KE6QLL + ON02AZ - - - - Lucky-7 - 44406 - Operational - Verified - 2019-08-07 - - Information page - http://www.lucky7satellite.org/ - - Beacon - 437525000 + 2405000000 - GFSK - 4600 Bps + GMSK + 9600b ps - + ON02AZ - - - - - - - Telemetry description - http://www.lucky7satellite.org/download/Lucky-7_-_Amateur_Radio_Information.pdf - - - - - BRICSat-2 - 44355 - Operational - - 2019-08-07 - - - Navy-OSCAR 103 (NO-103) - Verified - 2019-06-24 - - Information page - http://aprs.org/bricsat-2.html - + NUDT-PhoneSat (CAS-3I) + 40900 + Not operational + INIT + 2020-05-24+02:00 Beacon - 437605000 + 437300000 - FSK - 9600 + GFSK + 96000 - USNA14 + BJ1SJ - - APRS - - 145825000 - - - 145825000 - - APRS 1200 bauds - - - - - - - - - - - - - - FalconSAT-3 - 30776 + NUDTSat (CN06) + 42787 Operational - INIT - 2019-08-07 + + true + + Draft + 2020-05-24+02:00 - - Digipeater - - 145840000 - - - 435103000 - - 9600bps GMSK - + + Beacon + 436270000 + + BPSK + 9600 Bps + + BG7AKF + - JAISAT-1 - 44419 - Unknown + NuSat-1 (LO-87) + 41557 + Operational + + true + + LO-87 Draft - 2019-08-07 - - Information page - http://www.rast.or.th/jaisat - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=521 - + 2020-05-24+02:00 - Beacon - 4435325000 + Beacon 1 + 145900000 - CW - + SSB CW + 0 + + + + Beacon 2 + 436445000 - GMSK - 4800 + FSK + 19200 - Transpondeur + Repeater - 145935000 - 145965000 + 436935000 + 436965000 - 435935000 - 435965000 + 145935000 + 145965000 - + Linear - LightSail-B (now LightSail-2) - 44420 + NuSat-2 + 41558 Operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 145900000 + + SSB CW + 0 + + + + + + + OO-38(OPAL) + 26063 + 2000-004C + Not operational + OO-38 + + + Main + 437100000 + + FSK + 9600 + + KF6RFX + + + + + OPS-Sat + 44878 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=478 + Allesandro Donati DJ0MDO + 2015-07-15 + 2015-10-04 + alessandro.donati@esa.int.nospam + - 2019-06-25 - + 2019-12-18 + Kourou, French Guiana - - DRAFT - 2019-06-24 + Verified + 2019-12-23 - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=489 - LightSail-2 has been coordinated by IARU - LightSail-2 a été coordonné par l'IARU + Calling radio amateurs: help find OPS-SAT! + http://www.esa.int/Enabling_Support/Operations/Calling_radio_amateurs_help_find_OPS-SAT + + + + + OPS-SAT: your flying laboratory! + http://www.esa.int/Enabling_Support/Operations/OPS-SAT_your_flying_laboratory + + - Telemetry 1 - 437025000 + Beacon + 437200000 - GMSK - 9k6 + GMSK + 9600 - - + OPS-SAT UHF Handbook + https://github.com/esa/gr-opssat/blob/master/docs/os-uhf-specs.pdf - - + OPS-SAT UHF beacon reception report + https://docs.google.com/forms/d/e/1FAIpQLSfkHF_wN2IxBb2WNYm6RuA_iT6qJH4Hz_pA9hCbcp0AcG5TbA/viewform - - + + https://github.com/esa/gr-opssat - skCUBE - 42789 - No operational - INIT - 2019-08-07 + OPUSAT + 39575 + Decayed + 2020-05-24+02:00 - Beacon - 437100000 + Main + 437154000 - CW - + AFSK + 1200 - GMSK - 9600 Bps + GFSK + 9600 + + + CW + JL3ZCA - - Digipeater - - 2401000000 - - - 437100000 - - - - - - SATNOGS : Kaitai Struct for Telemetry - https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/skcube.ksy - - - - - - - - - CAS-7B (BP-1B) - 44443 - - Operational + Orbital Factory 2 (OF-2) + 0 + To be launch - 2019-07-25 - Jiuquan + Wallops Flight Facility, états unis - BIT Progress-OSCAR 102 (BO-102) - verified - 2015-11-02 - - IARU coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=659 - + + Draft + 2020-05-24+02:00 - Information - CAS-7B (BP-1B) was developed by the Chinese Amateur Satellite Group (CAMSAT), and in cooperation with the Beijing Institute of Technology (BIT). CAMSAT completed the project planning, design, build, and testing, and manages the on-orbit operation of the satellite. BIT provided the satellite environmental testing, launch support, and financial support. Many students from BIT were involved with the project, learning about satellite technology and amateur radio. The satellite carries a CW telemetry beacon and FM repeater that has been active since launch. - + IARU information + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=685 + + - CW Beacon - 435715000 + Beacon + 435040000 - CW + GMSK + 9600 + + + + + Beacon + 2426000000 + + QPSK + 3-5 Mbps - - FM Transpondeur - - 145900000 - - - 435690000 - - FM - yes - - - Telemetry information - https://ukamsat.files.wordpress.com/2019/06/camsat-cas-7b-news-release.pdf - - - - - - + @@ -9146,13 +9609,16 @@ 43933 2019-003B Unknown + + true + 2019-01-18 Centre spatial JAXA Uchinoura, Kagoshima, Japan FO-98 Verified - 2019-01-19 + 2020-05-24+02:00 IARU Coordination http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=591 @@ -9197,1089 +9663,1154 @@ - NepaliSat1 - 44331 - Operational - - 2019-04-17 - - - + ORS-Squared + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437325000 + + GMSK + 9600 + + + + + + OSIRIS-3U + 43027 + Decayed + + true + Draft - 2019-05-07 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=618 - coordinated by IARU - coordonné par l'IARU - - - Bird3 hamradio information - http://birds3.birds-project.com/document/amateur/ - Radio documents - documents radio - + 2020-05-24+02:00 Beacon - 435375000 + 437505000 - CW - + GMSK + 9600 Bps GMSK - 9600 + 38400 Bps - + - - - - - - - BIRDS Project - JGMNB - https://www.formpl.us/form/6372043568185344 - - - - - BIRD-G (Ghana GhanaSat-1) - 42821 - No operational + OSSI-1 + 39131 + Unknown + Draft - 2019-08-07 + 2019-08-05 - Beacon - 437372000 - - GMSK - 9600 bps - + Main + 145980000 - AFSK - 1200 bps + AFSK + 1200 CW - - JG6YJP - BIRD-M (Mongolia Mazaalai) - 42822 - Decayed + OUFTI-1 + 41458 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 437372000 - - GMSK - 9600 bps - + 145980000 - AFSK - 1200 bps + FSK + 9600 bps - CW - + CW + 0 - JG6YJQ + OUFTI-1 + + DSTAR + + 435045000 + + + 145950000 + + DSTAR + - BRAC (BIRD-B) - 42823 - Decayed + PACE + 40022 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 437372000 - - GMSK - 9600 bps - + 437485000 - AFSK - 1200 bps + CW + 0 - CW - + AFSK + 1200bps - JG6YJS + - ChubuSat-2 - 41338 - No operational - draft - 2019-08-07 + ParkinsonSAT (PSAT) + 40654 + 2015-025D + Not operational + + true + + NO-84 + Verified + 2020-05-24+02:00 + + PSAT + http://aprs.org/psat.html + ParkinsonSAT description + - Beacon - 437102000 + APRS + 145825000 - GMSK - 9600 bps + AX25 + 1200 + + + PSK31 + 435350000 - AFSK - 1200 bps + PSK31 + W3ADO-5 + + + PSK31 + + 28120000 + + + 435035000 + + SSB PSK31 + + + + + LIVE Telemetry Downlink + http://pcsat.aprs.org + + + + + PCSat2 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437975000 - CW - + FSK + 9600 - JJ2YPN + PC2TLM - ChubuSat-3 - 41339 - No operational + Pegasus (AT03) + 42784 + Not operational + + true + Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 437424000 + 436670000 GMSK 9600 bps + ON03AT + + + + + PharmaSat-1 + 35002 + Not operational + + + Main + 437465000 - AFSK - 1200 bps - - - CW - + AFSK + 1200 - JJ2YPO + KE7EGC - CP-7 (DAVE) - 43615 - Operational - Draft - 2019-08-07 - - Project information - https://www.polysat.org/launched - - + PHOENIX (TW01) + 42706 + Decayed + Draft + 2019-08-07 Beacon - 437150000 - - FSK - 9600 bps - + 436915000 - CW - + GMSK + 9600bps - WI2XNR-1 + ON01TW - CubeBel-1(BSUSat-1) - 43666 + PHOENIX + 45258 Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 + QB50 and National Cheng Kung University + 2013-10-15 + 2015-04-06 + bx1ad@ctarl.org.tw.nospam + Draft - 2019-08-07 + 2020-05-09 - IARU coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=577 - - + Project page + http://phxcubesat.asu.edu/ + + + Frequency coordination note + + 437350000 is used instead of 436915000. This frequency is also used by Quarman satellite. THe satellite allow a ping command Beacon - 436990000 - - GMSK - 4800 bps - + 437350000 - GMSK - 9600 bps + GMSK + 9600 - EU10S + KIOO7Y - WJ2OXY - Digipeater + Ping Mode - 436200000 + 437350000 - 436200000 + 437350000 - + - information for amateur radio comunitie - https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ - - - Telemetry description - https://bsusat.com/projects/telemetry-data-structure + Radioamateur page including beacon description + https://github.com/ASU-cubesat/phxsat-gsw-public - How to upload telemetry - https://bsusat.com/for-radio-amateurs/how-to-upload-telemetry + + - + https://github.com/ASU-cubesat/phxsat-gsw-public - D-SAT - 42794 - No operational - Draft - 2019-08-07 + PhoneSat24 + 39381 + Decayed + 2020-05-24+02:00 - Beacon - 437505000 - - 4800bps GMSK CW - - + Main + 437425000 - GMSK - 4800 bps + AFSK + 1200 + KJ6KRW + + + + + PhoneSat25 + 39684 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 - CW - + AFSK + 1200 - U1-DSAT-U1 + KJ6KRW - EduSat-1 (BIRD-N) - 42824 + PicoDragon + 39413 Decayed - Draft - 2019-08-07 + 2020-05-24+02:00 - Beacon - 437372000 + Main + 437250000 - GMSK - 9600 bps + AFSK + 1200 - AFSK - 1200 bps + CW + + XV9PID + + + + + PICPOT + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + FSK + 9600 + + + + Main + 0 - CW - + 10kbitGFSK - JG6YJR + - ELFIN-A - 43617 - Operational - Draft - 2019-08-07 - - Project information - https://elfin.igpp.ucla.edu/ - - + PicSat + 43132 + Not operational + + true + + INIT + 2020-05-24+02:00 Beacon - 437450000 + 435525000 - GFSK - 9600bps + BPSK + 1200 - WJ2XNX + + BPSK + 9600 + + PICSAT + + Repeater + + 145910000 + + + 435525000 + + FM + - - - information for amateur radio comunitie - https://elfin.igpp.ucla.edu/listen-to-elfin - - - Telemetry description - https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx - - - SatNOGS : Kaitai Struct telemetry - https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy - - - - - - elfin@igpp.ucla.edu - - - ELFIN-B - 43616 - Operational - Draft - 2019-08-07 - - Project information - https://elfin.igpp.ucla.edu/ - - + PO-28(POSAT) + 22829 + 1993-061G + Not operational + PO-28 - Beacon - 437450000 + Main + 0 - GFSK - 9600bps + FSK + 9600 - WJ2XOX + POSAT1-11-12 - - - information for amateur radio comunitie - https://elfin.igpp.ucla.edu/listen-to-elfin - - - Telemetry description - https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx - - - SatNOGS : Kaitai Struct telemetry - https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy - - - - - - elfin@igpp.ucla.edu - - - ACRUX-1 - 44369 - Operational - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=644 - Gabriel Abrahams VK3EXO - 2018-09-15 - 2018-11-13 - abrahams.gabi@gmail.com.nospam - - - 2019-06-29 - - - draft - 2019-08-07 - - ACRUX-1 - https://melbournespace.com.au/projects/ - - + PO-34(PANSAT) + 25520 + 1998-064B + Not operational + PO-34 - Beacon - 437200000 + Main + 0 - GMSK - 9600bps + Spectrum - CQCQCQ + - - - - - - - - - - - - - Uguisu (BIRD-JPN) - 44330 - Operational - - 2019-04-17 - - - + PO-63 (PehuenSat) + 29712 + Not operational + PO-63 Draft - 2019-05-07 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=617 - coordinated by IARU - coordonné par l'IARU - - - Bird3 hamradio information - http://birds3.birds-project.com/document/amateur/ - Radio documents - documents radio - + 2020-05-24+02:00 Beacon - 435375000 - - CW - - + 145825000 - GMSK - 9600 + AFSK + 1200bps - + LU1YUC - - - - - - - BIRDS Project - JGMNB - https://www.formpl.us/form/6372043568185344 - - - - - TBEx-b - 44359 - To Be Launch - - 2019-06-25 - - - - DRAFT - 2019-06-24 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 - TBEx has been coordinated by IARU - TBEx a été coordonné par l'IARU - - - project information - https://exploration.engin.umich.edu/blog/?page_id=3257 - - - + PO-63(PehuenSat) + 29709 + Unknown + PO-63 + 2020-05-24+02:00 - Telemetry 1 - 437535000 + Main + 145825000 - GMSK - 9k6 + AFSK + 1200 - + LU1YUC - - - TBEx – Tandem Beacon Experiment - https://exploration.engin.umich.edu/blog/?page_id=3257 - - - SATNOGS : Kaitai Struct for Telemetry - https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/tbex.ksy - - - - - - jwcutler@umich.edu - - - AoXiang-1 (CN04) - 42735 - Decayed - Draft - 2019-08-07 + Pocket-PUCP + 0 + To be launch + Verified + 2020-05-24+02:00 - Beacon - 2401600000 + Main + 437200000 - BPSK - 9600 bps + AFSK + 1200 - NPUAX1 - - - Beacon - 437525000 - BPSK - 9600 bps + CW - NPUAX1 + + + + PolyITAN-1 + 40042 + 2014-033AJ + Operational + - Beacon - 437500000 + Main + 437675000 - BPSK - 9600 bps + FSK + 9600 - NPUAX1 + + CW + + EM0UKP - Toki (BIRD-J) - 42820 + PolyITAN-2-SAU (UA01) + 42732 Decayed Draft 2019-08-07 Beacon - 437372000 - - AFSK - 1200bps - + 436600000 - GMSK + BPSK 9600bps - - CW - - - JG6YJO + QBUA01 - Tomsk-TPU-120 (RS04S) - 42910 - No operational - Draft - 2019-08-07 + PolySatCP1 + 0 + To be launch + Verified + 2020-05-24+02:00 - Beacon - 145800000 + Main + 0 - FSK - 9600bps + 15bpsDTMFCW + N6CP + + + + + PolySatCP2 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437325000 - Voice - + AFSK + 1200 - RS4S + - Socrat - 44405 - Operational - Draft - 2019-08-07 + PolySatCP3 + 31128 + 2007-012M + Not operational - Beacon - 436000000 + Main + 0 - mobitex - 4800 bps + AFSK + 1200 - SONATE - 44400 - Unknown - INIT - 2019-08-07 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=572 - SONATE has been coordinated by IARU - SONATE a été coordonné par l'IARU - - - project information - http://www8.informatik.uni-wuerzburg.de/en/wissenschaftforschung/sonate/ - - - + PolySatCP4 + 31132 + 2007-012Q + Not operational - Telemetry 1 - 145840000 - - SSTV - - - - - - Telemetry 2 - 437025000 - - GFSK - 9600 Bps - + Main + 437323000 - GMSK - 9600 Bps + SSB + 1200 - + N6CP - SpooQy-1 - 44332 - Operational - Draft - 2019-08-07 - - project information - https://sites.google.com/site/phylej/projects-1/spooqy-1 - - - - - IARU Coordination declined - - - - + POPSAT-HIP1 + 40028 + 2014-033U + Not operational - Beacon - 436200000 + Main + 437405000 - GMSK - 9600bps + 1k2 9k6 CCSDS CW - + + CW + + POPSAT - STARS-AO - 43679 - Operational + Pratham + 41783 + Not operational Draft - 2019-08-07 - - Project information - https://stars-ao.info - - + 2020-05-24+02:00 Beacon - 437350000 + 145980000 - CW - + AFSK + 1200bps - JJ2YSY - - - Beacon - 437400000 - CW - + CW + 0 - JJ2YSY + PRATHAM + + + + PrintSat + 0 + To be launch + Verified + 2020-05-24+02:00 + - Beacon - 437200000 + Main + 437325000 - GMSK - + GMSK + 9600 - JJ2YSY - STARS-Me (Mother) - 43640 - No operational - Draft - 2019-08-07 - - Project information - http://stars.eng.shizuoka.ac.jp/english.html - - + PRISM(HITOMI) + 33493 + 2009-002B + Operational + + true + + 2020-05-24+02:00 - Mother - Beacon 1 - 437245000 - - CW - - + Main + 437250000 - AFSK - 1200 + AFSK - JJ2YPL - - - Mother - Beacon 2 - 437405000 - CW - + GMSK - AFSK - 1200 + CW - JJ2YPL + JQ1YCX + + + + PROITERES + 38756 + 2012-047B + Not operational + - Daughter - Beacon 1 - 437255000 + Main + 437485000 - CW - + AFSK + 1200 - AFSK - 1200 + CW - JJ2YPL + JL3YZL + + + + PSAT-2 + 44354 + Operational + + true + + + 2019-06-25 + + + Navy- OSCAR 104 (NO-104) + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=473 + PSAT-2 has been coordinated by IARU + PSAT-2 a été coordonné par l'IARU + + + Information page + http://aprs.org/psat2.html + + - Daughter - Beacon 2 - 437425000 + SSTV + 435350000 - CW + SSTV - - AFSK - 1200 - - JJ2YPL + + + APRS + + 145825000 + + + 145825000 + + AFSK + 1200 + + + PSK31 + + 294815000 + + + 435350000 + + AFSK + 1200 + + + + + + + + + + + + + - SUCHAI - 42788 - No operational - Draft - 2019-08-07 + PTecSat + 0 + To be launch + 2020-05-24+02:00 - Beacon - 437230000 - - CW - - + Main + 436000000 - FSK2k4 - 2400 Bps + AFSK + 1200 - SUCHAI - SurfSat - 43614 - No operational - Draft - 2019-08-07 - - Project information - https://icubesat.files.wordpress.com/2015/06/icubesat-2015_org_b-3-5_surfsatweb_dove.pdf - - + PUCP-SAT-1 + 39442 + 2013-066AC + Not operational - Beacon - 437275000 + Main + 145840000 - FSK - 9600bps + AFSK + 1200 - - Tancredo-1 (UbatubaSat) - 41391 - Decayed - Draft - 2019-08-07 + PW-Sat 2 + 43814 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project Site + https://pw-sat.pl/en/home-page/ + PW-Sat2 is a student satellite project started in 2013 at Warsaw University of Technology by the Students Space Association members. Its main technical goal is to test new deorbit technology in form of a large deorbit sail whereas the project purpose is to educate a group of new space engineers + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=545 + PW-Sat 2 has been coordinated by IARU + PW-Sat 2 a été coordonné par l'IARU + - Beacon - 437200000 + Telemetry 1 + 435275000 - AFSK - 1200 bps + BPSK + 9600 - CW - + BPSK + 1200 - PY0ETA + + + + Ham radio information + https://pw-sat.pl/en/information-for-radio-amateurs/ + + + + + + + https://radio.pw-sat.pl/communication/desktopsoftware + - Tanusha-SWSU-1 (RS-6S) - 42911 - No operational - draft - 2019-08-07 + PW-Sat1 + 38083 + Not operational - Beacon - 437050000 + Main + 145902000 - AFSK - 1200 bps + BPSK + 1200 - Voice - + CW - RS6S + VOID - Tanusha-SWSU-2 (RS-7S) - 42912 - No operational + QARMAN + 45257 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 + Thosten Scholz DO2TSB + 2013-10-31 + 2015-06-08 + scholz@vki.ac.be.nospam + Draft - 2019-08-07 + 2020-05-22 + + Project Information page + https://qarman.eu/ + Beacon - 437050000 - - AFSK - 1200 bps - + 437350000 - Voice - + GMSK + 9600 - RS7S + ON05BE + + + Qarman Beacon Definition + https://ukamsat.files.wordpress.com/2020/01/qarman_bcndef_v1.1.pdf + + + Beacon Decoder spreadsheet + https://ukamsat.files.wordpress.com/2020/01/qarman_bcndecoder.xlsx + + + + + + operations@qarman.eu + + - Tanusha-SWSU-3 (RS-8S) - 43597 - No operational - Draft - 2019-08-07 + QB50p1 - FUNcube3 + 40025 + 2014-033R + Not operational + + true + + + 2014-06-19 + Yasniy site + + EO-79 + Verified + 2020-05-24+02:00 + + QB50 Precursor Mission page + https://www.qb50.eu/index.php/precursor-flight + EO-79, also known as QB50p1 and FUNcube-3, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-NL constructed transponder as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months. (Source AMSAT-NA) + + + Funcube Home page + http://funcube.org.uk/ + Funcube project home page + - Beacon - 437050000 + Main + 145815000 - AFSK - 1200 bps + BPSK + 1200 - Voice - + CW - RS8S + QB50P1 + + Main + + 435035000 + 435065000 + + + 145935000 + 145965000 + + SSB/CW + yes + + + + QB50 precursor amateur radio operator page + https://www.qb50.eu/index.php/precursor-amateur-radio-operator + + + CW beacon content + http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + operations@isispace.nl + + - Tanusha-SWSU-4 (RS-9S) - 43598 - No operational - Draft - 2019-08-07 + QB50p2 (EO-80) + 40032 + 2014-033Y + Not operational + + true + + + 2014-06-19 + Yasniy site + + EO-80 + Verified + 2020-05-24+02:00 + + QB50 Precursor Mission page + https://www.qb50.eu/index.php/precursor-flight + EO-80, also known as QB50p2, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-F constructed repeater as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months.(source AMSAT-NA) + + + + Le@af 4 - Edition spéciale QB50 + http://www.amsat-f.org/spip/IMG/pdf/leaf4.pdf + Amsat-Francophone publication dedicated to QB50P2 + - Beacon - 437050000 + Main + 145880000 - AFSK - 1200 bps + BPSK + 1200 - Voice - + CW - RS9S + QB50P2 + + FM voice repeater + + 435080000 + + + 145840000 + + FM + 210.7 + + + + QB50 precursor amateur radio operator page + https://www.qb50.eu/index.php/precursor-amateur-radio-operator + + + CW beacon content + http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + operations@isispace.nl + + - TechEdSat-5 - 42066 + QBEE (SE01) + 42708 Decayed - INIT + Draft 2019-08-07 Beacon - + 435800000 - - + GFSK + 9600bps - + ON01SE - TY-5 (Tianyi-5 Xiaoxiang-5) - 43553 - Unknown + QBITO (ES01) + 42728 + Decayed INIT 2019-08-07 Beacon - + 436810000 - 9k6 GMSK/5Mbps OFDM - + GFSK + 9600bps - VDNH-80 - 44392 - Operational - draft - 2019-08-07 + QUAKESAT + 27845 + 2003-031F + Not operational - Beacon - 436500000 + Main + 436682000 - mobitex - 4800 bps + FSK + 9600 - + KD7OVB - VZLUsat-1 (CZ02) - 42790 - Operational + Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6) + 43158 + Not operational + + true + INIT - 2019-08-07 - - Pilsen Ground Station - https://www.pilsencube.zcu.cz/vzlusat1/ - - - - - Beacon - 437240000 - - MSK - 4800 bps - - - CW - 20 Wpm - - VZLUSAT1 - - - - - information for amateur radio comunitie - https://www.pilsencube.zcu.cz/vzlusat1/static_radio_amateur.html - - - - - Xiaoxiang-4 (TY-4 Tianyi-4) - 43669 - Operational - draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 435925000 + 436100000 GMSK 9600 @@ -10289,602 +10820,547 @@ T1 - 435925000 + 436100000 - 435925000 + 436100000 9k6 GMSK T2 - 2409000000 + 2415000000 - 2409000000 + 2415000000 5Mbps OFDM T3 - 5659000000 + 5667000000 - 5839000000 + 5845000000 5Mbps OFDM - TY-3 (Tianyi-3 Xiaoxiang-3) - 43664 - Unknown - INIT - 2019-08-07 - - - Beacon - - - 9k6 GMSK/5Mbps OFDM - - - - - - - - PSAT-2 - 44354 - Operational - - 2019-06-25 - - - Navy- OSCAR 104 (NO-104) - Verified - 2019-08-07 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=473 - PSAT-2 has been coordinated by IARU - PSAT-2 a été coordonné par l'IARU - - - Information page - http://aprs.org/psat2.html - + Qubescout-S1 + 39443 + 2013-066AD + Not operational - SSTV - 435350000 + Main + 437525000 - SSTV - + GMSK + 9600 - - - APRS - - 145825000 - - - 145825000 - - AFSK - 1200 - - - PSK31 - - 294815000 - - - 435350000 - - AFSK - 1200 - - - - - - - - - - - - - - CP-9 - 44360 + QUETZAL-1 + 45598 Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=653 + José Bagur TG8JAB + 2018-11-15 + 2019-07-23 + jabagur@uvg.edu.gt.nospam + - 2019-06-25 - + International Space Station - - DRAFT - 2019-06-24 + Draft + 2020-05-01 - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=481 - CP-9 has been coordinated by IARU - CP-9 a été coordonné par l'IARU + Project page + https://www.uvg.edu.gt/cubesat-en/ - Information page - https://www.polysat.org/ - + Telemetry description and associated SW + https://github.com/danalvarez/gr-quetzal1 + This repository includes the UHF specifications for Quetzal-1, information on demodulating and decoding beacons from the satellite, as well as a graphical application to view beacon data. + + - Telemetry 1 - 437505000 - - FSK - 9k6 - - - FSK - 19k2 - + Beacon + 437200000 - FSK - 38k4 + GMSK + 4800 - KJ6RQH-1 + - - + beacon description + https://github.com/danalvarez/gr-quetzal1/blob/master/docs/Beacon_Package_Data.xlsx - - + satelite@uvg.edu.gt + https://github.com/danalvarez/gr-quetzal1 - Max Valier Sat - 42778 - Operational + Raavana 1 + 44329 + Operational + + true + - 2017-06-23 - Satish Dhawan Space Centre. + 2019-04-17 + - Verified - 2019-08-07 + + Draft + 2020-05-24+02:00 - Information page - http://aprs.org/bricsat-2.html + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=616 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio - Radio Beacon - 145960000 + Beacon + 435375000 - CW - + CW + - II3MV - - - Beacon Astrodev Helium-100 - 145860000 - GMSK - + GMSK + 9600 - II3MV + - Amateur information - http://www.maxvaliersat.it/amateurradio - - - QSL Card Request - mailto:maxvaliersat[at]tfobz[dot]net. + + - - + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 - LightSat (D-Star One) - 44393 - Operational - INIT - 2019-08-07 - - - Beacon - 435700000 - - mobitex GMSK - 4800 Bps - - - - - Beacon - 435700000 - - mobitex GMSK - 9600 Bps - - - - - - - HORYU-4 - 41340 - Operational + RadSat-u + 45262 + Not operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=551 + Larry Springer expérimental + 2017-03-08 + 2017-04-26 + Larry.springer@msu.edu.nospam + - 2016-02-17 - TANEGASHIMA SPACE CENTER + Wallops Flight Facility, états unis + Draft - 2019-08-07 + 2020-05-24+02:00 - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=434 - has been coordinated by IARU - a été coordonné par l'IARU - + RadSat-U publication + https://scholarworks.montana.edu/xmlui/handle/1/12916 + Les chercheurs de MSU travaillent depuis huit ans sur un système informatique tolérant aux rayonnements ionisants pour les applications spatiales. Afin de quantifier la quantité de rayonnement ressentie par l'ordinateur, l'équipe RadSat-U développe un capteur de rayonnement photo-voltaïque. RadSat-U, un satellite 3U conçu pour transporter l'ordinateur tolérant aux radiations dans l'espace, est la plate-forme de test idéale. L'expérience consiste en une cellule solaire entièrement intégrée et un circuit de conditionnement de signaux conçus pour s'adapter à RadSat-U. RadSat-U transportera ensuite à la fois l'ordinateur tolérant aux radiations et l'expérience sur les cellules solaires en orbite où l'environnement de rayonnement spatial testera les limites des deux systèmes. Un test à grande échelle élèvera cette nouvelle technologie au plus haut niveau de la NASA pour les technologies émergentes, ce qui lui permettra d'être utilisé dans de futures missions. + + + An FPGA-based Radiation Tolerant SmallSat Computer System + http://www.montana.edu/blameres/vitae/publications/d_conference_full/conf_full_033_fpga_based_smallsat_computer.pdf + + Beacon - 437375000 - - CW - - - - AFSK - 1200 - - - GFSK - 9600 - - JG6YBW - - - Beacon S - 2400300000 + 437425000 - BPSK - 10000 + GMSK + 19200 + + + + + + + + + + + + - Es'Hail-2 (Phase-4A QO-100) - 43700 - Operational - QO-100 - Verified - 2019-08-07 - - P4A AMSAT DL Forum - https://forum.amsat-dl.org/index.php?board/3-es-hail-2-amsat-phase-4-a/ - AMSAT DL Forum for Phase 4A payload - Forum de l'AMSAT-DL pour Phase 4A - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=630 - AMSAT P4-A has been coordinated by IARU - AMSAT P4-A a été coordonné par l'IARU - + RAIKO + 38852 + Not amateur satellite + + Draft + 2020-05-24+02:00 - Beacon - + Main + 1300000000000 - Linear transponder - + 384-500kbps - - Narrowband Linear transponder - - 2400050000 - 2400300000 - - - 10489550000 - 10489800000 - - - - - Wideband digital transponder - - 2401500000 - 2409500000 - - - 10491000000 - 10499000000 - - - - - EQUISat - 43552 + + Range A + 43798 Operational - Draft - 2019-08-07 + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 - Information page - https://brownspace.org/equisat/ + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 + RAnge A has been coordinated by IARU + RAnge A a été coordonné par l'IARU - Beacon - 435550000 + Telemetry 1 + 437150000 - CW - + FSK + 0.1 kbps to 115.2 kbps - FSK - 9600 + MSK + 0.1 kbps to 115.2 kbps - FSK - 4800 + GFSK + 0.1 kbps to 115.2 kbps - + + GMSK + 0.1 kbps to 115.2 kbps + + - - + + - Dasboard - https://equisat.brownspace.org + + - EO-88 (FUNcube-5 Nayif-1) - 42017 - Operational - EO-88 - Draft - 2019-08-07 + Range B + 43773 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 + RAnge B has been coordinated by IARU + RAnge B a été coordonné par l'IARU + - Beacon - 145940000 + Telemetry 1 + 437475000 - BPSK SSB - 1200 + FSK + 0.1 kbps to 115.2 kbps - - - - Beacon - 145940000 - BPSK SSB - 1200 + MSK + 0.1 kbps to 115.2 kbps - + + GFSK + 0.1 kbps to 115.2 kbps + + + GMSK + 0.1 kbps to 115.2 kbps + + - - Main - - 435015000 - 435045000 - - - 145960000 - 145990000 - - SSB/CW - yes - - Telemetry dashboard - http://data2.amsat-uk.org/ui/nayif1 + n + - operations@funcube.org.uk - https://funcube.org.uk/working-documents/funcube-telemetry-dashboard/ + + - EnduroSat One - 43551 - No operational + RANGE-A + 43772 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 437050000 + 437150000 - GMSK - 9600bps + 0.1kbps-115.2kbps FSK/MSK/GFSK/GMSK + 0 - LZ0AMS + - D-Star ONE EXOCONNECT - 44413 - Operational + RASAT + 37791 + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon - 435700000 + 437400000 - mobitex GMSK - 4800 + FSK + 9600 bps + RASAT0-11 -12 + + + + + RAX-1 + 37223 + 2010-062B + Not operational + + + Main + 437505000 - mobitex GMSK - 9600 + GMSKKISS + 9600 + + RAX-1 + + + + + RAX-2 + 37853 + 2011-061D + Not operational + + + Main + 437345000 + + GMSK + 9600 - Aalto-1 - 42775 + Reaktor Hello World + 43743 Operational true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=292 - Timo Nikkanen OH2EGZ - 2013-03-15 - 2015-06-03 - timo.nikkanen@gmail.com.nospam - INIT - 2019-08-07 - - Mission description - https://wiki.aalto.fi/display/SuomiSAT - - + + 2018-12-16 + India + + + Verified + 2020-05-24+02:00 - PDF file - https://docs.google.com/file/d/0B9SJ8FHoqwj-eVR2SzhrWFFTZTA/edit - + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=503 + Reaktor Hello World has been coordinated by IARU + Reaktor Hello World a été coordonné par l'IARU - Beacon - 437220000 + Telemetry 1 + 437775000 - FSK CW - 9600bps + CW + - CW - + 2GFSK + 9k6 - OH2A1S + + + + Telemetry corrected frequency + 437775270 + + CW + + + + 2GFSK + 9k6 + + + + + Telemetry 1 + 2410000000 + + MSK + 1Mbs + + + + + + + + + + + + + + - URSA MAIOR (IT02) - 42776 - Operational - draft - 2019-08-07 + RINCON + 0 + To be launch + Verified + 2020-05-24+02:00 - Beacon - 435950000 + Main + 437345000 - FSK - 9600 Bps + AFSK + 1200 - URSAMR + WA4CEW - RS-3 (Radio Sputnik 3) - 12997 - No operational - Draft - 2019-08-07 + Robusta + 38080 + Not operational - Beacon - + Main + 437325000 - - + FM + 1200 - RS-4 (Radio Sputnik 4) - 13000 - No operational - INIT - 2019-08-07 + Robusta-1B + 42792 + 2017-036AD + Operational + + true + + Verified + 2020-05-24+02:00 - Beacon - + Main + 437325000 - + AFSK + 1200 + + + CW - + FX6FR - RS-20 (Mozhayets-3) - 27560 - Decayed + RS-1 (Radio Sputnik 1) + 11085 + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon - 145828000 - - CW - - - - - - Beacon - 435319000 + - CW + @@ -10892,87 +11368,65 @@ - Pegasus (AT03) - 42784 - No operational - Draft - 2019-08-07 + RS-2 (Radio Sputnik 2) + 11086 + Not operational + INIT + 2020-05-24+02:00 Beacon - 436670000 + - GMSK - 9600 bps + + - ON03AT + - NUDTSat (CN06) - 42787 - Operational + RS-3 (Radio Sputnik 3) + 12997 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 436270000 + - BPSK - 9600 Bps + + - BG7AKF + - Nanosat-7 (Prox-1) - 44339 - Unknown - draft - 2019-08-07 - - Information page - http://prox-1.gatech.edu/ - - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=437 - Prox-1 has been coordinated by IARU - Prox-1 a été coordonné par l'IARU - + RS-4 (Radio Sputnik 4) + 13000 + Not operational + INIT + 2020-05-24+02:00 Beacon - 2306500000 + - FSK - 38400 Bps + + - - - - - - - Telemetry description - http://prox-1.gatech.edu/beacon.html - - - - RS-5 (Radio Sputnik 5) 12999 - No operational + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon @@ -10988,9 +11442,9 @@ RS-6 (Radio Sputnik 6) 13002 - No operational + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon @@ -11006,9 +11460,9 @@ RS-7 (Radio Sputnik 7) 13001 - No operational + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon @@ -11024,9 +11478,9 @@ RS-8 (Radio Sputnik 8) 12998 - No operational + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon @@ -11040,543 +11494,350 @@ - RS-47 (COSMOS-2499) - 39765 - No operational - INIT - 2019-08-07 + RS-10 (COSMOS 1861) + 18129 + Not operational + Draft + 2020-05-24+02:00 - Beacon 1 - 435565000 - - CW - - - - - - Beacon 2 - 435465000 + Beacon + 29357000 CW - - - - RSP-00 - 43639 - No operational - draft - 2019-08-07 - - project site - http://rymansat.com/en/2018/10/15/operational-status-of-rsp-00/ - - - - Beacon - 145890000 + 29403000 - 38k4 pi/4QPSK CW + CW - - AFSK - 1200 - - - FM - - - - CW - - - 8J1RSP - - - Beacon - 436930000 - - pi/4QPSK - 38400 Bps - - 8J1RSP - - - - - NanoSat-6 (Oculus-ASR) - 44346 - Unknown - draft - 2019-08-07 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=266 - - - Project information page - http://aerospace.mtu.edu/spacecraft/oculus-asr - - - - Beacon - 437200000 - - GMSK - 9600 Bps - - MOVE-IIb - 44398 - Unknown - Draft - 2019-08-07 - - Information page - https://www.move2space.de/MOVE-II/ - + RS-12(Sputnik) + 21089 + 1991-007A + Not operational - Beacon - 145840000 + Main + 29408000 - QPSK - 12500 Bps + CW + + + + Main + 145862000 CW - - COMPASS-2/DragSail (DE04) - 42777 - No operational - Draft - 2019-08-07 - - Information page - http://149.201.163.33/?page_id=125 - + RS-14 (Informator-1) + 21087 + Not operational + INIT + 2020-05-24+02:00 Beacon - 437300000 + 145822000 - s AFSK - 1200 Bps + CW + Beacon - 2403000000 + 145948000 - AFSK - 1200 Bps + CW + - - - - - - - Amateur radio information - http://149.201.163.33/?page_id=892 - - - https://www.dropbox.com/sh/v6ji3pduzm4ue4m/AABQGgBKULDBgroJWs0e-Bqwa?dl=0 - - VisionCube - 43758 - - - Vandenberg Air Force Base, California - - - Verified - 2018-11-04 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=607 - VisionCube has been coordinated by IARU - VisionCube a été coordonné par l'IARU - + RS-15(Sputnik) + 23439 + 1994-085A + Operational - Telemetry 1 - 437425000 + Main + 29352000 - GMSK - 9600 + CW - KUVCS + - - - Ham radio Information - http://control.kau.ac.kr/visioncube/visioncube-2/ - - - - - - heokjune1994@gmail.com - - - AMSAT-India APRS - 44104 - Operational - - 2019-03-04 - Satish Dhawan Space Centre (SDSC) SHAR, Sriharikota - - - Verified - 2019-03-31 - - Project description - http://amsatindia.org/ - This experimental radio payload on the fourth stage platform is an Automatic Packet Reporting System (APRS) – also called a digipeater. - - Charge utile radioamateur fixée sur le quatriéme étage de la fusée PSLV. La charge utile est un digipeater - - - IARU Coordination - - Payload have not been coordinated - APRS default frequency - La fréquence utilisée par la charge utile n'a pas été coordonnée - Utilisation de la fréquence APRS par défaut - + RS-16 (Mozhayets-2) + 24744 + Decayed + Draft + 2019-08-07 - - APRS - - 1458250000 - - - 1458250000 - - AFSK 1200 - + + Beacon + 435510000 + + CW + 0 + + + - - - - - - - - - - - - - Aalto-2 (FI01) - 42729 + RS-17 (Sputnik 40) + 24958 Decayed - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=362 - Timo Nikkanen OH2EGZ - 2013-11-13 - 2015-06-18 - timo.nikkanen@gmail.com.nospam - INIT 2019-08-07 Beacon - 437.335 + 145820000 - GFSK - 9600 bps + CW + - AALTO2 + - 3CAT1 - 43781 - No operational - - India - - - Verified - 2018-11-27 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=370 - 3CAT1 Hello World has been coordinated by IARU - 3CAT1 Hello World a été coordonné par l'IARU - + RS-18 (Sputnik 41) + 25533 + Decayed + Draft + 2019-08-07 - Telemetry 1 - 437250000 - - FSK - 9k6 - + Beacon + 145812000 - CW - + CW + 0 - + - - - - - - - - - - - - - AAUSAT-4 - 41460 - Operational - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 - Jens Frederick Dalsgaard OZ2JDN - 2014-01-24 - 2014-07-14 - jdn@es.aau.dk.nospam - - VERIFIED + RS-19 (Sputnik 99) + 25685 + Decayed + INIT 2019-08-07 - - Mission description - http://www.space.aau.dk/aausat4/ - - Beacon - 437425000 - - GFSK - 2400 - + 145815000 - GFSK - 9600 + CW + + + + + + + RS-20 (Mozhayets-3) + 27560 + Decayed + INIT + 2019-08-07 + + + Beacon + 145828000 - GFSK - 19200 + CW + + + + + Beacon + 435319000 CW - + - OZ4CUB + - AISTECHSAT-2 - 43768 - Operational - Draft - 2019-08-07 + RS-21(Sputnik) + 27394 + Decayed - Beacon - 436730000 - - GMSK - 4800 - + Main + 145825000 - GMSK - 49600 + CW - Al-Farabi-2 - 43805 + RS-22(Mozhayets) + 27939 + 2003-042A Operational - Draft - 2019-08-07 - Beacon - 436500000 - - GMSK - 4800bps - + Main + 435352000 - CW - + CW - UN1GWA + - CADRE - 41475 - Decayed + RS-23 (Tatyana) + 28523 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 437485000 + 435215000 - GMSK 1Mbit OQPSK - 9600bps + CW + 0 Beacon - 3404000000 + 435315000 - OQPSK - 1Mbit + CW + 0 - DeorbitSail - 40719 - No operational - Drfat - 2019-08-07 + RS-25 + 28898 + 2005-043G + Unknown - Beacon - 145975000 + Main + 435325000 - BPSK - 1200bps + CW - DOS + - FO-12 (JAS-1) - 16909 - No operational - FO-12 + RS-28(UgatuSat) + 35869 + 2009-049D + Not operational + Draft - 2019-08-07 + 2019-08-05 - Beacon - 435795000 + Main + 435264000 - CW - + CW - + RS28 - Fox-1B (RadFxSat AO-91) - 43017 - Operational + RS-30(Yubileiniy) + 32953 + 2008-025A + Not operational + Draft - 2019-08-07 + 2019-08-05 - Beacon - 145960000 + Main + 435315000 - DUV - 200 Bps + CW - + RS30 - - FM voice repeater mode 1 - - 435250000 - - - 145960000 - - FM - 67 - - KAZSCISAT-1 - 43787 - Operational + RS-38(Tatiana-2) + 35868 + 2009-049E + Not operational + Draft - 2019-08-07 + 2019-08-05 - Beacon - 435500000 + Main + 435490000 - GMSK - 9600bps + CW - + RS38 - MakerSat-0 - 43016 - No operational + RS-39 (Chibis-M) + 38051 + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon - + 435315000 - + CW + + + + + + Beacon + 435215000 + + CW @@ -11584,789 +11845,926 @@ - NO-83 (BRICsat) - 40655 - No operational - AO-83 + RS-40 (Yubileyny-2 MiR) + 38735 + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon - 437975000 + 435365000 - FSK PSK31 - 9600 bps + CW + - BRCSAT + - - PSK31 - - 28120000 - - - 435350000 - - APRS 1200 bauds - - Nodes-1 - 41478 - Decayed + RS-46 (COSMOS-2491) + 39497 + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon - 437100000 + 435465000 - AFSK - 1200 + CW + - KE6QLL + + + + Beacon + 435565000 + + CW + + + - Nodes-2 - 41477 - No operational + RS-47 (COSMOS-2499) + 39765 + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 - Beacon - 437100000 + Beacon 1 + 435565000 - AFSK - 1200 + CW + - KE6QLL + + + + Beacon 2 + 435465000 + + CW + + + - PW-Sat 2 - 43814 - Operational - - Vandenberg Air Force Base, California - - - Verified - 2018-12-28 - - Project Site - https://pw-sat.pl/en/home-page/ - PW-Sat2 is a student satellite project started in 2013 at Warsaw University of Technology by the Students Space Association members. Its main technical goal is to test new deorbit technology in form of a large deorbit sail whereas the project purpose is to educate a group of new space engineers - - + RSP-00 + 43639 + Not operational + draft + 2020-05-24+02:00 - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=545 - PW-Sat 2 has been coordinated by IARU - PW-Sat 2 a été coordonné par l'IARU + project site + http://rymansat.com/en/2018/10/15/operational-status-of-rsp-00/ + + - Telemetry 1 - 435275000 + Beacon + 145890000 - BPSK - 9600 + 38k4 pi/4QPSK CW + - BPSK - 1200 + AFSK + 1200 - + + FM + + + + CW + + + 8J1RSP + + + Beacon + 436930000 + + pi/4QPSK + 38400 Bps + + 8J1RSP - - - Ham radio information - https://pw-sat.pl/en/information-for-radio-amateurs/ - - - - - - - https://radio.pw-sat.pl/communication/desktopsoftware - - RS-2 (Radio Sputnik 2) - 11086 - No operational - INIT - 2019-08-07 + SACRED + 0 + To be launch + Verified + 2020-05-24+02:00 + + Wiki page + https://en.wikipedia.org/wiki/SACRED + + - Beacon - + Main + 0 - - + AFSK + 1200 - + WA4CEW - RS-1 (Radio Sputnik 1) - 11085 - No operational - INIT - 2019-08-07 + SAFIR-S + 25399 + 1998-043F + Not operational + Verified + 2019-02-14 - Beacon - + Main + 2401900000 - - + FSK + 9600 - + DP1AIS - RS-19 (Sputnik 99) - 25685 - Decayed - INIT - 2019-08-07 + SamSat-218D + 41466 + Not operational + Draft + 2020-05-24+02:00 Beacon - 145815000 + 145870000 CW - + 0 - + SAMSAT-218D - RS-39 (Chibis-M) - 38051 - No operational + Sathyabamasat + 41600 + Not operational + + true + INIT - 2019-08-07 + 2020-05-24+02:00 Beacon - 435315000 + 145980000 - CW - + CW + 0 - - - - Beacon - 435215000 - CW - + BPSK CW + 2400 bps - + SNSAT - RS-40 (Yubileyny-2 MiR) - 38735 - No operational + SaudiSat-4 + 40016 + Not operational INIT - 2019-08-07 + 2020-05-24+02:00 Beacon - 435365000 + - CW - + Ka-band SSB + 0 - RS-46 (COSMOS-2491) - 39497 - No operational - INIT + SEAM-2.0 + 44411 + Unknown + Draft 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=584 + TBEx has been coordinated by IARU + TBEx a été coordonné par l'IARU + Beacon - 435465000 + 437250000 - CW - + GMSK + 9600 bps + + + + SEEDS + 0 + To be launch + Verified + 2020-05-24+02:00 + - Beacon - 435565000 + Main + 0 - CW - + AFSK + 1200 - + JQ1YGU - RS-14 (Informator-1) - 21087 - No operational - INIT - 2019-08-07 + SeeMe + 0 + To be launch + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=457 + SeeMehas been coordinated by IARU + SeeMe a été coordonné par l'IARU + - Beacon - 145822000 + Telemetry 1 + 437425000 - CW - + + - + - Beacon - 145948000 + Telemetry 2 + 437450000 - CW - + + - + + + + Telemetry 3 + 2424250000 + + BPSK + 1.6Mbps + + + + + + + + + + + + + + - RS-17 (Sputnik 40) - 24958 + SERPENS + 40897 Decayed - INIT - 2019-08-07 + + 2015-09-17 + International Space Station + + None + Verified + 2020-05-24+02:00 + + SERPENS Ham Radio Page + http://www.aerospace.unb.br/serpens_radioamateurs + SERPENS is a 3U CubeSat which was developed by students at the University of Brasilia and focuses on meteorological data collection. + - Beacon - 145820000 + Sector A + 145980000 - CW - + GFSK + 9600 - + PY0ESA - - - - RS-10 (COSMOS 1861) - 18129 - No operational - Draft - 2019-08-07 - - Beacon - 29357000 + SECTOR B + 437365000 - CW - + CW - - - - Beacon - 29403000 - CW - + MSK + 1200 - + PY0ESA + + + SERPEN HamRadio Home Page + http://www.aerospace.unb.br/serpens_radioamateurs + + + Report shall be sent by email + serpens.reports@aerospace.unb.br. + + + - ALSat-1N - 41789 - Operational - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=485 - Djamel Eddine Baba Hamed 7X4TS - 2015-11-06 - 2016-01-11 - debabahamed@cds.asal.dz.nospam - + SGSat + 42703 + Unknown Draft 2019-08-07 Beacon - 437650000 + 437450000 - FSK9k6 - 9600 bps + FSK + 9600bps - AL1N + - 1KUNS-PF - 43466 - Operational - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=559 - 5Z4HL Heywood Ouma - 2017-06-03 - 2017-06-23 - houma@ieee.org.nospam - - Draft - 2019-08-07 - - Information page - https://1kuns-pf.ns0.it/ - + ShindaiSat + 39572 + Decayed + 2020-05-24+02:00 - Beacon - 437300000 - - GMSK - 9600 - - - GMSK - 1200 - + Main + 437485000 - GMSK - 2400 + AFSK + 1200 - GMSK - 4800 + CW - + JR0ZST - 3CAT-2 - 41732 - No operational - - true - coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=371 - Vicente J. Gomez Oviedo EA3GP - 2014-01-23 - 2014-06-09 - vjgomez@tsc.upc.edu.nospam - - Draft - 2019-08-07 + SHIN'EN2 (FO-82) + 40320 + Deep Space + 2020-05-24+02:00 - Beacon - 24010000000 + Main + 437385000 - BPSK - 1000000 + Transponder WSJT/CW - + JG6YIG + + + + SIRIUSSAT-1 (SXC1-181 RS13S) + 43595 + 1998-067PG + Operational + + 2018-08-15 + ISS + + + Verified + 2019-02-14 + + Siriussat information page (Russian) + http://sputnix.ru/ru/nashi-sputniki/siriussat-1 + + + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + + + Siriussat hamradio information from Sputnix companie + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + hamradio information from Spunix Companie + + - Beacon - 145970000 + Main + 435570000 - BPSK - 9600 + GMSK + 4800 - + RS13S + + + + + + + + + + siriussat@sputnix.ru + + Télécharger SPUTNIX Telemetry Viewer (Win ENG) + http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip + + - ISX (CP-11) - 43856 - No operational - INIT - 2019-08-07 + SiriusSat-2(SXC1-182 RS14S) + 43596 + 1998-067PH + Operational + + 2018-08-15 + ISS + + + Verified + 2019-02-14 + + Siriussat information page (Russian) + http://sputnix.ru/ru/nashi-sputniki/siriussat-1 + + + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + + + Siriussat hamradio information from Sputnix companie + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + hamradio information from Spunix Companie + - Beacon - 437150000 - - FSK - 9600 bps - + Main + 435670000 - CW - 0 + GMSK + 4800 - + RS14S + + + + + + + + + + siriussat@sputnix.ru + + Télécharger SPUTNIX Telemetry Viewer (Win ENG) + http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip + + - AISTECHSAT-3 - 44103 - Operational - Draft - 2019-08-07 + skCUBE + 42789 + Not operational + + true + + INIT + 2020-05-24+02:00 Beacon - 436730000 + 437100000 - GFSK - 9600 + CW + - GFSK - 4800 + GMSK + 9600 Bps - + + Digipeater + + 2401000000 + + + 437100000 + + + + + + SATNOGS : Kaitai Struct for Telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/skcube.ksy + + + + + + + + - SaudiSat-4 - 40016 - No operational - INIT - 2019-08-07 + SMOG-P (MO-105) + 44832 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=641 + Levente Dudas HA7WEN + 2018-08-13 + 2018-11-19 + dudas@hvt.bme.hu.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + Magyar-OSCAR 105 (MO-105) + Verified + 2019-11-26 + + Project information + http://gnd.bme.hu + + + Beacon - + 437150000 - Ka-band SSB - 0 + GMSK + 12500 - + - ANUSAT - 34808 - Decayed - Draft - 2019-08-07 + Snuglite + 43784 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=529 + Snuglite has been coordinated by IARU + Snuglite a été coordonné par l'IARU + - Beacon - 137400000 + Telemetry 1 + 437275000 - AFSK - 1200 bps + GMSK + 9600 + + + + + + + + + + + + - INS-1C - 43116 - No operational + SNUSAT-1 (KR02) + 42733 + Decayed Draft 2019-08-07 Beacon - 435080000 + 436090000 - FSK - 1200 bps + BPSK + 1200bps - INDUSR-10 + ON02KR - Kaidun-1 - 41915 - Operational + SNUSAT-1b (KR03) + 42727 + Decayed Draft 2019-08-07 Beacon - 437600000 + 435950000 - G3RUH BPSK - 1200 bps + BPSK + 1200bps - AXNWPU-4 + ON03KR - LQSat - 40958 - No operational - Draft - 2019-08-07 + SNUSAT-2 + 43782 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=509 + SNUSAT-2 has been coordinated by IARU + SNUSAT-2 a été coordonné par l'IARU + - Beacon 1 - 437650000 + Telemetry 1 + 437625000 - 4k8 MSK - 4800 Bps + BPSK + 9600 + + + + Telemetry 2 + 2402000000 - CW - 0 + DQPSK + 1.06Mbit/s + + + + + + + + + + + + + + + + SO-33(SEDSAT-1) + 25509 + 1998-061B + Not operational + SO-33 + - Beacon + Main + 437910000 - MSK4k8 - 0 + FSK + 9600 - + SEDSAT-1 + + + + SO-35(SUNSAT-1) + 25636 + 1999-008C + Not operational + SO-35 + - Beacon - 2404035000 + Main + 145825000 - QPSK - 1Mbps + 9600bpsFM - + SUNSAT-3 - M6P - 44109 - Operational - Draft - 2019-08-07 + SO-41(SaudiSat-1a) + 26545 + 2000-057A + Not operational + SO-41 - Beacon - 437265000 + Main + 436775000 - FSK - 9600 bps + FSK + 9600 - LY0LS + SASAT1-11-12 - X-CubeSat (FR01) - 42707 - Decayed - Draft - 2019-08-07 + SO-42(SaudiSat-1b) + 26549 + 2000-057E + Not operational + SO-42 - Beacon - 437020000 - - GMSK - 9600 - + Main + 436075000 - AFSK1k2 - 1200 + FSK + 9600 - ON01FR + SASAT2-11-12 - RS-16 (Mozhayets-2) - 24744 + SO-43(Starshine) + 26929 Decayed - Draft - 2019-08-07 + SO-43 + 2020-05-24+02:00 - Beacon - 435510000 + Main + 145820000 - CW - 0 + FSK + 9600 - + STRSHN - STMSat-1 - 41476 - No operational - Draft - 2019-08-07 + SO-50(SaudiSat-1c) + 27607 + 2002-058C + Operational + SO-50 - Beacon - 437800000 - - SSTV - 0 - + Main + 0 - GMSK - 9600 bps + FM_tone670Hz - SamSat-218D - 41466 - No operational - Draft - 2019-08-07 + SO-67(SumbandilaSat) + 35870 + 2009-049F + Not operational - Beacon - 145870000 + Main + 435300000 - CW - 0 + FM_tone2336Hz - SAMSAT-218D + - NuSat-1 (LO-87) - 41557 + Socrat + 44405 Operational - LO-87 Draft 2019-08-07 - Beacon 1 - 145900000 - - SSB CW - 0 - - - - - Beacon 2 - 436445000 + Beacon + 436000000 - FSK - 19200 + mobitex + 4800 bps - - Repeater - - 436935000 - 436965000 - - - 145935000 - 145965000 - - Linear - - AAUSAT-5 - 40948 - Decayed - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 - Jens Frederick Dalsgaard OZ2JDN - 2014-02-01 - 2014-05-04 - jdn@es.aau.dk.nospam - - INIT - 2019-08-07 - - Mission description - http://www.space.aau.dk/aausat5/ - - + SOHLA-1(MAIDO-1) + 33496 + 2009-002E + Not operational - Beacon - 437425000 + Main + 437505000 - GMSK9k6 - 9600 bps + AFSK + 1200 - + + CW + + JL3YUS - HA-1 (Zhou Enlai Huai'An-1) - 43156 + SOMP + 39134 + 2013-015E Operational - INIT - 2019-08-07 - - CITATION NEEDED - https://xkcd.com/285/ - - - + + true + + 2020-05-24+02:00 - Beacon - 437350000 + Main + 437503000 - BPSK - 9600bps + AFSK + 1200 - BI4ST - - - Beacon - 437644000 - BPSK - 9600bps + CW - BI4ST + DP0TUD - - Repeater - - 145930000 - - - 436950000 - - FM - @@ -12392,495 +12790,461 @@ - Hoopoe (IL01) - 42718 - Decayed - Draft - 2019-08-07 - - - Beacon - 437740000 - - BPSK - 9600 bps - - ON01IL - - - - - IceCube - 42705 + SONATE + 44400 Unknown INIT 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=572 + SONATE has been coordinated by IARU + SONATE a été coordonné par l'IARU + + + project information + http://www8.informatik.uni-wuerzburg.de/en/wissenschaftforschung/sonate/ + + + - Beacon - + Telemetry 1 + 145840000 - - 0 + SSTV + - + - - - - i-INSPIRE II (AU03) - 42731 - Decayed - INIT - 2019-08-07 - - + Telemetry 2 + 437025000 - GMSK - 4800 bps - - ON03AU - - - - - InflateSail (GB06) - 42770 - Decayed - Draft - 2019-08-07 - - - Beacon - 436060000 + GFSK + 9600 Bps + - BPSK - 1200bps + GMSK + 9600 Bps - ON06GB + - D-Star ONE iSat - 43879 - Operational - Draft + SpaceCube (FR05) + 42717 + Decayed + INIT 2019-08-07 Beacon - 435700000 - - GMSK - 4800 - + 436880000 - GMSK4k8 - 9600 + 1200bps AFSK FM + 0 - DP2GOS + ON05FR - Repeater + FM voice repeater - 437325000 + 436880000 - 435525000 + 145860000 FM - Delphini-1 - 44030 - Operational - Draft - 2019-08-07 + SpinSat + 40314 + Not operational - Beacon - - - 1k2/4k8/9k6* GMSK - 0 - - - - - Beacon - 437500000 - - GMSK - 1200 Bps - - - GMSK - 4800 Bps - + Main + 437230000 - GMSK - 9600 Bps + GFSK + 9600 - - CXBN-2 - 42704 - Decayed + SpooQy-1 + 44332 + Operational Draft 2019-08-07 + + project information + https://sites.google.com/site/phylej/projects-1/spooqy-1 + + + + + IARU Coordination declined + + + + Beacon - 437525000 + 436200000 - FSK - 9600 bps + GMSK + 9600bps - CSUNSat1 - 42715 - Decayed - Draft - 2019-08-07 + SporeSat + 39681 + Unknown + 2020-05-24+02:00 - Beacon - 437400000 - - CW - 0 - + Main + 437100000 - GMSK - 9600 bps + AFSK + 1200 - CSUNSAT1 - Columbia (US04) - 42702 - No operational - Draft - 2019-08-07 + SPROUT + 39770 + 2014-029E + Operational + + true + + + 2014-05-24 + Tanegashima Space Center + + None + Verified + 2020-05-24+02:00 + + SPace Research On Unique Technology Web Page + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/ + There are 3 main missions in SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector + Trois missions sont allouées au satellite SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector + - Beacon - 437055000 + CW - FM Packet + 437525000 - GMSK - 9600 bps + AFSK + 1200 - KD8CJT + + GMSK + 9600 + + + CW + + JQ1ZJQ - - - - Challenger (US01) - 42721 - Decayed - Draft - 2019-08-07 - - Beacon - 437510000 + SSTV + 437600000 - GMSK - 9600 bps + SSTV - QBUS01 + + Digipeater + + 437600000 + + + 437600000 + + + + + Sprout telemetry format + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Formats%20of%20telemetry-e.html + + + Sprout team propose different types of Report + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Amateur%20satellite-e.html + + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Software-e.html + - Irazu - 43468 + SRMSAT + 37841 + 2011-058D Operational - Draft - 2019-08-07 - Beacon - 436500000 + Main + 437425000 - FSK - 9600bps + CW - TI0IRA + - IO-86 (LAPAN-A2 ORARI) - 40931 + STARS(KUKAI) + 33498 + 2009-002G Operational - IO-86 - INIT - 2019-08-07 - Beacon - 437325000 + Main + 437305000 - AFSK - 1200 Bps + FM + 1200 - YBSAT/YBOX-1 + + CW + + JR5YBN(mother + + + Main + 437275000 + + FM + 1200 + + + CW + + JR5YBO(daught - - Repeater - - 145825000 - - - 145825000 - - APRS - - - Repeater - - 145880000 - - - 435880000 - - FM - - CAS-3E (XW-2E) - 40909 + STARS-AO + 43679 Operational Draft 2019-08-07 + + Project information + https://stars-ao.info + + Beacon - 145910000 + 437350000 - CW - 0 + CW + - BJ1SF + JJ2YSY Beacon - 145890000 + 437400000 - GMSK - 9600 + CW + - BJ1SF + JJ2YSY + + + Beacon + 437200000 + + GMSK + + + JJ2YSY - - Repeater - - 435270000 - 435290000 - - - 145915000 - 145935000 - - - - CAS-4A (ZHUHAI-1 01) - 42761 - Operational + STARS-C (Daughter) + 41895 + Decayed Draft 2019-08-07 - Beacon 1 - 145855000 - - CW - 0 - + Beacon + 437245000 - GMSK - 4800bps + AFSK + 1200bps - BJ1SK - - - Beacon 2 - 145835000 CW 0 + JJ2YPM + + + Beacon + 437405000 - GMSK - 4800bps + AFSK + 1200bps - BJ1SK + JJ2YPM - - Repeater - - 435210000 - 435230000 - - - 145860000 - 145880000 - - SSB 20_kHz bandwidth inverted - - BY70-1 - 41909 + STARS-II (Mother) + 39579 Decayed - Draft - 2019-08-07 + 2020-05-24+02:00 - Beacon - 436200000 + Main + 437245000 - BPSK - 9600 bps + AFSK + 1200 - + + CW + + JR5YDX - - Repeater - - 145920000 - - - 436200000 - - - - - - - D-Star ONE Phoenix - 43188 - No operational - INIT - 2019-08-07 - - Beacon - 435525000 + Main + 437255000 - D-Star Telemetry - 0 + AFSK + 1200 - DP1GOS + + CW + + JR5YDY - DUTHSat (GR01) - 42724 - Decayed + STARS-Me (Mother) + 43640 + Not operational + + true + Draft - 2019-08-07 + 2020-05-24+02:00 + + Project information + http://stars.eng.shizuoka.ac.jp/english.html + + - Beacon - 436420000 + Mother - Beacon 1 + 437245000 - BPSK - 1200 bps + CW + - SZ2DUT + + AFSK + 1200 + + JJ2YPL - - - - ExAlta-1 (CA03) - 42734 - Decayed - Draft - 2019-08-07 - - Beacon - 436705000 + Mother - Beacon 2 + 437405000 - 4k8*/9k6/19k2 GMSK - 4800 + CW + - 4k8*/9k6/19k2 GMSK - 9600 + AFSK + 1200 + JJ2YPL + + + Daughter - Beacon 1 + 437255000 - 4k8*/9k6/19k2 GMSK - 19200 + CW + - ON03CA + + AFSK + 1200 + + JJ2YPL + + + Daughter - Beacon 2 + 437425000 + + CW + + + + AFSK + 1200 + + JJ2YPL - FMN-1 (FengMaNiu-1) - 43192 + STEP Cube Lab (STEP-1) + 43138 Operational - INIT + Draft 2019-08-07 - - CITATION NEEDED - https://xkcd.com/285/ - - - Beacon - 435350000 + 437485000 - BPSK - 9600bps + FSK + 9600 bps - BUAABJ - - - Repeater - - 145945000 - - - 435350000 - - FM - + + CW + 0 + + + - Galassia - 41170 - No operational - INIT - 2019-08-07 + STMSat-1 + 41476 + Not operational + Draft + 2020-05-24+02:00 Beacon - 145800000 + 437800000 + + SSTV + 0 + GMSK 9600 bps @@ -12890,651 +13254,815 @@ - GEARRSat-1 - 40456 - Unknown - INIT - 2019-08-07 + STRaND-1 + 39090 + 2013-009E + Operational + + true + + 2020-05-24+02:00 - Beacon - + Main + 437568000 - - 0 + GMSK + 9600 - - GOMX-3 - 40949 - Decayed - Draft - 2019-08-07 + StudSat + 36796 + 2010-035B + Not operational - Beacon - 437250000 + Main + 437861000 - GMSK - 19200 + FSK + 9600 - GMSK - 4800 + CW - CNUSail-1 - 43133 - Unknown + SUCHAI + 42788 + Not operational + + true + Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 437100000 + 437230000 - GMSK - 9600 bps + CW + - + + FSK2k4 + 2400 Bps + + SUCHAI - Aoba-VELOX-III - 41935 - Decayed - Draft - 2019-08-07 + Suomi 100 + 43804 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project + http://www.suomi100satelliitti.fi/eng + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=507 + Suomi 100 has been coordinated by IARU + Suomi 100 a été coordonné par l'IARU + - Beacon - 437375000 + Telemetry 1 + 437775000 - CW - 0 + + + + + + Telemetry 2 + 2410000000 - AFSK - 1200 bps + + - JG6YBW + + + + + + + + + + + + + - AO-92 (Fox-1D) - 43137 - Operational - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=456 - Andrew Glassbrenner KO4MA - 2015-04-01 - 2015-04-08 - ko4ma@amsat.org.nospam - - AO-92 + SurfSat + 43614 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 + + Project information + https://icubesat.files.wordpress.com/2015/06/icubesat-2015_org_b-3-5_surfsatweb_dove.pdf + + Beacon - 145880000 + 437275000 - DUV - 200 bps + FSK + 9600bps - - Repeater - - 435350000 - - - 145880000 - - FM - - - Repeater - - 1267350000 - - - 145880000 - - FM - - ANDE-2 (Castor) - 35694 - Decayed - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=144 - Iavan Galysh KD4HBO - 2009-01-03 - 2009-07-02 - Ivan.galysh@nrl.navy.mil.nospam - + SUSat (AU01) + 42730 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 145825000 + 436775000 - AFSK - 1200 bps + FSK + 9600bps - KD4HBO-1 + - Athenoxat-1 - 41168 + SwampSat II + 45115 Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=677 + Jay Garlitz AA4FL + 2019-06-26 + 2019-09-09 + jgarlitz@ufl.edu.nospam + + + Wallops Flight Facility, états unis + + Draft - 2019-08-07 + 2020-05-09 + + Large Square-Loop Antenna Deployment from CubeSats + http://digitalcommons.usu.edu/cgi/viewcontent.cgi?article=3510 + + Beacon - 437485000 + 145875000 - CW - 0 + GMSK + 9600 + + + + + Beacon + 436350000 + + GMSK + 9600 + + + + Beacon + 2432000000 - GMSK - 4800 bps + QPSK + 3 Mbps - ATX1 + + + + + + + + + + + + + - BEESAT-4 - 41619 - Operational - INIT - 2019-08-07 - - CITATION NEEDED - https://xkcd.com/285/ - - - + SwampSat + 39402 + Not operational - Beacon - 435950000 - - FM - 0 - + Main + 437385000 - GMSK - 4800 bps + FSK + 9600 - DP0BEH - - Digipeater - - 435950000 - - - 435950000 - - - - CAS-4B (ZHUHAI-1 02) - 42759 - Operational + Swayam COEP + 41607 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 145910000 + 437025000 CW 0 - GMSK - 4800 bps + BPSK + 1200 bps - BJ1SL + SWAYAM + + + + Swiatowid + 44426 + Operational + + true + + + 2019-04-17 + + + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=609 + coordinated by IARU + coordonné par l'IARU + + + project site + https://satrevolution.com/projects/swiatowid/ + + + + Beacon - 145890000 + 435500000 - FSK - 4800 + AFSK + 1200 - + - Repeater + APRS - 435270000 - 435290000 + 435500000 - 145915000 - 145935000 + 435500000 - SSB 20_kHz bandwidth inverted + + + + + + + + + + + + + - Astrocast-0.2 - 44083 + SwissCube-1 + 35932 + 2009-051B Operational - INIT - 2019-08-07 - - project information - https://www.astrocast.com/ - - + + true + + 2020-05-24+02:00 - Beacon - 437175000 + Main + 437505000 - FSK - 1200 bps + BFSK + 1200 - HB9GSF - - - Beacon - 2406000000 - FM - 0 + CW - + HB9EG1 - BIROS - 41604 - No operational - Draft - 2019-08-07 + TabletSat-Aurora + 40017 + 2014-033H + Not operational - Beacon - 437525000 + Main + 437050000 - GMSK - 4800 bps + 9600bps GMSK D-STAR - - RS-23 (Tatyana) - 28523 - No operational + Tancredo-1 (UbatubaSat) + 41391 + Decayed Draft 2019-08-07 Beacon - 435215000 + 437200000 - CW - 0 + AFSK + 1200 bps - - - - Beacon - 435315000 - CW - 0 + CW + - + PY0ETA - Sathyabamasat - 41600 - No operational - INIT - 2019-08-07 + Tanusha-SWSU-1 (RS-6S) + 42911 + Not operational + draft + 2020-05-24+02:00 Beacon - 145980000 + 437050000 - CW - 0 + AFSK + 1200 bps - BPSK CW - 2400 bps + Voice + - SNSAT + RS6S - STEP Cube Lab (STEP-1) - 43138 - Operational + Tanusha-SWSU-2 (RS-7S) + 42912 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 437485000 + 437050000 - FSK - 9600 bps + AFSK + 1200 bps - CW - 0 + Voice + - + RS7S - ITF-2 (TO-89) - 41932 - Decayed - TO-89 + Tanusha-SWSU-3 (RS-8S) + 43597 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 437525000 + 437050000 - FM CW + AFSK 1200 bps - CW - 0 + Voice + - JQ1ZTK + RS8S - - Juvenile-1F(Shaonian-Xing) - 43199 - Operational - INIT - 2019-08-07 + + Tanusha-SWSU-4 (RS-9S) + 43598 + Not operational + Draft + 2020-05-24+02:00 Beacon - 436370000 + 437050000 - BPSK - 9600 bps + AFSK + 1200 bps - MXSAT-1 + + Voice + + + RS9S - KAITUO-1B (CAS-3G DCBB) - 40912 + Taurus-1 (Jinniuzuo-1) + 44530 Operational + + 2013-09-12 + Taiyuan Satellite Launch Center, Chine + + Draft - 2019-08-07 + 2019-09-14 + + Digital FM to Codec 2 transpondeur + https://www.amsat.org/wordpress/wp-content/uploads/2019/03/N8HM_LilacSat_LO-90.pdf + + Beacon - 437950000 + 435840000 - GMSK - 9600 + + - BJ1SH + + + FM to Codec-2 + + 145820000 + + + 436760000 + + FM to Codec-2 + 67 + + + + + + + + + + + + + + + + + TBEx-a + 44356 + Unknown + + 2019-06-25 + + + + DRAFT + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 + has been coordinated by IARU + a été coordonné par l'IARU + + + project information + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + - Beacon - 145475000 + Telemetry 1 + 437535000 GMSK - 9600 + 9k6 - BJ1SH + + + + TBEx – Tandem Beacon Experiment + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + SATNOGS : Kaitai Struct for Telemetry + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + jwcutler@umich.edu + + - KALAMSAT-V2 - 43948 - Unknown - Draft - 2019-08-07 + TBEx-b + 44359 + To be launch + + 2019-06-25 + + + + DRAFT + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 + TBEx has been coordinated by IARU + TBEx a été coordonné par l'IARU + + + project information + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + - Beacon - 436500000 + Telemetry 1 + 437535000 - - 0 + GMSK + 9k6 - + + + + TBEx – Tandem Beacon Experiment + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + SATNOGS : Kaitai Struct for Telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/tbex.ksy + + + + + + jwcutler@umich.edu + + - KAUSAT-5 - 43135 - Unknown - INIT - 2019-08-07 + TechEdSat + 38854 + Decayed + 2020-05-24+02:00 - Beacon + Main 437465000 - FSK - 9600 Bps + FM + 1200 - - - - Beacon 2 - 2413000000 - MSK - 115200 + CW - + KJ6TVO - PicSat - 43132 - No operational - INIT - 2019-08-07 + TechEdSat-3 + 39415 + Not operational - Beacon - 435525000 + Main + 437465000 - BPSK - 1200 + AFSK + 9600 - BPSK - 9600 + CW - PICSAT - - Repeater - - 145910000 - - - 435525000 - - FM - - PACE - 40022 - No operational - Draft + TechEdSat-4 + 40455 + Unknown + INIT 2019-08-07 Beacon - 437485000 + - CW + 0 - - AFSK - 1200bps - - QBITO (ES01) - 42728 + TechEdSat-5 + 42066 Decayed INIT 2019-08-07 Beacon - 436810000 + - GFSK - 9600bps + + - KS-1Q - 41847 - No operational - Drfat - 2019-08-07 + TechnoSat + 42829 + Operational + + true + + draft + 2020-05-24+02:00 Beacon - 436500000 + 435950000 + + GMSK + 4800bps + - GMSK - 20000 bps + GMSK + 9600bps - + + CW + + + DP0TBA - KickSat-2 - 44046 + TeikyoSat-3 + 39576 Decayed - Draft - 2019-08-07 + 2020-05-24+02:00 - Beacon - 437505000 + Main + 437450000 - FSK - 1200bps + AFSK + 1200 - KD2BHC + + CW + + JQ1ZKM - OUFTI-1 - 41458 - No operational + Ten-Koh + 43677 + Operational + + true + Draft - 2019-08-07 + 2020-05-24+02:00 + + Project information + http://kit-okuyama-lab.com/en/ten-koh/ + + Beacon - 145980000 + 437390000 - FSK - 9600 bps + AFSK + 1200bps - CW - 0 + GMSK + 9600bps - OUFTI-1 + + CW + + + + WSJT + + + JG6YKY - - DSTAR - - 435045000 - - - 145950000 - - DSTAR - + + + amateur information + http://kit-okuyama-lab.com/en/ten-koh/for-amateur-radio-reception/ + + - LUME-1 - 43908 - No operational - Draft - 2019-08-07 + TetherSat + 0 + To be launch + Verified + 2020-05-24+02:00 - Beacon - 437060000 + Main + 437100000 - GMSK - 4800bps + GFSK + 9600 - @@ -13542,8 +14070,11 @@ Tianwang-1A (TW-1A SECM-1) 40928 Operational + + true + INIT - 2019-08-07 + 2020-05-24+02:00 Beacon @@ -13563,9 +14094,12 @@ Tianwang-1B (TW-1B NJUST-2) 40927 - No operational + Not operational + + true + Draft - 2019-08-07 + 2020-05-24+02:00 Beacon @@ -13586,8 +14120,11 @@ Tianwang-1C (TW-1C NJFA-1) 40926 Operational + + true + Draft - 2019-08-07 + 2020-05-24+02:00 Beacon @@ -13605,274 +14142,220 @@ - Swayam COEP - 41607 - No operational - Draft - 2019-08-07 - - - Beacon - 437025000 - - CW - 0 - - - BPSK - 1200 bps - - SWAYAM - - - - - STARS-C (Daughter) - 41895 - Decayed - Draft - 2019-08-07 + TigriSat + 40043 + 2014-033AK + Operational - Beacon - 437245000 - - AFSK - 1200bps - - - CW - 0 - - JJ2YPM - - - Beacon - 437405000 + Main + 436000000 - AFSK - 1200bps + FSK + 9600 - JJ2YPM + HNATIG - HAVELSAT (TR02) - 42701 - No operational + TIsat-1 + 36799 + 2010-035E + Not operational + Draft - 2019-08-07 + 2019-08-05 - Beacon - 436845000 - - GMSK - 9600 bps - - - - - Beacon - 436843500 + Main + 145980000 - CW - 0 + PSK - - - - - - Pratham - 41783 - No operational - Draft - 2019-08-07 - - - Beacon - 145980000 - AFSK - 1200bps + AFSK - CW - 0 + CW - PRATHAM + HB9DE - Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6) - 43158 - No operational - INIT - 2019-08-07 + TJ3Sat + 39385 + Not operational - Beacon - 436100000 - - GMSK - 9600 - - - - - T1 - - 436100000 - - - 436100000 - - 9k6 GMSK - - - T2 - - 2415000000 - - - 2415000000 - - 5Mbps OFDM - - - T3 - - 5667000000 - - - 5845000000 - - 5Mbps OFDM - + Main + 437320000 + + CW + + - RASAT - 37791 - No operational - INIT - 2019-08-07 + TO-31(TMSAT-1) + 25396 + 1998-043C + Not operational + TO-31 - Beacon - 437400000 + Main + 436925000 - FSK - 9600 bps + FSK + 9600 - RASAT0-11 -12 + TMSAT1-11-12 - RS-18 (Sputnik 41) - 25533 + Toki (BIRD-J) + 42820 Decayed Draft 2019-08-07 Beacon - 145812000 + 437372000 - CW - 0 + AFSK + 1200bps - + + GMSK + 9600bps + + + CW + + + JG6YJO - Xiaoxiang-1 (TY-1 Tianyi-1) - 41842 - Unknown - Drfaft - 2019-08-07 + Tomsk-TPU-120 (RS04S) + 42910 + Not operational + Draft + 2020-05-24+02:00 Beacon - 2401600000 + 145800000 - GMSK - 9600 bps + FSK + 9600bps - + + Voice + + + RS4S + + + + Trailblazer-1 + 39400 + Not operational + - Beacon - 437500000 + Main + 437425000 - GMSK - 9600 bps + FSK + 9600 - + + + + Triton-1 + 39427 + 2013-066M + Not operational + - Beacon - 437525000 + Main + 2408000000 - GMSK - 9600 bps + 1200bps RC-BPSK CW - + + CW + + TRIV0 TRIV1 - Xiaoxiang-2 (TY-2 Tianyi-2) - 43155 - Operational + TRSI-Sat + 44831 + Not operational + + true + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + Draft - 2019-08-07 + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=649 + + + - Beacon - 435350000 + Beacon (IARU) Deprecated + 437150000 - FSK - 9600 Bds + GMSK + 12500 - + + CW + 12500 + + + + + Beacon (IARU) Deprecated + 437075000 + + GMSK + 12500 + + + CW + 12500 + + - - T1 - - 435350000 - - - 435350000 - - 9k6 GMSK - - - T2 - - 2403000000 - - - 2403000000 - - 5Mbps OFDM - - - T3 - - 5653000000 - - - 5833000000 - - 5Mbps OFDM - + + + TRSI Sat telemetry information Center frequency: 437.075 MHz + http://www.kocyla.de/spaceblog/?page_id=292 + + + + + + radio@satrevolution.com + https://github.com/daniestevez/gr-satellites. + TSAT (TestSat-Lite) @@ -13893,1929 +14376,1853 @@ - UCLSat (GB03) - 42765 - No operational + TSUBAME + 40302 + 2014-070E + Not operational + + + Main + 437275000 + + AFSK + 1200 + + + CW + + JQ1ZHX + + + + + TugSat-1 (CanX-3B) + 39091 + 2013-009F + Not operational + + + Main + 2234400000 + + 32Kbps-256Kbps BPSK + + + + + + TuPOD + 41936 + Decayed Draft 2019-08-07 Beacon - 435975000 + 437425000 - GMSK - 9600bps + GMSK CW + 1200bps + + + CW + + + TUPOD + + + + + TURKSAT-3USAT + 39152 + 2013-018C + Not operational + + + Main + 437225000 + + CW - ON03GB - MicroMAS-1 - 40457 + TY-3 (Tianyi-3 Xiaoxiang-3) + 43664 Unknown - Draft + INIT 2019-08-07 Beacon - 468000000 + - OQPSK - 1.5Mbit/s + 9k6 GMSK/5Mbps OFDM + - NIUSAT - 42766 - Operational + TY-5 (Tianyi-5 Xiaoxiang-5) + 43553 + Unknown INIT 2019-08-07 Beacon - 436000000 + - FSK - 1200 bps + 9k6 GMSK/5Mbps OFDM + - NIUOBT + + + + + UAPSat-1 + 39571 + Not operational + - Beacon - 2240000000 + Main + 437385000 - - 0 + AFSK + 1200 - + OA0UAP-1 - nSight-1 (AZ02) - 42726 - Operational + UBAKUSAT + 43467 + Not operational + + true + Draft - 2019-08-07 - - DK3WN information - http://www.dk3wn.info/p/?page_id=29535 - - + 2020-05-24+02:00 Beacon - 435900000 + 437225000 - GMSK - 9600bps + CW + 0 - ON02AZ + YM1RAS Beacon - 2405000000 + 437325000 GMSK - 9600b ps + 9600bps - ON02AZ + YM1RAS + + Repeater + + 145935000 + 145960000 + + + 435200000 + 435250000 + + SSB linear + - PO-63 (PehuenSat) - 29712 - No operational - PO-63 + UbatubaSat (Tancredo-1) + 41931 + Not operational Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 145825000 + 437200000 - AFSK - 1200bps + AFSK + 1200 Bps - LU1YUC + + CW + 0 + + PY0ETA - SUSat (AU01) - 42730 - No operational + UCLSat (GB03) + 42765 + Not operational + + true + Draft - 2019-08-07 + 2020-05-24+02:00 Beacon - 436775000 + 435975000 - FSK + GMSK 9600bps - + ON03GB - SNUSAT-1b (KR03) - 42727 - Decayed + Uguisu (BIRD-JPN) + 44330 + Operational + + true + + + 2019-04-17 + + + Draft - 2019-08-07 + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=617 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + Beacon - 435950000 + 435375000 - BPSK - 1200bps + CW + - ON03KR - - - - - SNUSAT-1 (KR02) - 42733 - Decayed - Draft - 2019-08-07 - - - Beacon - 436090000 - BPSK - 1200bps + GMSK + 9600 - ON02KR + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + - PolyITAN-2-SAU (UA01) - 42732 - Decayed - Draft - 2019-08-07 + UiTMSat-1 + 43589 + 1998-067PD + Operational + + true + + + 2018-08-10 + ISS + + + Verified + 2020-05-24+02:00 + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=563 + + - Beacon - 436600000 + Main + 437375000 - BPSK - 9600bps + BPSK + 1200 - QBUA01 + + CW + + JG6YKN + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + - TechEdSat-4 - 40455 - Unknown - INIT - 2019-08-07 + UKube-1-FUNcube-2 + 40074 + 2014-037F + Operational + + true + + 2020-05-24+02:00 - Beacon - + Main + 145840000 - - 0 + BPSK + 1200 - + + CW + + UKUBE1 - - - - ZA-AeroSat(AZ01) - 42713 - No operational - INIT - 2019-08-07 - - Beacon - 437200000 + Main + 145915000 - GMSK - 9600bps + BPSK + 1200 - ON01AZ - UPSat (GR02) - 42716 - No operational - Draft - 2019-08-07 + UniBRITE (CanX-3A) + 39092 + 2013-009G + Not operational - Beacon - 435765000 + Main + 145890000 - GMSK - 9600 Bps + CW - - VELOX-2 - 41171 - No operational - INIT - 2019-08-07 + UNICubeSAT + 38084 + Not operational - Beacon - 145930000 - - BPSK CW - 1200bps - + Main + 437305000 - CW - 0 + FSK + 9600 - VELOX2 + - LituanicaSAT-2 (LT01) - 42768 - No operational - Draft - 2019-08-07 + UniSat-5 + 39421 + 2013-066F + Not operational - Beacon - 437265000 + Main + 437175000 - FSK - 9600bps + GMSK + 9600 - LY0LS - LO-90 (LilacSat-1 CN02) - 42725 + UniSat-6 + 40012 + 2014-033C Operational - LO-90 - Draft - 2019-08-07 + + true + + Verified + 2020-05-24+02:00 - Beacon - 436510000 + Main + 437425000 - BPSK - 9600bps + GMSK + 9600 - ON02CN + + CW + + II0US - - FM Transpondeur - - 145985000 - - - 436510000 - - FM - - NJUST-1 (CN03) - 42722 - Decayed - Draft - 2019-08-07 + UNITEC-1 + 36578 + 2010-020F + Deep Space + 2020-05-24+02:00 - Beacon - 436570000 + Main + 5840000000 - BPSK - 1200bps + AFSK + 1200 - BI4ST + + CW + + JQ1ZUN - PHOENIX (TW01) - 42706 - Decayed - Draft - 2019-08-07 + UNSA-SAT1 + 0 + To be launch + Verified + 2020-05-24+02:00 - Beacon - 436915000 + Main + 34000000 - GMSK - 9600bps + BPSK + 230000 - ON01TW - QBEE (SE01) - 42708 + UNSW-EC0 (AU02) + 42723 Decayed Draft 2019-08-07 Beacon - 435800000 + 436530000 - GFSK - 9600bps + 4800bps GMSK + 0 - ON01SE + ON02AU - - - - SGSat - 42703 - Unknown - Draft - 2019-08-07 - Beacon - 437450000 + 2400500000 - FSK - 9600bps + + 0 - SpaceCube (FR05) - 42717 + UO-9 (UoSAT-1) + 12888 Decayed - INIT - 2019-08-07 + + 1981-10-06 + Vandenberg + + UO-9 + 2020-05-24+02:00 - Beacon - 436880000 + Main + 2401000000 - 1200bps AFSK FM - 0 + CW - ON05FR + - - FM voice repeater - - 436880000 - - - 145860000 - - FM - - TuPOD - 41936 - Decayed - Draft - 2019-08-07 + UO-11(UoSAT-2) + 14781 + 1984-021B + Operational + UO-11 - Beacon - 437425000 - - GMSK CW - 1200bps - + Main + 2401500000 - CW - + PSK - TUPOD + UOSAT-2 - UNSW-EC0 (AU02) - 42723 - Decayed - Draft - 2019-08-07 + UO-14(UoSAT-3) + 20437 + 1990-005B + Not operational + UO-14 - Beacon - 436530000 - - 4800bps GMSK - 0 - - ON02AU - - - Beacon - 2400500000 + Main + 0 - - 0 + FM - MO-30 (UNAMSAT-B) - 24305 - No operational - MO-30 + UO-15 (UoSAT-4) + 20438 + Decayed + UO-15 Draft 2019-08-07 Beacon - 435138000 + 435120000 - BPSK - 1200bps + CW + 0 - LO-93 (DSLWP-A1) - 43471 - No operational - LO-93 - Draft - 2019-08-07 + UO-22(UoSAT-5) + 21575 + 1991-050B + Not operational + UO-22 - Beacon - 436425000 + Main + 435120000 - 500/250bps GMSK - 0 + FSK + 9600 - BJ1SM + UOSAT5-11-12 + + + + UO-36(UoSAT-12) + 25693 + 1999-021A + Not operational + UO-36 + - Beacon - 435425000 + Main + 437400000 - 500/250bps GMSK - 0 + FSK + 38400 - BJ1SM + UO121-11-12 + + + + UPSat (GR02) + 42716 + Not operational + + true + + Draft + 2020-05-24+02:00 + Beacon - 2222810000 + 435765000 - 500/250bps GMSK - 0 + GMSK + 9600 Bps - BJ1SM + - LO-94 (DSLWP-A2) - 43472 + URSA MAIOR (IT02) + 42776 Operational - LO-94 - INIT - 2019-08-07 + + true + + draft + 2020-05-24+02:00 Beacon - 436400000 - - 500/250bps GMSK - 0 - - BJ1SN - - - Beacon - 435400000 + 435950000 - 500/250bps GMSK - 0 + FSK + 9600 Bps - BJ1SN + URSAMR + + + + USS Langley + 40652 + Not operational + - Beacon - 2275220000 + Main + 437475000 - 500/250bps GMSK - 0 + AFSK + 1200 - BJ1SN - LilacSat-2 (CAS-3H) - 40908 - Operational - Draft - 2019-08-07 + UWE-1 + 28892 + 2005-043C + Not operational - Beacon - 437200000 + Main + 437505000 - 1k2/4k8*/9k6 AFSK/GFSK - 0 + AFSK + 1200 - BJ1SI + DP0UWE - - Repeater - - 144350000 - - - 437250000 - - - - - Repeater - - 144390000 - - - 144390000 - - - - MYSAT-1 - 44045 - Operational - Draft - 2019-08-07 + UWE-2 + 35934 + 2009-051D + Not operational - Beacon - 435775000 - - BPSK - 1200 - + Main + 437385000 - BPSK - 4800 + AFSK + 1200 - BPSK - 9600 + CW - A68MY + - NUDT-PhoneSat (CAS-3I) - 40900 - No operational - INIT - 2019-08-07 + UWE-3 + 39446 + 2013-066AG + Operational + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + project information page + http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-3/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=134 + + - Beacon - 437300000 + Main + 437385000 - GFSK - 96000 + FSK + 9600 - BJ1SJ + + CW + + DP0UWG + + + Amateur Radio – PEØSAT - information on telemetry data + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/uwe-3/ + + + + + + + http://www.dk3wn.info/files/uwe3_online.zip + - UBAKUSAT - 43467 - No operational - Draft - 2019-08-07 + UWE-4 + 43880 + 2018-111E + Operational + + true + + + 2018-12-27 + Vostochny + + + Verified + 2020-05-24+02:00 + + UWE-4 presentation + http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-4/news/ + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=627 + + - Beacon - 437225000 - - CW - 0 - - YM1RAS - - - Beacon - 437325000 + Telemetry + 437385000 - GMSK - 9600bps + FSK AX25 + 9600 bauds - YM1RAS + DP0UWH - Repeater + Digieater - 145935000 - 145960000 + 437385000 - 435200000 - 435250000 + 437385000 - SSB linear + + + + Telemetry XL file descriptor + http://www7.informatik.uni-wuerzburg.de/fileadmin/10030700/user_upload/forschung/Space_Exploration_Group/UWE4/UWE-4_Beacon.xlsx + + + + + + uwe4@informatik.uni-wuerzburg.de + http://www.dk3wn.info/files/uwe4.zip + - UbatubaSat (Tancredo-1) - 41931 - No operational - Draft + VDNH-80 + 44392 + Operational + draft 2019-08-07 Beacon - 437200000 - - AFSK - 1200 Bps - + 436500000 - CW - 0 + mobitex + 4800 bps - PY0ETA + - UO-15 (UoSAT-4) - 20438 - Decayed - UO-15 - Draft - 2019-08-07 + VELOX-2 + 41171 + Not operational + INIT + 2020-05-24+02:00 Beacon - 435120000 + 145930000 - CW - 0 + BPSK CW + 1200bps - - - - - - WASEDA-SAT3 - 41933 - No operational - Draft - 2019-08-07 - - - Beacon - 437290000 CW 0 - - FSK - 1200 Bps - - + VELOX2 - XW-2F (CAS-3F) - 40910 - Operational - INIT - 2019-08-07 + VELOX-I + 40057 + 2014-034E + Not operational - Beacon - 145975000 + Main + 145980000 - CW - 0 + FSK + 9600 - BJ1SG - - - Beacon - 145955000 - GMSK - 9600 bps + CW - BJ1SG + VELOXI - - Repeater - - 435330000 - 435350000 - - - 145980000 - 146000000 - - - - LINK (KR01) - 42714 - No operational - Draft - 2019-08-07 + VELOX-P2 + 39438 + 2013-066Y + Not operational - Beacon - 436030000 + Main + 145980000 - BPSK - 1200bps + BPSK + 1200 - D80LW - - - - - RANGE-A - 43772 - No operational - Draft - 2019-08-07 - - - Beacon - 437150000 - 0.1kbps-115.2kbps FSK/MSK/GFSK/GMSK - 0 + CW - - AO-24 (ARSENE) - 22654 - No operational - AO-24 - Draft - 2019-08-07 + Venta-1 + 42791 + 2017-036AC + Not operational + Verified + 2018-11-04 - Beacon - 2446540000 - - AFSK - 1200bps - - - - - Beacon - 145975000 + Main + 437325000 - AFSK - 1200bps + - - NuSat-2 - 41558 - Operational - INIT - 2019-08-07 + Vermont Lunar + 39407 + Decayed + 2020-05-24+02:00 - Beacon - 145900000 + Main + 437305000 - SSB CW - 0 + FSK + 9600 - + W1VTC2 - EntrySat - 44429 - Not Operational - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=334 - Nicolas Nolhier F5MDY - 2013-10-15 - 2015-01-08 - nolhier@laas.fr.nospam - - - 2019-07-03 - ISS - - - Verified - 2019-06-26 - - Mission description - https://www.csut.eu/en/project/entrysat/ - The objective of the mission, to study the atmospheric re-entry of debris, is well described, the scientific requirements and the system requirements are fully specified. However, given the short duration of analysis of atmospheric re-entry phenomena, this mission is ambitious and requires additional technical studies to show its full feasibility. -The mission analysis is to consolidate, when information about the orbit and the launcher will be well known. - - - - Mission description - https://websites.isae-supaero.fr/entrysat/ - - + VO-52(Hamsat) + 28650 + 2005-017B + Not operational - Telemetry 1 - 436950000 + Main + 145936000 + + SSBCarrier + + Indian + + + Main + 145860000 - BPSK - 9k6 + CW - ON02FR + Dutch - - - EntrySat reception - https://www.csut.eu/en/recevoir-entrysat/ - - - AMSAT-F : Kaitai file Description (*.ksy) - https://code.electrolab.fr/xtof/telemetrydescription/tree/master/EntrySat - - - SatNogGS: Kaitai file Description (*.ksy) - https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/entrysat.ksy - - - - - - - http://site.amsat-f.org/entrysat/ - - Taurus-1 (Jinniuzuo-1) - 44530 - Operational + VO-96 (ExseedSat-1) + 43758 + Not operational + + true + - 2013-09-12 - Taiyuan Satellite Launch Center, Chine + 2018-12-03 + Vandenberg Air Force Base, California - - Draft - 2019-09-14 + VUsat-OSCAR 96 (VO-96) + Verified + 2020-05-24+02:00 - Digital FM to Codec 2 transpondeur - https://www.amsat.org/wordpress/wp-content/uploads/2019/03/N8HM_LilacSat_LO-90.pdf - - + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=636 + ExseedSat 1 has been coordinated by IARU + ExseedSat 1 a été coordonné par l'IARU + - Beacon - 435840000 + TLM 1 + 145900000 - + - + - FM to Codec-2 + FM voice repeater and digipeater (APRS ) - 145820000 + 435340000 - 436760000 + 145900000 - FM to Codec-2 + FM 67 - + - - + + - Orbital Factory 2 (OF-2) - 0 - To Be Launch - - Wallops Flight Facility, états unis - - - Draft - 2019-10-27 + VZLUsat-1 (CZ02) + 42790 + Operational + + true + + INIT + 2020-05-24+02:00 - IARU information - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=685 - - + Pilsen Ground Station + https://www.pilsencube.zcu.cz/vzlusat1/ + + Beacon - 435040000 + 437240000 - GMSK - 9600 + MSK + 4800 bps - - - - Beacon - 2426000000 - QPSK - 3-5 Mbps + CW + 20 Wpm - + VZLUSAT1 - - + information for amateur radio comunitie + https://www.pilsencube.zcu.cz/vzlusat1/static_radio_amateur.html - - - - - - - SwampSat II - 0 - To Be Launch - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=677 - Jay Garlitz AA4FL - 2019-06-26 - 2019-09-09 - jgarlitz@ufl.edu.nospam - - - Wallops Flight Facility, états unis - - + Waseda-SAT2 + 36574 + Decayed + 2020-05-24+02:00 + + + Main + 437485000 + + FSK + 1200 + + + CW + + WASEDA + + + + + WASEDA-SAT3 + 41933 + Not operational Draft - 2019-10-27 - - Large Square-Loop Antenna Deployment from CubeSats - http://digitalcommons.usu.edu/cgi/viewcontent.cgi?article=3510 - - + 2020-05-24+02:00 Beacon - 145875000 + 437290000 - GMSK - 9600 + CW + 0 + + + FSK + 1200 Bps + + + + WE_WISH + 38856 + Decayed + Verified + 2020-05-24+02:00 + - Beacon - 436350000 + Main + 437505000 - GMSK - 9600 + CW - + + SSTV + + + AFSK + 2400 + + JQ1ZIJ + + + + WO-18(WEBERSAT) + 20441 + 1990-005F + Not operational + WO-18 + - Beacon - 2432000000 + Main + 0 - QPSK - 3 Mbps + PSK + 1200 - - - - - - - - - - - - - Argus-2 - 0 - To Be Launch - - Wallops Flight Facility, états unis - - - Draft - 2019-10-27 - - IARU information - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=682 - - + WO-39(JAWSAT) + 26061 + 2000-004A + Not operational + WO-39 - Beacon - 437290000 + Main + 0 - GMSK - 9600 + FSK + 9600 - - - - - - - - - - - - - RadSat-u - 0 - To Be Launch - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=551 - Larry Springer expérimental - 2017-03-08 - 2017-04-26 - Larry.springer@msu.edu.nospam - - - Wallops Flight Facility, états unis - - - Draft - 2019-10-27 - - RadSat-U publication - https://scholarworks.montana.edu/xmlui/handle/1/12916 - Les chercheurs de MSU travaillent depuis huit ans sur un système informatique tolérant aux rayonnements ionisants pour les applications spatiales. Afin de quantifier la quantité de rayonnement ressentie par l'ordinateur, l'équipe RadSat-U développe un capteur de rayonnement photo-voltaïque. RadSat-U, un satellite 3U conçu pour transporter l'ordinateur tolérant aux radiations dans l'espace, est la plate-forme de test idéale. L'expérience consiste en une cellule solaire entièrement intégrée et un circuit de conditionnement de signaux conçus pour s'adapter à RadSat-U. RadSat-U transportera ensuite à la fois l'ordinateur tolérant aux radiations et l'expérience sur les cellules solaires en orbite où l'environnement de rayonnement spatial testera les limites des deux systèmes. Un test à grande échelle élèvera cette nouvelle technologie au plus haut niveau de la NASA pour les technologies émergentes, ce qui lui permettra d'être utilisé dans de futures missions. - - - An FPGA-based Radiation Tolerant SmallSat Computer System - http://www.montana.edu/blameres/vitae/publications/d_conference_full/conf_full_033_fpga_based_smallsat_computer.pdf - - + Wren + 39435 + 2013-066V + Not operational - Beacon - 437425000 + Main + 437405000 - GMSK - 19200 + FSK + 1200 + + + CW - - - - - - - - - - - - - - ATL 1 (MO-106) - 44830 - Operational - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=640 - Levente Dudas HA7WEN - 2018-08-13 - 2018-11-19 - dudas@hvt.bme.hu.nospam - - - 2019-12-06 - Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand - - Magyar-OSCAR 106 (MO-106) - Verified - 2019-11-26 - - Project information - http://gnd.bme.hu - - - + Xatcobeo + 38082 + Decayed + 2020-05-24+02:00 - Beacon - 437175000 + Main + 437365000 - GMSK - 12500 + FFSKSSRC + 1200 - + W - TRSI-Sat - 0 - Launch - - 2019-12-06 - Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand - - INIT - 2019-11-26 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=649 - - - + X-CubeSat (FR01) + 42707 + Decayed + Draft + 2019-08-07 - Beacon (IARU) Deprecated - 437150000 + Beacon + 437020000 - GMSK - 12500 + GMSK + 9600 - CW - 12500 + AFSK1k2 + 1200 - + ON01FR + + + + Xiaoxiang-1 (TY-1 Tianyi-1) + 41842 + Unknown + Drfaft + 2019-08-07 + - Beacon (IARU) Deprecated - 437075000 + Beacon + 2401600000 - GMSK - 12500 + GMSK + 9600 bps + + + + Beacon + 437500000 - CW - 12500 + GMSK + 9600 bps - + + + + Beacon + 437525000 + + GMSK + 9600 bps + + - - - TRSI Sat telemetry information Center frequency: 437.075 MHz - http://www.kocyla.de/spaceblog/?page_id=292 - - - - - - radio@satrevolution.com - https://github.com/daniestevez/gr-satellites. - - SMOG-P (MO-105) - 44832 + Xiaoxiang-2 (TY-2 Tianyi-2) + 43155 Operational true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=641 - Levente Dudas HA7WEN - 2018-08-13 - 2018-11-19 - dudas@hvt.bme.hu.nospam - - 2019-12-06 - Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand - - Magyar-OSCAR 105 (MO-105) - Verified - 2019-11-26 - - Project information - http://gnd.bme.hu - - - + Draft + 2020-05-24+02:00 + + + Beacon + 435350000 + + FSK + 9600 Bds + + + + + T1 + + 435350000 + + + 435350000 + + 9k6 GMSK + + + T2 + + 2403000000 + + + 2403000000 + + 5Mbps OFDM + + + T3 + + 5653000000 + + + 5833000000 + + 5Mbps OFDM + + + + + Xiaoxiang-4 (TY-4 Tianyi-4) + 43669 + Operational + draft + 2019-08-07 Beacon - 437150000 + 435925000 GMSK - 12500 + 9600 - + + + T1 + + 435925000 + + + 435925000 + + 9k6 GMSK + + + T2 + + 2409000000 + + + 2409000000 + + 5Mbps OFDM + + + T3 + + 5659000000 + + + 5839000000 + + 5Mbps OFDM + - FossaSat-1 - 44829 - Launch - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=652 - Julian Ismael Fernandez Barcellona EA4HCD - 2018-10-29 - 2019-05-27 - julian.ismael.fernandez@gmail.com.nospam - - - 2019-12-06 - Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand - - INIT - 2019-11-26 - - The FossaSat-1 Pocketqube - https://fossa.systems/fossasat-1/ - - - + XO-53(SSETI) + 28894 + 2005-043E + Not operational + XO-53 - Beacon - 436700000 - - LORA - : Bandwidth 125 kHz , Spreading factor 11 , Coding rate 4/8 , Sync word 0x0F0F - + Main + 437250000 - RTTY - Frequency shift 182 Hz, Baudrate 45 baud , Encoding ITA2 (5-bit, aka “Baudot code”), Single stop bit, no parity + FSK + 9600 - + SSETI1 - - - To use and decode the FossaSat-1 Satellite, please consult our ground station database and instructional guides. - http://groundstationdatabase.com/index.php - - - - - - - - - FloripaSat-1 - 44885 + XW-2A (CAS 3) + 40903 + 2015-049E Operational - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 - Mauricio Sinigaglia PP5BMS - 2018-09-27 - 2018-10-23 - mauricio.sinigaglia@gmail.com.nospam - - 2019-12-20 - CZ-4B launch vehicle from Taiyuan Satellite Launch Center + 2015-09-19 + Taiyuan Satellite Launch Center - INIT - 2019-12-19 - - IARU Coordination - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 - - - + + Draft + 2015-11-02 - FloripaSat-1 web site - https://floripasat.ufsc.br/ - - + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréquences exploitées par la XW-2 constellation - VHF Beacon - 145900000 + CW Beacon + 145660000 - GFSK - 1200 + CW - + BJ1SB - UHF Beacon - 436100000 + Digital Telemetry + 145660000 - GFSK - 2400 + GMSK + 9600 - + + GMSK + 19200 + + BJ1SB - Repeater + Linear Transponder - 436100000 + 435030000 + 435050000 - 436100000 + 145665000 + 145685000 - GFSK -2400 + FM + yes - INFORMATION FOR COMMUNICATING WITH FLORIPASAT-1 - https://floripasat.ufsc.br/communication-info/ + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf - - - - - - https://github.com/floripasat/grs/releases - - - - OPS-Sat - 44878 - Operational - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=478 - Allesandro Donati DJ0MDO - 2015-07-15 - 2015-10-04 - alessandro.donati@esa.int.nospam - - - 2019-12-18 - Kourou, French Guiana - - Verified - 2019-12-23 - - Calling radio amateurs: help find OPS-SAT! - http://www.esa.int/Enabling_Support/Operations/Calling_radio_amateurs_help_find_OPS-SAT - - - - - OPS-SAT: your flying laboratory! - http://www.esa.int/Enabling_Support/Operations/OPS-SAT_your_flying_laboratory - - - - - - Beacon - 437200000 - - GMSK - 9600 - - - - - - OPS-SAT UHF Handbook - https://github.com/esa/gr-opssat/blob/master/docs/os-uhf-specs.pdf + + + + + + - OPS-SAT UHF beacon reception report - https://docs.google.com/forms/d/e/1FAIpQLSfkHF_wN2IxBb2WNYm6RuA_iT6qJH4Hz_pA9hCbcp0AcG5TbA/viewform + + - https://github.com/esa/gr-opssat + - Duchifat3 - 44854 - Operationnal - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=586 - Shamai Opfer 4Z1WS and David Greenberg 4X1DG - 2017-10-17 - 2017-11-22 - 4z1ws@amsat.org.nospam and david.greenberg@bezeqint.net.nospam - + XW-2B (CAS 3B) + 40911 + 2015-049N + Operational - 2019-12-11 - - + 2015-09-19 + Taiyuan Satellite Launch Center - INIT - 2019-12-19 + + verified + 2015-11-02 - - - - - + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation - Beacon - 436400000 + CW Beacon + 145725000 - PBSK - 9600 + CW - + BJ1SC + + + Digital Telemetry + 145705000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SC - U/V FM + Linear Transponder - 145970000 + 435090000 + 435110000 - 436400000 + 145815000 + 145795000 - - + FM + yes - - - - + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + - - - + - - + + - + - CAMSAT CAS-6 - 44880 - Operationnal - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=622 - Alan Kung BA1DU - 2018-05-18 - 2018-07-19 - alankung@vip.sina.com.nospam - + XW-2C (CAS 3C) + 40906 + 2015-049H + Operational - 2019-12-20 - CZ-4B launch vehicle from Taiyuan Satellite Launch - Center - + 2015-09-19 + Taiyuan Satellite Launch Center - INIT - 2019-12-19 + + Verified + 2015-11-02 - Information document - https://ukamsat.files.wordpress.com/2019/12/camsat-news-release-for-cas-6-satellie.pdf - - - + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation - CW Beacon - 145910000 + CW Beacon + 145790000 CW - - BJ1SO + BJ1SD - GMSK Beacon - 145890000 + Digital Telemetry + 145770000 GMSK - 4800 + 9600 - BJ1SO + + GMSK + 19200 + + BJ1SD - U/V Linear Transponder + Linear Transponder - 435282000 + 435150000 + 435170000 - 145945000 + 145795000 + 14581500 - - true + FM + yes - Digital telemetry format - - https://ukamsat.files.wordpress.com/2019/12/cas-6-satellites-digital-telemetry-description.pdf - + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf - CW telemetry format - - https://ukamsat.files.wordpress.com/2019/12/cas-6-cw-telemetry-encoding-format.pdf - + + + + + + - - + + - + - HuskySat-1 - 0 - To be Launched + XW-2D (CAS 3D) + 40907 + 2015-049J + Operational true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=604 - Jeffrey Chrisope KI7ORW - 2018-03-07 - 2018-04-09 - jeffchrisope@live.com.nospam - Wallops Flight Facility, états unis + 2015-09-19 + Taiyuan Satellite Launch Center + Draft - 2020-01-26 + 2020-05-24+02:00 - Project Information page - https://sites.google.com/uw.edu/huskysatellitelab/huskysat-1 + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation - Beacon - 435800000 + CW Beacon + 145855000 - BPSK - 1200 + CW - + BJ1SE - Beacon Experimental - 24049000000 + Digital Telemetry + 145835000 - - + GMSK + 9600 - + + GMSK + 19200 + + BJ1SE - U/V FM + Linear Transponder - 145910000 - 145940000 + 435210000 + 435230000 - 435810000 - 435840000 + 14586000 + 14588000 - - true + FM + yes - FoxTLM is used for this satellite - https://www.amsat.org/tlm/leaderboard.php?id=0 + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf - - - - - cubesat@uw.edu - https://www.g0kla.com/foxtelem/index.php - - - - PHOENIX - 0 - To be deployed - - true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 - QB50 and National Cheng Kung University - 2013-10-15 - 2015-04-06 - bx1ad@ctarl.org.tw.nospam - - Draft - 2020-01-14 - - Project page - http://phxcubesat.asu.edu/ - - - Frequency coordination note - - 437350000 is used instead of 436915000. This frequency is also used by Quarman satellite. THe satellite allow a ping command - + + + + + + + + + + + + + + + + + + XW-2F (CAS-3F) + 40910 + Operational + INIT + 2019-08-07 Beacon - 437350000 + 145975000 + + CW + 0 + + BJ1SG + + + Beacon + 145955000 GMSK - 9600 + 9600 bps - KIOO7Y - WJ2OXY + BJ1SG - Ping Mode + Repeater - 437350000 + 435330000 + 435350000 - 437350000 + 145980000 + 146000000 - + - - - Radioamateur page including beacon description - https://github.com/ASU-cubesat/phxsat-gsw-public - - - - - - - https://github.com/ASU-cubesat/phxsat-gsw-public - - AZTECHSAT-1 - 0 - To Be Launch + ZA-AeroSat(AZ01) + 42713 + Not operational true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=661 - Enrique Sanchez Lara XE1SLE - 2018-11-27 - 2019-05-19 - enrique.sanchez@upaep.mx.nospam - - Wallops Flight Facility, états unis - - - Draft - 2019-10-27 - - Project page - http://www.upaep.mx/aztechsat - - + INIT + 2020-05-24+02:00 Beacon - 437300000 - - GMSK - 9600 - + 437200000 - FSK - 9600 + GMSK + 9600bps - + ON01AZ - - - - - - - - - - - - - QUETZAL-1 - 0 + ZACube-1 + 39417 + 2013-066B Operational true - Coordinated - http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=653 - José Bagur TG8JAB - 2018-11-15 - 2019-07-23 - jabagur@uvg.edu.gt.nospam - International Space Station + 2013-11-21 + Orenburg, Russia - Draft - 2020-05-01 + Verified + 2020-05-24+02:00 - Project page - https://www.uvg.edu.gt/cubesat-en/ - + F'SATI Web Page + http://www.cput.ac.za/blogs/fsati/zacube-1/ + Project page + - Telemetry description and associated SW - https://github.com/danalvarez/gr-quetzal1 - This repository includes the UHF specifications for Quetzal-1, information on demodulating and decoding beacons from the satellite, as well as a graphical application to view beacon data. - + Twitter + https://www.twitter.com/fsatispace + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=204 + - Beacon - 437200000 + Main + 14099000 - GMSK - 4800 + GMSK + 9600 - + + AFSK + 1200 + + + CW + + 123456 + + Repeater + + 145860000 + + + 437245000 + + + - beacon description - https://github.com/danalvarez/gr-quetzal1/blob/master/docs/Beacon_Package_Data.xlsx + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf - - + QB50 upload interface + https://upload.qb50.eu/ - satelite@uvg.edu.gt - https://github.com/danalvarez/gr-quetzal1 + fsatispace@gmail.com + - DOSAAF-85 (RS-44) - 44909 - Operational - - false - + ZACube-2 + 43907 + 2013-066B + Unknown - 2019-12-26 - Plesetsk Cosmodrome + 2018-12-27 + Vostochny - Draft - 2020-05-01 + + Verified + 2018-12-27 - satellite information - https://r4uab.ru/2020/04/30/na-sputnike-dosaaf-85-rs-44-dlya-testirovaniya-byl-vklyuchen-radiolyubitelskij-retranslyator/ + Warning + + Hamradio paylaod not clear + Charge utile radioamateur pas clairement définie - The coordinated frequencies are beacon 14.099MHz, uplinks on 437.525 and 1260.25MHz and downlinks on 437.345 and 2405.00MHz + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=205 + IZACUBE 2 has been coordinated by IARU + IZACUBE 2 a été coordonné par l'IARU + + + Project Site + http://www.cput.ac.za/blogs/fsati/zacube-2/ + + - Beacon - 435605000 + Telemetry 1 + 14099000 - CW - RS44 + BPSK + 9600 - + - Transpondeur + repeater 1(TBC) - 145935000 - 145995000 + 437525000 - 435610000 - 435670000 + 437345000 - SSB/CW - yes + + + + repeater 2(TBC) + + 1260250000 + + + 2405000000 + + - - + + - - + + diff --git a/ModuleSatelliteDatabase/src/test/data/FileIn/testcommandeSave.txt b/ModuleSatelliteDatabase/src/test/data/FileIn/testcommandeSave.txt new file mode 100644 index 00000000..4a44991d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/FileIn/testcommandeSave.txt @@ -0,0 +1,147 @@ +RS-6 (Radio Sputnik 6);13002;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-7 (Radio Sputnik 7);13001;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-4 (Radio Sputnik 4);13000;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-5 (Radio Sputnik 5);12999;2;No operational;Not operational;Status change :No operationaltoNot operational; +Tanusha-SWSU-2 (RS-7S);42912;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-8 (Radio Sputnik 8);12998;2;No operational;Not operational;Status change :No operationaltoNot operational; +Tanusha-SWSU-1 (RS-6S);42911;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-3 (Radio Sputnik 3);12997;2;No operational;Not operational;Status change :No operationaltoNot operational; +Tomsk-TPU-120 (RS04S);42910;2;No operational;Not operational;Status change :No operationaltoNot operational; +EntrySat;44429;2;Not Operational;Not operational;Status change :Not OperationaltoNot operational; +STARS-Me (Mother);43640;2;No operational;Not operational;Status change :No operationaltoNot operational; +ChubuSat-3;41339;2;No operational;Not operational;Status change :No operationaltoNot operational; +RSP-00;43639;2;No operational;Not operational;Status change :No operationaltoNot operational; +ChubuSat-2;41338;2;No operational;Not operational;Status change :No operationaltoNot operational; +SurfSat;43614;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-47 (COSMOS-2499);39765;2;No operational;Not operational;Status change :No operationaltoNot operational; +Tanusha-SWSU-4 (RS-9S);43598;2;No operational;Not operational;Status change :No operationaltoNot operational; +Tanusha-SWSU-3 (RS-8S);43597;2;No operational;Not operational;Status change :No operationaltoNot operational; +TBEx-b;44359;2;To Be Launch;To be launch;Status change :To Be LaunchtoTo be launch; +TBEx-a;44356;2;;Unknown;Status change :toUnknown; +BIRD-G (Ghana GhanaSat-1);42821;2;No operational;Not operational;Status change :No operationaltoNot operational; +UO-9 (UoSAT-1);12888;2;decayed;Decayed;Status change :decayedtoDecayed; +D-SAT;42794;2;No operational;Not operational;Status change :No operationaltoNot operational; +skCUBE;42789;2;No operational;Not operational;Status change :No operationaltoNot operational; +SUCHAI;42788;2;No operational;Not operational;Status change :No operationaltoNot operational; +Pegasus (AT03);42784;2;No operational;Not operational;Status change :No operationaltoNot operational; +EnduroSat One;43551;2;No operational;Not operational;Status change :No operationaltoNot operational; +COMPASS-2/DragSail (DE04);42777;2;No operational;Not operational;Status change :No operationaltoNot operational; +LituanicaSAT-2 (LT01);42768;2;No operational;Not operational;Status change :No operationaltoNot operational; +UCLSat (GB03);42765;2;No operational;Not operational;Status change :No operationaltoNot operational; +Lambda-Sat;40458;2;No operational;Not operational;Status change :No operationaltoNot operational; +KickSat;39685;2;decayed;Decayed;Status change :decayedtoDecayed; +PhoneSat25;39684;2;decayed;Decayed;Status change :decayedtoDecayed; +PO-63 (PehuenSat);29712;2;No operational;Not operational;Status change :No operationaltoNot operational; +All-Star - THEIA;39683;2;unknown;Unknown;Status change :unknowntoUnknown; +SporeSat;39681;2;unknown;Unknown;Status change :unknowntoUnknown; +PO-63(PehuenSat);29709;2;null;Unknown;Set status to Unknown; +CO-56(CUTE17);28941;2;decayed;Decayed;Status change :decayedtoDecayed; +AO-54(SuitSat);28933;2;Not Operational;Not operational;Status change :Not OperationaltoNot operational; +SUSat (AU01);42730;2;No operational;Not operational;Status change :No operationaltoNot operational; +NanoSail-D2;37361;2;decayed;Decayed;Status change :decayedtoDecayed; +UPSat (GR02);42716;2;No operational;Not operational;Status change :No operationaltoNot operational; +LINK (KR01);42714;2;No operational;Not operational;Status change :No operationaltoNot operational; +UNITEC-1;36578;2;Deep space;Deep Space;Status change :Deep spacetoDeep Space; +MO-30 (UNAMSAT-B);24305;2;No operational;Not operational;Status change :No operationaltoNot operational; +ZA-AeroSat(AZ01);42713;2;No operational;Not operational;Status change :No operationaltoNot operational; +Negai;36575;2;decayed;Decayed;Status change :decayedtoDecayed; +Waseda-SAT2;36574;2;decayed;Decayed;Status change :decayedtoDecayed; +NO-62(FCAL);29667;2;decayed;Decayed;Status change :decayedtoDecayed; +VELOX-2;41171;2;No operational;Not operational;Status change :No operationaltoNot operational; +LO-93 (DSLWP-A1);43471;2;No operational;Not operational;Status change :No operationaltoNot operational; +Galassia;41170;2;No operational;Not operational;Status change :No operationaltoNot operational; +NO-61(ANDE);29664;2;decayed;Decayed;Status change :decayedtoDecayed; +Columbia (US04);42702;2;No operational;Not operational;Status change :No operationaltoNot operational; +HAVELSAT (TR02);42701;2;No operational;Not operational;Status change :No operationaltoNot operational; +NMARS;29662;2;decayed;Decayed;Status change :decayedtoDecayed; +WASEDA-SAT3;41933;2;No operational;Not operational;Status change :No operationaltoNot operational; +UBAKUSAT;43467;2;No operational;Not operational;Status change :No operationaltoNot operational; +NO-60(RAFT);29661;2;decayed;Decayed;Status change :decayedtoDecayed; +UbatubaSat (Tancredo-1);41931;2;No operational;Not operational;Status change :No operationaltoNot operational; +GeneSat-1;29655;2;decayed;Decayed;Status change :decayedtoDecayed; +WE_WISH;38856;2;decayed;Decayed;Status change :decayedtoDecayed; +F-1;38855;2;decayed;Decayed;Status change :decayedtoDecayed; +TechEdSat;38854;2;decayed;Decayed;Status change :decayedtoDecayed; +FITSAT-1;38853;2;decayed;Decayed;Status change :decayedtoDecayed; +MIR;16609;2;decayed;Decayed;Status change :decayedtoDecayed; +RAIKO;38852;2;Not amateur Satellite;Not amateur satellite;Status change :Not amateur SatellitetoNot amateur satellite; +Xatcobeo;38082;2;decayed;Decayed;Status change :decayedtoDecayed; +MaSat-1(MO-72);38081;2;decayed;Decayed;Status change :decayedtoDecayed; +RS-10 (COSMOS 1861);18129;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-39 (Chibis-M);38051;2;No operational;Not operational;Status change :No operationaltoNot operational; +STARS-II (Mother);39579;2;decayed;Decayed;Status change :decayedtoDecayed; +ARTSAT1-INVADER (CO-77);39577;2;decayed;Decayed;Status change :decayedtoDecayed; +TeikyoSat-3;39576;2;decayed;Decayed;Status change :decayedtoDecayed; +OPUSAT;39575;2;decayed;Decayed;Status change :decayedtoDecayed; +ITF-1;39573;2;decayed;Decayed;Status change :decayedtoDecayed; +ShindaiSat;39572;2;decayed;Decayed;Status change :decayedtoDecayed; +ArduSat-2;39570;2;decayed;Decayed;Status change :decayedtoDecayed; +LituanicaSAT-1 (LO-78);39569;2;decayed;Decayed;Status change :decayedtoDecayed; +LitSat-1;39568;2;decayed;Decayed;Status change :decayedtoDecayed; +ARTSAT2-DESPATCH (FO-81);40321;2;Deep space;Deep Space;Status change :Deep spacetoDeep Space; +SHIN'EN2 (FO-82);40320;2;Deep space;Deep Space;Status change :Deep spacetoDeep Space; +KS-1Q;41847;2;No operational;Not operational;Status change :No operationaltoNot operational; +AO-24 (ARSENE);22654;2;No operational;Not operational;Status change :No operationaltoNot operational; +ANDE-2(Pollux);35693;2;decayed;Decayed;Status change :decayedtoDecayed; +DRAGONSat(AggieSat-2);35690;2;decayed;Decayed;Status change :decayedtoDecayed; +CAMSAT CAS-6;44880;2;Operationnal;Operational;Status change :OperationnaltoOperational; +RS-40 (Yubileyny-2 MiR);38735;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-46 (COSMOS-2491);39497;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-14 (Informator-1);21087;2;No operational;Not operational;Status change :No operationaltoNot operational; +Duchifat3;44854;2;Operationnal;Operational;Status change :OperationnaltoOperational; +AO-4(Oscar-4);1902;2;decayed;Decayed;Status change :decayedtoDecayed; +Pratham;41783;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-2 (Radio Sputnik 2);11086;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-1 (Radio Sputnik 1);11085;2;No operational;Not operational;Status change :No operationaltoNot operational; +HO-59(HITSAT);29484;2;decayed;Decayed;Status change :decayedtoDecayed; +3CAT-2;41732;2;No operational;Not operational;Status change :No operationaltoNot operational; +LQSat;40958;2;No operational;Not operational;Status change :No operationaltoNot operational; +AO-2(Oscar-2);305;2;decayed;Decayed;Status change :decayedtoDecayed; +ArduSat-X;39414;2;decayed;Decayed;Status change :decayedtoDecayed; +PicoDragon;39413;2;decayed;Decayed;Status change :decayedtoDecayed; +ArduSat-1;39412;2;decayed;Decayed;Status change :decayedtoDecayed; +Vermont Lunar;39407;2;decayed;Decayed;Status change :decayedtoDecayed; +Tianwang-1B (TW-1B NJUST-2);40927;2;No operational;Not operational;Status change :No operationaltoNot operational; +CAPE-2 (LO-75);39382;2;decayed;Decayed;Status change :decayedtoDecayed; +PhoneSat24;39381;2;decayed;Decayed;Status change :decayedtoDecayed; +NUDT-PhoneSat (CAS-3I);40900;2;No operational;Not operational;Status change :No operationaltoNot operational; +SERPENS;40897;2;decayed;Decayed;Status change :decayedtoDecayed; +D-Star ONE Phoenix;43188;2;No operational;Not operational;Status change :No operationaltoNot operational; +AO-1(Oscar-1);214;2;decayed;Decayed;Status change :decayedtoDecayed; +RASAT;37791;2;No operational;Not operational;Status change :No operationaltoNot operational; +Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6);43158;2;No operational;Not operational;Status change :No operationaltoNot operational; +EDSN;-29;2;null;Unknown;Set status to Unknown; +Swayam COEP;41607;2;No operational;Not operational;Status change :No operationaltoNot operational; +LUME-1;43908;2;No operational;Not operational;Status change :No operationaltoNot operational; +ARISSat-1;37772;2;decayed;Decayed;Status change :decayedtoDecayed; +BIROS;41604;2;No operational;Not operational;Status change :No operationaltoNot operational; +Sathyabamasat;41600;2;No operational;Not operational;Status change :No operationaltoNot operational; +PicSat;43132;2;No operational;Not operational;Status change :No operationaltoNot operational; +INS-1C;43116;2;No operational;Not operational;Status change :No operationaltoNot operational; +RS-23 (Tatyana);28523;2;No operational;Not operational;Status change :No operationaltoNot operational; +PACE;40022;2;No operational;Not operational;Status change :No operationaltoNot operational; +ISX (CP-11);43856;2;No operational;Not operational;Status change :No operationaltoNot operational; +SaudiSat-4;40016;2;No operational;Not operational;Status change :No operationaltoNot operational; +CubeSail 1;43851;2;To be Launch;Unknown;Status change :To be LaunchtoUnknown; +SO-43(Starshine);26929;2;decayed;Decayed;Status change :decayedtoDecayed; +DeorbitSail;40719;2;No operational;Not operational;Status change :No operationaltoNot operational; +EagleSat-1;43018;2;No operational;Not operational;Status change :No operationaltoNot operational; +MakerSat-0;43016;2;No operational;Not operational;Status change :No operationaltoNot operational; +3CAT1 ;43781;2;No operational;Not operational;Status change :No operationaltoNot operational; +Nodes-2;41477;2;No operational;Not operational;Status change :No operationaltoNot operational; +STMSat-1;41476;2;No operational;Not operational;Status change :No operationaltoNot operational; +MINXSS 2;41474;2;decayed;Decayed;Status change :decayedtoDecayed; +RANGE-A;43772;2;No operational;Not operational;Status change :No operationaltoNot operational; +SamSat-218D;41466;2;No operational;Not operational;Status change :No operationaltoNot operational; +Knacksat;43761;2;Not Operational;Not operational;Status change :Not OperationaltoNot operational; +AO-13(Phase-3C);19216;2;decayed;Decayed;Status change :decayedtoDecayed; +OUFTI-1;41458;2;No operational;Not operational;Status change :No operationaltoNot operational; +FO-12 (JAS-1);16909;2;No operational;Not operational;Status change :No operationaltoNot operational; +ALEXANDER (PhoneSat2);39146;2;decayed;Decayed;Status change :decayedtoDecayed; +Dove-1 - 2;39144;2;decayed;Decayed;Status change :decayedtoDecayed; +BELL (PhoneSat1);39143;2;decayed;Decayed;Status change :decayedtoDecayed; +GRAHAM (PhoneSat1);39142;2;decayed;Decayed;Status change :decayedtoDecayed; +LightSail-A;40661;2;decayed;Decayed;Status change :decayedtoDecayed; +RadSat-u;45262;2;Not Operational;Not operational;Status change :Not OperationaltoNot operational; +NO-83 (BRICsat);40655;2;No operational;Not operational;Status change :No operationaltoNot operational; +Argus-2;0;2;To Be Launch;To be launch;Status change :To Be LaunchtoTo be launch; diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_1KUNS-PF.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_1KUNS-PF.xml new file mode 100644 index 00000000..3ed55733 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_1KUNS-PF.xml @@ -0,0 +1,46 @@ + + + + 1KUNS-PF + 43466 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=559 + 5Z4HL Heywood Ouma + 2017-06-03 + 2017-06-23 + houma@ieee.org.nospam + + Draft + 2019-08-07 + + Information page + https://1kuns-pf.ns0.it/ + + + + Beacon + 437300000 + + GMSK + 9600 + + + GMSK + 1200 + + + GMSK + 2400 + + + GMSK + 4800 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_3CAT-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_3CAT-2.xml new file mode 100644 index 00000000..f3c31b5a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_3CAT-2.xml @@ -0,0 +1,39 @@ + + + + 3CAT-2 + 41732 + Not operational + + true + coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=371 + Vicente J. Gomez Oviedo EA3GP + 2014-01-23 + 2014-06-09 + vjgomez@tsc.upc.edu.nospam + + Draft + 2020-05-24+02:00 + + + Beacon + 24010000000 + + BPSK + 1000000 + + + + + Beacon + 145970000 + + BPSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_3CAT1 .xml b/ModuleSatelliteDatabase/src/test/data/in/AL_3CAT1 .xml new file mode 100644 index 00000000..440a608d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_3CAT1 .xml @@ -0,0 +1,47 @@ + + + + 3CAT1 + 43781 + Not operational + + India + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=370 + 3CAT1 Hello World has been coordinated by IARU + 3CAT1 Hello World a été coordonné par l'IARU + + + + Telemetry 1 + 437250000 + + FSK + 9k6 + + + CW + + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_4M-LXS.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_4M-LXS.xml new file mode 100644 index 00000000..7f356f41 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_4M-LXS.xml @@ -0,0 +1,19 @@ + + + + 4M-LXS + 0 + To be launch + 2020-05-24+02:00 + + + Main + 145980000 + + WSJT-JT65B + + LX0OHB + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-4.xml new file mode 100644 index 00000000..d5ee351d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-4.xml @@ -0,0 +1,47 @@ + + + + AAUSAT-4 + 41460 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 + Jens Frederick Dalsgaard OZ2JDN + 2014-01-24 + 2014-07-14 + jdn@es.aau.dk.nospam + + VERIFIED + 2019-08-07 + + Mission description + http://www.space.aau.dk/aausat4/ + + + + + Beacon + 437425000 + + GFSK + 2400 + + + GFSK + 9600 + + + GFSK + 19200 + + + CW + + + OZ4CUB + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-5.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-5.xml new file mode 100644 index 00000000..18708c56 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-5.xml @@ -0,0 +1,35 @@ + + + + AAUSAT-5 + 40948 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=375 + Jens Frederick Dalsgaard OZ2JDN + 2014-02-01 + 2014-05-04 + jdn@es.aau.dk.nospam + + INIT + 2019-08-07 + + Mission description + http://www.space.aau.dk/aausat5/ + + + + + Beacon + 437425000 + + GMSK9k6 + 9600 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-II.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-II.xml new file mode 100644 index 00000000..6f8ca98f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT-II.xml @@ -0,0 +1,33 @@ + + + + AAUSAT-II + 32788 + 2008-021F + Operational + + true + + 2020-05-24+02:00 + + + Main + 437432000 + + FFSK/MSK + 1200 + + + + + Main + 437432000 + + FSK + 9600 + + OZ2CUB + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT.xml new file mode 100644 index 00000000..9c7e6602 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSAT.xml @@ -0,0 +1,20 @@ + + + + AAUSAT + 27846 + 2003-031G + Not operational + + + Main + 437450000 + + GMSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSat3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSat3.xml new file mode 100644 index 00000000..456de6bd --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AAUSat3.xml @@ -0,0 +1,23 @@ + + + + AAUSat3 + 39087 + 2013-009B + Not operational + + + Main + 437425000 + + FSK + 400 + + + CW + + OZ3CUB + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ACRUX-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ACRUX-1.xml new file mode 100644 index 00000000..2382a927 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ACRUX-1.xml @@ -0,0 +1,51 @@ + + + + ACRUX-1 + 44369 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=644 + Gabriel Abrahams VK3EXO + 2018-09-15 + 2018-11-13 + abrahams.gabi@gmail.com.nospam + + + 2019-06-29 + + + draft + 2019-08-07 + + ACRUX-1 + https://melbournespace.com.au/projects/ + + + + + Beacon + 437200000 + + GMSK + 9600bps + + CQCQCQ + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AESP14.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AESP14.xml new file mode 100644 index 00000000..1e3901d0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AESP14.xml @@ -0,0 +1,18 @@ + + + + AESP14 + 40389 + Not operational + + + Main + 437600000 + + GFSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AIST-1 (RS-41).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AIST-1 (RS-41).xml new file mode 100644 index 00000000..0c7c3ac6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AIST-1 (RS-41).xml @@ -0,0 +1,18 @@ + + + + AIST-1 (RS-41) + 39492 + 2013-078C + Not operational + + + Main + 435265000 + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AIST-2 (RS-43).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AIST-2 (RS-43).xml new file mode 100644 index 00000000..f56d427b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AIST-2 (RS-43).xml @@ -0,0 +1,18 @@ + + + + AIST-2 (RS-43) + 39133 + 2013-015D + Not operational + + + Main + 435265000 + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AISTECHSAT-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AISTECHSAT-2.xml new file mode 100644 index 00000000..451e3d72 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AISTECHSAT-2.xml @@ -0,0 +1,25 @@ + + + + AISTECHSAT-2 + 43768 + Operational + Draft + 2019-08-07 + + + Beacon + 436730000 + + GMSK + 4800 + + + GMSK + 49600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AISTECHSAT-3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AISTECHSAT-3.xml new file mode 100644 index 00000000..5b3a0a6b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AISTECHSAT-3.xml @@ -0,0 +1,25 @@ + + + + AISTECHSAT-3 + 44103 + Operational + Draft + 2019-08-07 + + + Beacon + 436730000 + + GFSK + 9600 + + + GFSK + 4800 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AISat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AISat.xml new file mode 100644 index 00000000..8c67e96b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AISat.xml @@ -0,0 +1,19 @@ + + + + AISat + 40054 + 2014-034B + Not operational + + + Main + 437511000 + + CW + + DP0AIS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ALEXANDER (PhoneSat2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ALEXANDER (PhoneSat2).xml new file mode 100644 index 00000000..bf527018 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ALEXANDER (PhoneSat2).xml @@ -0,0 +1,20 @@ + + + + ALEXANDER (PhoneSat2) + 39146 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ALMASat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ALMASat-1.xml new file mode 100644 index 00000000..0ead8c12 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ALMASat-1.xml @@ -0,0 +1,20 @@ + + + + ALMASat-1 + 38078 + 2012-006B + Not operational + + + Main + 437465000 + + FSK + 1200 + + ALMASAT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ALSat-1N.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ALSat-1N.xml new file mode 100644 index 00000000..4fa7a8e6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ALSat-1N.xml @@ -0,0 +1,30 @@ + + + + ALSat-1N + 41789 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=485 + Djamel Eddine Baba Hamed 7X4TS + 2015-11-06 + 2016-01-11 + debabahamed@cds.asal.dz.nospam + + Draft + 2019-08-07 + + + Beacon + 437650000 + + FSK9k6 + 9600 bps + + AL1N + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AMSAT-India APRS .xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AMSAT-India APRS .xml new file mode 100644 index 00000000..e11c323a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AMSAT-India APRS .xml @@ -0,0 +1,52 @@ + + + + AMSAT-India APRS + 44104 + Operational + + 2019-03-04 + Satish Dhawan Space Centre (SDSC) SHAR, Sriharikota + + + Verified + 2020-05-24+02:00 + + Project description + http://amsatindia.org/ + This experimental radio payload on the fourth stage platform is an Automatic Packet Reporting System (APRS) – also called a digipeater. + + Charge utile radioamateur fixée sur le quatriéme étage de la fusée PSLV. La charge utile est un digipeater + + + IARU Coordination + + Payload have not been coordinated - APRS default frequency + La fréquence utilisée par la charge utile n'a pas été coordonnée - Utilisation de la fréquence APRS par défaut + + + + APRS + + 1458250000 + + + 1458250000 + + AFSK 1200 + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ANDE-2 (Castor).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ANDE-2 (Castor).xml new file mode 100644 index 00000000..bdec15f2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ANDE-2 (Castor).xml @@ -0,0 +1,30 @@ + + + + ANDE-2 (Castor) + 35694 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=144 + Iavan Galysh KD4HBO + 2009-01-03 + 2009-07-02 + Ivan.galysh@nrl.navy.mil.nospam + + Draft + 2019-08-07 + + + Beacon + 145825000 + + AFSK + 1200 bps + + KD4HBO-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ANDE-2(Pollux).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ANDE-2(Pollux).xml new file mode 100644 index 00000000..a0f4ba5d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ANDE-2(Pollux).xml @@ -0,0 +1,29 @@ + + + + ANDE-2(Pollux) + 35693 + Decayed + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + POLLUX-1 + + + Main + 145825000 + + AFSK + 1200 + + KD4HBO-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ANTELSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ANTELSat.xml new file mode 100644 index 00000000..e57d6a05 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ANTELSat.xml @@ -0,0 +1,23 @@ + + + + ANTELSat + 40034 + 2014-033AA + Not operational + + + Main + 437280000 + + AFSK GFSK/MSK + 1200 + + + CW + + CX1SAT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ANUSAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ANUSAT.xml new file mode 100644 index 00000000..60f63808 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ANUSAT.xml @@ -0,0 +1,21 @@ + + + + ANUSAT + 34808 + Decayed + Draft + 2019-08-07 + + + Beacon + 137400000 + + AFSK + 1200 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-1(Oscar-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-1(Oscar-1).xml new file mode 100644 index 00000000..316250ee --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-1(Oscar-1).xml @@ -0,0 +1,21 @@ + + + + AO-1(Oscar-1) + 214 + Decayed + AO-1 + Verified + 2020-05-24+02:00 + + + Main + 144983000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-10(Phase-3B).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-10(Phase-3B).xml new file mode 100644 index 00000000..e3dbb352 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-10(Phase-3B).xml @@ -0,0 +1,20 @@ + + + + AO-10(Phase-3B) + 14129 + 1983-058B + Not operational + AO-10 + + + Main + 145810000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-13(Phase-3C).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-13(Phase-3C).xml new file mode 100644 index 00000000..036b88f1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-13(Phase-3C).xml @@ -0,0 +1,20 @@ + + + + AO-13(Phase-3C) + 19216 + Decayed + AO-13 + 2020-05-24+02:00 + + + Main + 145812000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-16(PACSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-16(PACSAT).xml new file mode 100644 index 00000000..626412de --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-16(PACSAT).xml @@ -0,0 +1,20 @@ + + + + AO-16(PACSAT) + 20439 + 1990-005D + Not operational + AO-16 + + + Main + 2401143000 + + PSK + + PACSAT-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-2(Oscar-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-2(Oscar-2).xml new file mode 100644 index 00000000..7c88f27c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-2(Oscar-2).xml @@ -0,0 +1,21 @@ + + + + AO-2(Oscar-2) + 305 + Decayed + AO-2 + Verified + 2020-05-24+02:00 + + + Main + 144983000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-24 (ARSENE).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-24 (ARSENE).xml new file mode 100644 index 00000000..74217edb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-24 (ARSENE).xml @@ -0,0 +1,31 @@ + + + + AO-24 (ARSENE) + 22654 + Not operational + AO-24 + Draft + 2020-05-24+02:00 + + + Beacon + 2446540000 + + AFSK + 1200bps + + + + + Beacon + 145975000 + + AFSK + 1200bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-27(EYESAT-A).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-27(EYESAT-A).xml new file mode 100644 index 00000000..7391afde --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-27(EYESAT-A).xml @@ -0,0 +1,21 @@ + + + + AO-27(EYESAT-A) + 22825 + 1993-061C + Not operational + AO-27 + + + Main + 436795000 + + AFSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-3(Oscar-3).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-3(Oscar-3).xml new file mode 100644 index 00000000..be0d7025 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-3(Oscar-3).xml @@ -0,0 +1,27 @@ + + + + AO-3(Oscar-3) + 1293 + 1965-016F + Not operational + AO-3 + Verified + 2018-11-28 + + + Main + + 145975000 + 146025000 + + + 144325000 + 144375000 + + SSB/CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-37(ASUSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-37(ASUSAT).xml new file mode 100644 index 00000000..f43f8b66 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-37(ASUSAT).xml @@ -0,0 +1,21 @@ + + + + AO-37(ASUSAT) + 26065 + 2000-004E + Not operational + AO-37 + + + Main + 0 + + FSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-4(Oscar-4).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-4(Oscar-4).xml new file mode 100644 index 00000000..730c05ed --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-4(Oscar-4).xml @@ -0,0 +1,26 @@ + + + + AO-4(Oscar-4) + 1902 + Decayed + AO-4 + Verified + 2020-05-24+02:00 + + + Main + + 432145000 + 432155000 + + + 144300000 + 144310000 + + SSB/CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-40(Phase-3D).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-40(Phase-3D).xml new file mode 100644 index 00000000..f37a7fcf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-40(Phase-3D).xml @@ -0,0 +1,21 @@ + + + + AO-40(Phase-3D) + 26609 + 2000-072B + Not operational + AO-40 + + + Main + 2401323000 + + PSK + 400 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-49(Rubin-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-49(Rubin-2).xml new file mode 100644 index 00000000..f8940063 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-49(Rubin-2).xml @@ -0,0 +1,20 @@ + + + + AO-49(Rubin-2) + 27605 + 2002-058A + Not operational + AO-49 + + + Main + 145825000 + + U/1200D/9600 + + MSK + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-5(Oscar-5).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-5(Oscar-5).xml new file mode 100644 index 00000000..931af42e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-5(Oscar-5).xml @@ -0,0 +1,30 @@ + + + + AO-5(Oscar-5) + 4321 + 1970-008B + Not operational + AO-5 + Verified + 2018-11-28 + + + TLM1 + 144050000 + + CW + + + + + TLM2 + 29450000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-51(Echo).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-51(Echo).xml new file mode 100644 index 00000000..cab3e46c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-51(Echo).xml @@ -0,0 +1,38 @@ + + + + AO-51(Echo) + 28375 + 2004-025K + Not operational + AO-51 + + + Main + 435150000 + + FM_tone670Hz + + + + + Main + 435150000 + + FSK + + 9600 + PECHO-11-12 + + + Main + 435150000 + + FSK + + 9600 + PACB-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-54(SuitSat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-54(SuitSat).xml new file mode 100644 index 00000000..ead196b4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-54(SuitSat).xml @@ -0,0 +1,21 @@ + + + + AO-54(SuitSat) + 28933 + Not operational + AO-54 + Draft + 2020-05-24+02:00 + + + Main + 0 + + FM + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-6(Phase-2A).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-6(Phase-2A).xml new file mode 100644 index 00000000..31327f50 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-6(Phase-2A).xml @@ -0,0 +1,20 @@ + + + + AO-6(Phase-2A) + 6236 + 1972-082B + Not operational + AO-6 + + + Main + 0 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-7(Phase-2B).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-7(Phase-2B).xml new file mode 100644 index 00000000..cebd0b7b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-7(Phase-2B).xml @@ -0,0 +1,40 @@ + + + + AO-7(Phase-2B) + 7530 + 1974-089B + Operational + + 1974-11-15 + Vandenberg + + AO-7 + + + Mode V/A (A) TLM Beacon + 29502000 + + CW + + + + + Mode U/V (B) TLM Beacon + 1459775000 + + CW + + + + + Mode U TLM Beacon + 435100000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-71(AubieSat-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-71(AubieSat-1).xml new file mode 100644 index 00000000..d30b7105 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-71(AubieSat-1).xml @@ -0,0 +1,23 @@ + + + + AO-71(AubieSat-1) + 37854 + 2011-061E + Not operational + + + Main + 437473000 + + AFSK + 1200 + + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-8(Phase-2D).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-8(Phase-2D).xml new file mode 100644 index 00000000..176c95cb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-8(Phase-2D).xml @@ -0,0 +1,28 @@ + + + + AO-8(Phase-2D) + 10703 + 1978-026B + Not operational + AO-8 + + + Main + 29402000 + + CW + + + + + Main + 435095000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-85 (Fox-1A).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-85 (Fox-1A).xml new file mode 100644 index 00000000..727348ed --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-85 (Fox-1A).xml @@ -0,0 +1,22 @@ + + + + AO-85 (Fox-1A) + 40967 + 2015-058D + Not operational + + true + + 2020-05-24+02:00 + + + Main + 145980000 + + FM CTCSS 670Hz + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-92 (Fox-1D).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-92 (Fox-1D).xml new file mode 100644 index 00000000..548110c3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-92 (Fox-1D).xml @@ -0,0 +1,51 @@ + + + + AO-92 (Fox-1D) + 43137 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=456 + Andrew Glassbrenner KO4MA + 2015-04-01 + 2015-04-08 + ko4ma@amsat.org.nospam + + AO-92 + Draft + 2019-08-07 + + + Beacon + 145880000 + + DUV + 200 bps + + + + + Repeater + + 435350000 + + + 145880000 + + FM + + + Repeater + + 1267350000 + + + 145880000 + + FM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AO-95 (Fox-1Cliff).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-95 (Fox-1Cliff).xml new file mode 100644 index 00000000..d4816860 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AO-95 (Fox-1Cliff).xml @@ -0,0 +1,76 @@ + + + + AO-95 (Fox-1Cliff) + 43770 + 2018-099N + Operational + + true + + + 2018-12-03 + Vandenberg Air Force Base, California + + AMSAT-OSCAR 95 (AO-95) + Verified + 2020-05-24+02:00 + + project + https://www.amsat.org/fox-1cliff-ready-for-launch/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=455 + Fox-1Cliff has been coordinated by IARU + Fox-1Cliff a été coordonné par l'IARU + + + + Telemetry 1 + 145920000 + + FSK + + + + + + FM voice repeater mode 1 + + 435300000 + + + 145920000 + + FM + 67 + + + FM voice repeater Mode 2 + + 1267300000 + + + 145920000 + + FM + 67 + + + + + Telemesure software : FOXTelem + https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ + + + + + + + https://www.amsat.org/foxtelem-software-for-windows-mac-linux/ + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ARC-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ARC-1.xml new file mode 100644 index 00000000..dfde8aac --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ARC-1.xml @@ -0,0 +1,18 @@ + + + + ARC-1 + 40969 + 2015-058F + Not operational + + + Main + 437565000 + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ARISSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ARISSat-1.xml new file mode 100644 index 00000000..2ae42b9a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ARISSat-1.xml @@ -0,0 +1,50 @@ + + + + ARISSat-1 + 37772 + Decayed + 2020-05-24+02:00 + + + Main + 145919000 + + 39FMlinear/inverti + + ng + + + Main + 145950000 + + FMVOICE/SSTV/Tel + + emetry + + + Main + 145919000 + + BPSK + 1000 + + + CW + + RS01S + + + Main + 145939000 + + BPSK + 400 + + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ARTSAT1-INVADER (CO-77).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ARTSAT1-INVADER (CO-77).xml new file mode 100644 index 00000000..0c57e789 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ARTSAT1-INVADER (CO-77).xml @@ -0,0 +1,22 @@ + + + + ARTSAT1-INVADER (CO-77) + 39577 + Decayed + 2020-05-24+02:00 + + + Main + 437325000 + + 1k2AFSK DigiTalker CW + + + CW + + JQ1ZKK + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ARTSAT2-DESPATCH (FO-81).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ARTSAT2-DESPATCH (FO-81).xml new file mode 100644 index 00000000..fe6c75c1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ARTSAT2-DESPATCH (FO-81).xml @@ -0,0 +1,19 @@ + + + + ARTSAT2-DESPATCH (FO-81) + 40321 + Deep Space + 2020-05-24+02:00 + + + Main + 437325000 + + CW + + JQ1ZNN + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ATL 1 (MO-106).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ATL 1 (MO-106).xml new file mode 100644 index 00000000..7182c980 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ATL 1 (MO-106).xml @@ -0,0 +1,41 @@ + + + + ATL 1 (MO-106) + 44830 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=640 + Levente Dudas HA7WEN + 2018-08-13 + 2018-11-19 + dudas@hvt.bme.hu.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + Magyar-OSCAR 106 (MO-106) + Verified + 2019-11-26 + + Project information + http://gnd.bme.hu + + + + + + Beacon + 437175000 + + GMSK + 12500 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AZTECHSAT-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AZTECHSAT-1.xml new file mode 100644 index 00000000..8e5d9654 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AZTECHSAT-1.xml @@ -0,0 +1,55 @@ + + + + AZTECHSAT-1 + 45261 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=661 + Enrique Sanchez Lara XE1SLE + 2018-11-27 + 2019-05-19 + enrique.sanchez@upaep.mx.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2019-10-27 + + Project page + http://www.upaep.mx/aztechsat + + + + + Beacon + 437300000 + + GMSK + 9600 + + + FSK + 9600 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Aalto-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Aalto-1.xml new file mode 100644 index 00000000..30909e8f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Aalto-1.xml @@ -0,0 +1,44 @@ + + + + Aalto-1 + 42775 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=292 + Timo Nikkanen OH2EGZ + 2013-03-15 + 2015-06-03 + timo.nikkanen@gmail.com.nospam + + INIT + 2019-08-07 + + Mission description + https://wiki.aalto.fi/display/SuomiSAT + + + + PDF file + https://docs.google.com/file/d/0B9SJ8FHoqwj-eVR2SzhrWFFTZTA/edit + + + + + Beacon + 437220000 + + FSK CW + 9600bps + + + CW + + + OH2A1S + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Aalto-2 (FI01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Aalto-2 (FI01).xml new file mode 100644 index 00000000..e76130bb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Aalto-2 (FI01).xml @@ -0,0 +1,30 @@ + + + + Aalto-2 (FI01) + 42729 + Decayed + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=362 + Timo Nikkanen OH2EGZ + 2013-11-13 + 2015-06-18 + timo.nikkanen@gmail.com.nospam + + INIT + 2019-08-07 + + + Beacon + 437.335 + + GFSK + 9600 bps + + AALTO2 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Aeneas.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Aeneas.xml new file mode 100644 index 00000000..ac28374c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Aeneas.xml @@ -0,0 +1,24 @@ + + + + Aeneas + 38760 + 2012-048C + Operational + + true + + 2020-05-24+02:00 + + + Main + 437600000 + + AFSK + 1200 + + KE6YFA-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AeroCube-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AeroCube-2.xml new file mode 100644 index 00000000..4db10a03 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AeroCube-2.xml @@ -0,0 +1,20 @@ + + + + AeroCube-2 + 31122 + 2007-012F + Not operational + + + Main + 0 + + GFSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AeroCube1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AeroCube1.xml new file mode 100644 index 00000000..5c9946b0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AeroCube1.xml @@ -0,0 +1,21 @@ + + + + AeroCube1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + GFSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AggieSat-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AggieSat-4.xml new file mode 100644 index 00000000..8d789f82 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AggieSat-4.xml @@ -0,0 +1,18 @@ + + + + AggieSat-4 + 41313 + Not operational + + + Main + 436250000 + + FSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Al-Farabi-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Al-Farabi-2.xml new file mode 100644 index 00000000..812431f6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Al-Farabi-2.xml @@ -0,0 +1,25 @@ + + + + Al-Farabi-2 + 43805 + Operational + Draft + 2019-08-07 + + + Beacon + 436500000 + + GMSK + 4800bps + + + CW + + + UN1GWA + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_All-Star - THEIA.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_All-Star - THEIA.xml new file mode 100644 index 00000000..0b1521ea --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_All-Star - THEIA.xml @@ -0,0 +1,20 @@ + + + + All-Star - THEIA + 39683 + Unknown + 2020-05-24+02:00 + + + Main + 2401700000 + + BPSK + 256000 + + COSGC1AS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AmurSat (AmGU-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AmurSat (AmGU-1).xml new file mode 100644 index 00000000..f0f5f6a2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AmurSat (AmGU-1).xml @@ -0,0 +1,26 @@ + + + + AmurSat (AmGU-1) + 44394 + Operational + Draft + 2019-08-07 + + IARU coordination Declined + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + + + + Beacon + 436250000 + + mobitex + 4800bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_AoXiang-1 (CN04).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_AoXiang-1 (CN04).xml new file mode 100644 index 00000000..95bfd54f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_AoXiang-1 (CN04).xml @@ -0,0 +1,42 @@ + + + + AoXiang-1 (CN04) + 42735 + Decayed + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 2401600000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437525000 + + BPSK + 9600 bps + + NPUAX1 + + + Beacon + 437500000 + + BPSK + 9600 bps + + NPUAX1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Aoba-VELOX-III.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Aoba-VELOX-III.xml new file mode 100644 index 00000000..deca1547 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Aoba-VELOX-III.xml @@ -0,0 +1,25 @@ + + + + Aoba-VELOX-III + 41935 + Decayed + Draft + 2019-08-07 + + + Beacon + 437375000 + + CW + 0 + + + AFSK + 1200 bps + + JG6YBW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Aoba-Velox 4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Aoba-Velox 4.xml new file mode 100644 index 00000000..c0afaa16 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Aoba-Velox 4.xml @@ -0,0 +1,51 @@ + + + + Aoba-Velox 4 + 43940 + 2019-003J + Not operational + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + + Verified + 2019-01-19 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=499 + + + + + AOBA VELOX-IV site + http://www.eee.ntu.edu.sg/research/SaRC/Research/Projects/Pages/AOBA-VELOX-IV.aspx + + + + + + Telemetry 1 + 437225000 + + GMSK + 9600 + + + + + + + + + + + + + + av4mail@googlegroups.com + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-1.xml new file mode 100644 index 00000000..0e2badbb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-1.xml @@ -0,0 +1,23 @@ + + + + ArduSat-1 + 39412 + Decayed + 2020-05-24+02:00 + + + Main + 437000000 + + MSK + 9600 + + + CW + + WG9XFC-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-2.xml new file mode 100644 index 00000000..8ccfe5ac --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-2.xml @@ -0,0 +1,18 @@ + + + + ArduSat-2 + 39570 + Decayed + 2020-05-24+02:00 + + + Main + 437000000 + + 9600bps MSK CCSDS + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-X.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-X.xml new file mode 100644 index 00000000..f8c9e489 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ArduSat-X.xml @@ -0,0 +1,23 @@ + + + + ArduSat-X + 39414 + Decayed + 2020-05-24+02:00 + + + Main + 437007000 + + MSK + 9600 + + + CW + + WG9XFC-X + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Argus-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Argus-2.xml new file mode 100644 index 00000000..525fd304 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Argus-2.xml @@ -0,0 +1,42 @@ + + + + Argus-2 + 0 + To be launch + + Wallops Flight Facility, états unis + + + Draft + 2020-05-24+02:00 + + IARU information + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=682 + + + + + Beacon + 437290000 + + GMSK + 9600 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Argus.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Argus.xml new file mode 100644 index 00000000..c9852982 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Argus.xml @@ -0,0 +1,19 @@ + + + + Argus + 0 + To be launch + 2020-05-24+02:00 + + + Main + 437290000 + + AFSK + 1200 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Armadillo.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Armadillo.xml new file mode 100644 index 00000000..60a0c776 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Armadillo.xml @@ -0,0 +1,54 @@ + + + + Armadillo + 44352 + Operational + + true + + Draft + 2020-05-24+02:00 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=237 + + + + Project information + https://www.facebook.com/UTSatLab/app/208195102528120/?ref=page_internal + + + + + Beacon + 437525000 + + GMSK + 19200 bps + + + GMSK + 38400 bps + + + CW + + + KE5DTW + + + + + SATNOGS : Kaitai Struct for telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/armadillo.ksy + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Astrocast-0.2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Astrocast-0.2.xml new file mode 100644 index 00000000..d3f5ebb5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Astrocast-0.2.xml @@ -0,0 +1,38 @@ + + + + Astrocast-0.2 + 44083 + Operational + + true + + INIT + 2020-05-24+02:00 + + project information + https://www.astrocast.com/ + + + + + Beacon + 437175000 + + FSK + 1200 bps + + HB9GSF + + + Beacon + 2406000000 + + FM + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Athenoxat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Athenoxat-1.xml new file mode 100644 index 00000000..f195bcdb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Athenoxat-1.xml @@ -0,0 +1,25 @@ + + + + Athenoxat-1 + 41168 + Operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + CW + 0 + + + GMSK + 4800 bps + + ATX1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Atlantis (US02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Atlantis (US02).xml new file mode 100644 index 00000000..b6673727 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Atlantis (US02).xml @@ -0,0 +1,21 @@ + + + + Atlantis (US02) + 42737 + Decayed + INIT + 2019-08-07 + + + Beacon + 436390000 + + GMSK + 9600bps + + WD8DOX + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-2.xml new file mode 100644 index 00000000..18304e9c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-2.xml @@ -0,0 +1,29 @@ + + + + BEESAT-2 + 39136 + 2013-015G + Operational + + true + + + Draft + 2020-05-24+02:00 + + + Main + 435950000 + + GMSK + 4800 + + + CW + + DP0BEF + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-3.xml new file mode 100644 index 00000000..2b6944b3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-3.xml @@ -0,0 +1,29 @@ + + + + BEESAT-3 + 39135 + 2013-015F + Operational + + true + + + Draft + 2020-05-24+02:00 + + + Main + 435950000 + + GMSK + 4800 + + + CW + + DP0BEF + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-4.xml new file mode 100644 index 00000000..64a00e0a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-4.xml @@ -0,0 +1,43 @@ + + + + BEESAT-4 + 41619 + Operational + + true + + INIT + 2020-05-24+02:00 + + CITATION NEEDED - https://xkcd.com/285/ + + + + + + Beacon + 435950000 + + FM + 0 + + + GMSK + 4800 bps + + DP0BEH + + + Digipeater + + 435950000 + + + 435950000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-9.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-9.xml new file mode 100644 index 00000000..8212eb7f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BEESAT-9.xml @@ -0,0 +1,55 @@ + + + + BEESAT-9 + 44412 + Operational + draft + 2019-08-07 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=657 + + + + Project information + https://www.raumfahrttechnik.tu-berlin.de/menue/research/current_projects/beesat_9/parameter/en/ + + + + + Beacon + 435950000 + + GMSK + 19200 bps + + + GMSK + 38400 bps + + + CW + + + DP0BEM + + + + + information for amateur radio comunitie + https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ + + + Telemetry description + https://www.raumfahrttechnik.tu-berlin.de/fileadmin/fg169/amateur-radio/BEESAT-9_Telemetry_Format.ods + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BELL (PhoneSat1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BELL (PhoneSat1).xml new file mode 100644 index 00000000..27cfa369 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BELL (PhoneSat1).xml @@ -0,0 +1,20 @@ + + + + BELL (PhoneSat1) + 39143 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BHUTAN-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BHUTAN-1.xml new file mode 100644 index 00000000..95ebe105 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BHUTAN-1.xml @@ -0,0 +1,59 @@ + + + + BHUTAN-1 + 43591 + 1998-067PF + Operational + + true + + + 2018-08-10 + ISS + + + Verified + 2020-05-24+02:00 + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=562 + + + + + Main + 437375000 + + BPSK + 1200 + + + CW + + JG6YKL + + + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BIRD-G (Ghana GhanaSat-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BIRD-G (Ghana GhanaSat-1).xml new file mode 100644 index 00000000..6a650ea7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BIRD-G (Ghana GhanaSat-1).xml @@ -0,0 +1,29 @@ + + + + BIRD-G (Ghana GhanaSat-1) + 42821 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJP + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BIRD-M (Mongolia Mazaalai).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BIRD-M (Mongolia Mazaalai).xml new file mode 100644 index 00000000..ebe2d95f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BIRD-M (Mongolia Mazaalai).xml @@ -0,0 +1,29 @@ + + + + BIRD-M (Mongolia Mazaalai) + 42822 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJQ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BIROS.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BIROS.xml new file mode 100644 index 00000000..fc9b3f14 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BIROS.xml @@ -0,0 +1,24 @@ + + + + BIROS + 41604 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437525000 + + GMSK + 4800 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BO-47(IDEFIX)BO-48(IDEFIX).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BO-47(IDEFIX)BO-48(IDEFIX).xml new file mode 100644 index 00000000..45f27076 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BO-47(IDEFIX)BO-48(IDEFIX).xml @@ -0,0 +1,30 @@ + + + + BO-47(IDEFIX)BO-48(IDEFIX) + 27422 + 2002-021B + Not operational + BO-47 + + + BO-47 + 145840000 + + BPSK + 400 + + + + + BO-48 + 435270000 + + BPSK + 400 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BRAC (BIRD-B).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BRAC (BIRD-B).xml new file mode 100644 index 00000000..408d58ad --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BRAC (BIRD-B).xml @@ -0,0 +1,29 @@ + + + + BRAC (BIRD-B) + 42823 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BRICSat-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BRICSat-2.xml new file mode 100644 index 00000000..e4d09955 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BRICSat-2.xml @@ -0,0 +1,55 @@ + + + + BRICSat-2 + 44355 + Operational + + true + + + 2019-08-07 + + + Navy-OSCAR 103 (NO-103) + Verified + 2020-05-24+02:00 + + Information page + http://aprs.org/bricsat-2.html + + + + Beacon + 437605000 + + FSK + 9600 + + USNA14 + + + APRS + + 145825000 + + + 145825000 + + APRS 1200 bauds + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BRITE-PL.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BRITE-PL.xml new file mode 100644 index 00000000..e0ab9fda --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BRITE-PL.xml @@ -0,0 +1,18 @@ + + + + BRITE-PL + 39431 + 2013-066R + Not operational + + + Main + 145890000 + + 32Kbps-256Kbps + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BY70-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BY70-1.xml new file mode 100644 index 00000000..b8ba157d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BY70-1.xml @@ -0,0 +1,31 @@ + + + + BY70-1 + 41909 + Decayed + Draft + 2019-08-07 + + + Beacon + 436200000 + + BPSK + 9600 bps + + + + + Repeater + + 145920000 + + + 436200000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BeEagleSat (TR01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BeEagleSat (TR01).xml new file mode 100644 index 00000000..3a36be46 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BeEagleSat (TR01).xml @@ -0,0 +1,21 @@ + + + + BeEagleSat (TR01) + 42736 + Decayed + INIT + 2019-08-07 + + + Beacon + 437370000 + + GMSK + 9600bps + + ON01TR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BeeSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BeeSat-1.xml new file mode 100644 index 00000000..4f42e1e4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BeeSat-1.xml @@ -0,0 +1,26 @@ + + + + BeeSat-1 + 35933 + 2009-051C + Operational + + true + + + Draft + 2020-05-24+02:00 + + + Main + 436000000 + + GMSK + 4800 9600 + + DP0BEE + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Bevo-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Bevo-2.xml new file mode 100644 index 00000000..e237e238 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Bevo-2.xml @@ -0,0 +1,21 @@ + + + + Bevo-2 + 41314 + Not operational + + + Main + 437325000 + + FSK + 38400 + + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BisonSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BisonSat.xml new file mode 100644 index 00000000..2c9d38fe --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BisonSat.xml @@ -0,0 +1,23 @@ + + + + BisonSat + 40968 + 2015-058E + Operational + + true + + 2020-05-24+02:00 + + + Main + 437375000 + + GMSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Black Knight-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Black Knight-1.xml new file mode 100644 index 00000000..d6657d5b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Black Knight-1.xml @@ -0,0 +1,17 @@ + + + + Black Knight-1 + 39398 + Not operational + + + Main + 437345000 + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_BugSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_BugSat-1.xml new file mode 100644 index 00000000..22f32cf7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_BugSat-1.xml @@ -0,0 +1,51 @@ + + + + BugSat-1 + 40014 + 2014-033E + Operational + + true + + + 2014-06-19 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=376 + + + + Wikipedia + https://en.wikipedia.org/wiki/BugSat_1 + + + + + Main + 437445000 + + GMSK + 9600 + + LU7AA + + + + + + + + + + + + + http://www.dk3wn.info/software.shtml + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CADRE.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CADRE.xml new file mode 100644 index 00000000..e3ff7cdc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CADRE.xml @@ -0,0 +1,30 @@ + + + + CADRE + 41475 + Decayed + Draft + 2019-08-07 + + + Beacon + 437485000 + + GMSK 1Mbit OQPSK + 9600bps + + + + + Beacon + 3404000000 + + OQPSK + 1Mbit + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CAERUS.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CAERUS.xml new file mode 100644 index 00000000..c15df79a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CAERUS.xml @@ -0,0 +1,21 @@ + + + + CAERUS + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437600000 + + AFSK + 1200 + + KJ6FIX-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CAMSAT CAS-6.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CAMSAT CAS-6.xml new file mode 100644 index 00000000..032bf9ef --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CAMSAT CAS-6.xml @@ -0,0 +1,83 @@ + + + + CAMSAT CAS-6 + 44880 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=622 + Alan Kung BA1DU + 2018-05-18 + 2018-07-19 + alankung@vip.sina.com.nospam + + + 2019-12-20 + CZ-4B launch vehicle from Taiyuan Satellite Launch + Center + + + INIT + 2020-05-24+02:00 + + Information document + https://ukamsat.files.wordpress.com/2019/12/camsat-news-release-for-cas-6-satellie.pdf + + + + + + + CW Beacon + 145910000 + + CW + + + BJ1SO + + + GMSK Beacon + 145890000 + + GMSK + 4800 + + BJ1SO + + + U/V Linear Transponder + + 435282000 + + + 145945000 + + + true + + + + + Digital telemetry format + + https://ukamsat.files.wordpress.com/2019/12/cas-6-satellites-digital-telemetry-description.pdf + + + + CW telemetry format + + https://ukamsat.files.wordpress.com/2019/12/cas-6-cw-telemetry-encoding-format.pdf + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CANX-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CANX-1.xml new file mode 100644 index 00000000..c133b420 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CANX-1.xml @@ -0,0 +1,20 @@ + + + + CANX-1 + 27847 + 2003-031H + Not operational + + + Main + 437880000 + + AFSK + 1200 + + VA3SFL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CANX-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CANX-2.xml new file mode 100644 index 00000000..76a7fd30 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CANX-2.xml @@ -0,0 +1,27 @@ + + + + CANX-2 + 32790 + 2008-021H + Not operational + + + Main + 0 + + OverGSonly + + VA3SFL + + + Main + 0 + + 6KbpsGMSK + + VA3SFL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CAPE-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CAPE-1.xml new file mode 100644 index 00000000..b2af8e38 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CAPE-1.xml @@ -0,0 +1,20 @@ + + + + CAPE-1 + 31130 + 2007-012P + Not operational + + + Main + 435248000 + + AFSK + 1200 + + K5USL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CAPE-2 (LO-75).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CAPE-2 (LO-75).xml new file mode 100644 index 00000000..ba23bf00 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CAPE-2 (LO-75).xml @@ -0,0 +1,23 @@ + + + + CAPE-2 (LO-75) + 39382 + Decayed + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + + CW + + W5UL-15 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-3E (XW-2E).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-3E (XW-2E).xml new file mode 100644 index 00000000..ae7efc6d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-3E (XW-2E).xml @@ -0,0 +1,45 @@ + + + + CAS-3E (XW-2E) + 40909 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 145910000 + + CW + 0 + + BJ1SF + + + Beacon + 145890000 + + GMSK + 9600 + + BJ1SF + + + Repeater + + 435270000 + 435290000 + + + 145915000 + 145935000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-4A (ZHUHAI-1 01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-4A (ZHUHAI-1 01).xml new file mode 100644 index 00000000..00257e64 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-4A (ZHUHAI-1 01).xml @@ -0,0 +1,53 @@ + + + + CAS-4A (ZHUHAI-1 01) + 42761 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon 1 + 145855000 + + CW + 0 + + + GMSK + 4800bps + + BJ1SK + + + Beacon 2 + 145835000 + + CW + 0 + + + GMSK + 4800bps + + BJ1SK + + + Repeater + + 435210000 + 435230000 + + + 145860000 + 145880000 + + SSB 20_kHz bandwidth inverted + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-4B (ZHUHAI-1 02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-4B (ZHUHAI-1 02).xml new file mode 100644 index 00000000..e71466c9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-4B (ZHUHAI-1 02).xml @@ -0,0 +1,49 @@ + + + + CAS-4B (ZHUHAI-1 02) + 42759 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 145910000 + + CW + 0 + + + GMSK + 4800 bps + + BJ1SL + + + Beacon + 145890000 + + FSK + 4800 + + + + + Repeater + + 435270000 + 435290000 + + + 145915000 + 145935000 + + SSB 20_kHz bandwidth inverted + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-7B (BP-1B).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-7B (BP-1B).xml new file mode 100644 index 00000000..1610895a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CAS-7B (BP-1B).xml @@ -0,0 +1,65 @@ + + + + CAS-7B (BP-1B) + 44443 + + Operational + + 2019-07-25 + Jiuquan + + BIT Progress-OSCAR 102 (BO-102) + verified + 2015-11-02 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=659 + + + Information + CAS-7B (BP-1B) was developed by the Chinese Amateur Satellite Group (CAMSAT), and in cooperation with the Beijing Institute of Technology (BIT). CAMSAT completed the project planning, design, build, and testing, and manages the on-orbit operation of the satellite. BIT provided the satellite environmental testing, launch support, and financial support. Many students from BIT were involved with the project, learning about satellite technology and amateur radio. The satellite carries a CW telemetry beacon and FM repeater that has been active since launch. + + + + CW Beacon + 435715000 + + CW + + + + + FM Transpondeur + + 145900000 + + + 435690000 + + FM + yes + + + + + Telemetry information + https://ukamsat.files.wordpress.com/2019/06/camsat-cas-7b-news-release.pdf + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CHOMPTT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CHOMPTT.xml new file mode 100644 index 00000000..c6a0a4c3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CHOMPTT.xml @@ -0,0 +1,51 @@ + + + + CHOMPTT + 43855 + Not operational + + true + + + 2018-12-16 + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2020-05-24+02:00 + + CHOMPTT presentation + http://mstl.atl.calpoly.edu/~bklofas/Presentations/DevelopersWorkshop2014/Conklin_CHOMPTT.pdf + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=523 + + + + + Telemetry + 437560000 + + GMSK + 9600 bauds + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CNUSail-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CNUSail-1.xml new file mode 100644 index 00000000..e90bce4b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CNUSail-1.xml @@ -0,0 +1,21 @@ + + + + CNUSail-1 + 43133 + Unknown + Draft + 2019-08-07 + + + Beacon + 437100000 + + GMSK + 9600 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CO-55(CUTE-I).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-55(CUTE-I).xml new file mode 100644 index 00000000..d1886c6e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-55(CUTE-I).xml @@ -0,0 +1,25 @@ + + + + CO-55(CUTE-I) + 27844 + 2003-031E + Operational + + true + + CO-55 + 2020-05-24+02:00 + + + Main + 4368375000 + + AFSK + 1200 + + JQ1YCY + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CO-56(CUTE17).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-56(CUTE17).xml new file mode 100644 index 00000000..322d6ff4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-56(CUTE17).xml @@ -0,0 +1,30 @@ + + + + CO-56(CUTE17) + 28941 + Decayed + CO-56 + 2020-05-24+02:00 + + + Main + 437382000 + + AFSK + 1200 + + JQ1YPC + + + Main + 437382000 + + GMSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CO-57(XI-IV).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-57(XI-IV).xml new file mode 100644 index 00000000..774d53a5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-57(XI-IV).xml @@ -0,0 +1,28 @@ + + + + CO-57(XI-IV) + 27848 + 2003-031J + Operational + + true + + CO-57 + 2020-05-24+02:00 + + + Main + 4368475000 + + AFSK + 1200 + + + CW + + JQ1YCW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CO-58(XI-V).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-58(XI-V).xml new file mode 100644 index 00000000..f95a811e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-58(XI-V).xml @@ -0,0 +1,28 @@ + + + + CO-58(XI-V) + 28895 + 2005-043F + Operational + + true + + CO-58 + 2020-05-24+02:00 + + + Main + 437465000 + + AFSK + 1200 + + + CW + + JQ1YGW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CO-66(SEEDS-II).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-66(SEEDS-II).xml new file mode 100644 index 00000000..ee5f1735 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CO-66(SEEDS-II).xml @@ -0,0 +1,24 @@ + + + + CO-66(SEEDS-II) + 32791 + 2008-021J + Operational + + true + + CO-66 + 2020-05-24+02:00 + + + Main + 437485000 + + 1200bpsFMCWTalk + + erJQ1YGU + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_COMPASS-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_COMPASS-1.xml new file mode 100644 index 00000000..4f9b6eb5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_COMPASS-1.xml @@ -0,0 +1,23 @@ + + + + COMPASS-1 + 32787 + 2008-021E + Not operational + + + Main + 437275000 + + AFSK + 1200 + + + CW + + DP0COM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_COMPASS-2 - DragSail (DE04).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_COMPASS-2 - DragSail (DE04).xml new file mode 100644 index 00000000..45c419a0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_COMPASS-2 - DragSail (DE04).xml @@ -0,0 +1,46 @@ + + + + COMPASS-2 - DragSail (DE04) + 42777 + Not operational + Draft + 2020-05-24+02:00 + + Information page + http://149.201.163.33/?page_id=125 + + + + Beacon + 437300000 + + s AFSK + 1200 Bps + + + + + Beacon + 2403000000 + + AFSK + 1200 Bps + + + + + + + + + + + Amateur radio information + http://149.201.163.33/?page_id=892 + + + https://www.dropbox.com/sh/v6ji3pduzm4ue4m/AABQGgBKULDBgroJWs0e-Bqwa?dl=0 + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_COPPER.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_COPPER.xml new file mode 100644 index 00000000..de8c43ab --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_COPPER.xml @@ -0,0 +1,18 @@ + + + + COPPER + 39395 + Not operational + + + Main + 437290000 + + FSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CP-6.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CP-6.xml new file mode 100644 index 00000000..c414801f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CP-6.xml @@ -0,0 +1,22 @@ + + + + CP-6 + 35003 + Not operational + + + Main + 437365000 + + AFSK + 1200 + + + CW + + N6CP + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CP-7 (DAVE).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CP-7 (DAVE).xml new file mode 100644 index 00000000..38eea5a3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CP-7 (DAVE).xml @@ -0,0 +1,33 @@ + + + + CP-7 (DAVE) + 43615 + Operational + + true + + Draft + 2020-05-24+02:00 + + Project information + https://www.polysat.org/launched + + + + + Beacon + 437150000 + + FSK + 9600 bps + + + CW + + + WI2XNR-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CP-9.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CP-9.xml new file mode 100644 index 00000000..1dbaa66a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CP-9.xml @@ -0,0 +1,56 @@ + + + + CP-9 + 44360 + Operational + + 2019-06-25 + + + + DRAFT + 2019-06-24 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=481 + CP-9 has been coordinated by IARU + CP-9 a été coordonné par l'IARU + + + Information page + https://www.polysat.org/ + + + + Telemetry 1 + 437505000 + + FSK + 9k6 + + + FSK + 19k2 + + + FSK + 38k4 + + KJ6RQH-1 + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CP5.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CP5.xml new file mode 100644 index 00000000..976b0107 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CP5.xml @@ -0,0 +1,20 @@ + + + + CP5 + 38763 + 2012-048F + Not operational + + + Main + 437405000 + + AFSK + 1200 + + CP5 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CSIM.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CSIM.xml new file mode 100644 index 00000000..340b9c00 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CSIM.xml @@ -0,0 +1,46 @@ + + + + CSIM + 43793 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=585 + CSIM has been coordinated by IARU + CSIM a été coordonné par l'IARU + + + + Telemetry 1 + 437250000 + + GMSK + 19200 kbps + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CSSWE.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CSSWE.xml new file mode 100644 index 00000000..15164836 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CSSWE.xml @@ -0,0 +1,20 @@ + + + + CSSWE + 38761 + 2012-048D + Not operational + + + Main + 437349000 + + GMSK + 9600 + + CSSWE + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CSTB-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CSTB-1.xml new file mode 100644 index 00000000..742ce3e5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CSTB-1.xml @@ -0,0 +1,20 @@ + + + + CSTB-1 + 31133 + 2007-012R + Not operational + + + Main + 0 + + AFSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CSUNSat1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CSUNSat1.xml new file mode 100644 index 00000000..43a5d38c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CSUNSat1.xml @@ -0,0 +1,25 @@ + + + + CSUNSat1 + 42715 + Decayed + Draft + 2019-08-07 + + + Beacon + 437400000 + + CW + 0 + + + GMSK + 9600 bps + + CSUNSAT1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CUAVA-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CUAVA-1.xml new file mode 100644 index 00000000..5d4d1d23 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CUAVA-1.xml @@ -0,0 +1,94 @@ + + + + CUAVA-1 + 0 + To be launch + + + + + DRAFT + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum= + CUAVA-1 has been coordinated by IARU + EntrySat a été coordonné par l'IARU + + + + Telemetry U + 437075000 + + GMSK + 9k6 + + + + + Telemetry S + 2404000000 + + + + + + + + Telemetry S? + 5840000000 + + + + + + + + Telemetry M + 76800000000 + + + + + + + + transpondeur U + + 145875000 + + + + + + transpondeur S + + 2404000000 + + + + + + Transponder + + 5660000000 + + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CUNYSAT-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CUNYSAT-1.xml new file mode 100644 index 00000000..b511cbb0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CUNYSAT-1.xml @@ -0,0 +1,22 @@ + + + + CUNYSAT-1 + 39470 + 2013-072J + Not operational + + + Main + 437505000 + + GMSK + 9600 + + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CUSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CUSat-1.xml new file mode 100644 index 00000000..d096d54b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CUSat-1.xml @@ -0,0 +1,20 @@ + + + + CUSat-1 + 39266 + 2013-055B + Not operational + + + Main + 437405000 + + AFSK + 1200 + + BOTTOM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CUSat-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CUSat-2.xml new file mode 100644 index 00000000..118c1ab2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CUSat-2.xml @@ -0,0 +1,19 @@ + + + + CUSat-2 + 39271 + Not operational + + + Main + 437485000 + + AFSK + 1200 + + WG2XTI + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CUTE17+APDII.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CUTE17+APDII.xml new file mode 100644 index 00000000..526db66c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CUTE17+APDII.xml @@ -0,0 +1,38 @@ + + + + CUTE17+APDII + 32785 + 2008-021C + Operational + + true + + CO-65 + Draft + 2020-05-24+02:00 + + + Main + 0 + + GMSK + 9600 + + JQ1YTC + + + Main + 437275000 + + AFSK + 1200 + + + CW + + JQ1YTC + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CXBN-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CXBN-2.xml new file mode 100644 index 00000000..71326172 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CXBN-2.xml @@ -0,0 +1,21 @@ + + + + CXBN-2 + 42704 + Decayed + Draft + 2019-08-07 + + + Beacon + 437525000 + + FSK + 9600 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CXBN.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CXBN.xml new file mode 100644 index 00000000..d57bd321 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CXBN.xml @@ -0,0 +1,20 @@ + + + + CXBN + 38762 + 2012-048E + Not operational + + + Main + 437525000 + + GFSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CanX-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CanX-4.xml new file mode 100644 index 00000000..1c3eed5d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CanX-4.xml @@ -0,0 +1,18 @@ + + + + CanX-4 + 40055 + 2014-034C + Not operational + + + Main + 437365000 + + 32Kbps-256Kbps BPSK + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CanX-5.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CanX-5.xml new file mode 100644 index 00000000..32675cc3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CanX-5.xml @@ -0,0 +1,18 @@ + + + + CanX-5 + 40056 + 2014-034D + Not operational + + + Main + 437365000 + + 32Kbps-256Kbps BPSK + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Challenger (US01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Challenger (US01).xml new file mode 100644 index 00000000..d454d8b4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Challenger (US01).xml @@ -0,0 +1,21 @@ + + + + Challenger (US01) + 42721 + Decayed + Draft + 2019-08-07 + + + Beacon + 437510000 + + GMSK + 9600 bps + + QBUS01 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ChargerSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ChargerSat-1.xml new file mode 100644 index 00000000..3645113e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ChargerSat-1.xml @@ -0,0 +1,18 @@ + + + + ChargerSat-1 + 39405 + Not operational + + + Main + 437405000 + + FSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Chasqui-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Chasqui-1.xml new file mode 100644 index 00000000..d33da0cf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Chasqui-1.xml @@ -0,0 +1,22 @@ + + + + Chasqui-1 + 40117 + Not operational + + + Main + 437025000 + + AFSK + 1200 + + + GMSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-1.xml new file mode 100644 index 00000000..84bf076a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-1.xml @@ -0,0 +1,22 @@ + + + + ChubuSat-1 + 40300 + 2014-070C + Not operational + + + Main + 437485000 + + 1200bps 9600bps CW + + + CW + + JJ2YJY + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-2.xml new file mode 100644 index 00000000..7f28b47f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-2.xml @@ -0,0 +1,32 @@ + + + + ChubuSat-2 + 41338 + Operational + + true + + draft + 2020-05-24+02:00 + + + Beacon + 437102000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JJ2YPN + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-3.xml new file mode 100644 index 00000000..779cdf5e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ChubuSat-3.xml @@ -0,0 +1,32 @@ + + + + ChubuSat-3 + 41339 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437424000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JJ2YPO + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Columbia (US04).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Columbia (US04).xml new file mode 100644 index 00000000..e9deb3c7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Columbia (US04).xml @@ -0,0 +1,21 @@ + + + + Columbia (US04) + 42702 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437055000 + + GMSK + 9600 bps + + KD8CJT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CubeBel-1(BSUSat-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CubeBel-1(BSUSat-1).xml new file mode 100644 index 00000000..b4358707 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CubeBel-1(BSUSat-1).xml @@ -0,0 +1,60 @@ + + + + CubeBel-1(BSUSat-1) + 43666 + Operational + + true + + Draft + 2020-05-24+02:00 + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=577 + + + + + + Beacon + 436990000 + + GMSK + 4800 bps + + + GMSK + 9600 bps + + EU10S + + + Digipeater + + 436200000 + + + 436200000 + + + + + + + information for amateur radio comunitie + https://www.raumfahrttechnik.tu-berlin.de/menue/amateur_radio/parameter/en/ + + + Telemetry description + https://bsusat.com/projects/telemetry-data-structure + + + How to upload telemetry + https://bsusat.com/for-radio-amateurs/how-to-upload-telemetry + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CubeBug-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CubeBug-1.xml new file mode 100644 index 00000000..2487ff34 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CubeBug-1.xml @@ -0,0 +1,24 @@ + + + + CubeBug-1 + 39153 + 2013-018D + Operational + + true + + 2020-05-24+02:00 + + + Main + 437438000 + + AFSK + 1200 + + CUBEB1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CubeBug-2 (LO-74).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CubeBug-2 (LO-74).xml new file mode 100644 index 00000000..2be772f0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CubeBug-2 (LO-74).xml @@ -0,0 +1,50 @@ + + + + CubeBug-2 (LO-74) + 39440 + 2013-066AA + Operational + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=310 + + + + + Main + 437445000 + + FSK + 1200 + + + GMSK + 9600 + + CUBEB2-6 + + + + + Amateur Radio – PEØSAT - information on telemetry data + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/cubebug-2/ + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_CubeSail 1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_CubeSail 1.xml new file mode 100644 index 00000000..96b9576f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_CubeSail 1.xml @@ -0,0 +1,42 @@ + + + + CubeSail 1 + 43851 + Unknown + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Draft + 2020-05-24+02:00 + + + + + + + + Telemetry + 437505000 + + GMSK + 9600 bauds + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_D-SAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_D-SAT.xml new file mode 100644 index 00000000..faa70405 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_D-SAT.xml @@ -0,0 +1,29 @@ + + + + D-SAT + 42794 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437505000 + + 4800bps GMSK CW + + + + GMSK + 4800 bps + + + CW + + + U1-DSAT-U1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE EXOCONNECT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE EXOCONNECT.xml new file mode 100644 index 00000000..7eee13c1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE EXOCONNECT.xml @@ -0,0 +1,25 @@ + + + + D-Star ONE EXOCONNECT + 44413 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435700000 + + mobitex GMSK + 4800 + + + mobitex GMSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE Phoenix.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE Phoenix.xml new file mode 100644 index 00000000..923b9318 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE Phoenix.xml @@ -0,0 +1,21 @@ + + + + D-Star ONE Phoenix + 43188 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435525000 + + D-Star Telemetry + 0 + + DP1GOS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE Sparrow.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE Sparrow.xml new file mode 100644 index 00000000..94c0010a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE Sparrow.xml @@ -0,0 +1,58 @@ + + + + D-Star ONE Sparrow + 43881 + Operational + + 2018-12-27 + Vostochny + + + Verified + 2018-12-27 + + D-Star ONE presentation + http://www.d-star.one/ + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=582 + + + + + Telemetry + 435700000 + + GMSK Mobitex (CMX990) + 4800 bauds + + DP1GOS + + + D-Star + + 437325000 + + + 435525000 + + DSTAR + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE iSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE iSat.xml new file mode 100644 index 00000000..51112c02 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_D-Star ONE iSat.xml @@ -0,0 +1,35 @@ + + + + D-Star ONE iSat + 43879 + Operational + Draft + 2019-08-07 + + + Beacon + 435700000 + + GMSK + 4800 + + + GMSK4k8 + 9600 + + DP2GOS + + + Repeater + + 437325000 + + + 435525000 + + FM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DANDE.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DANDE.xml new file mode 100644 index 00000000..72582215 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DANDE.xml @@ -0,0 +1,20 @@ + + + + DANDE + 39267 + 2013-055C + Not operational + + + Main + 436750000 + + GMSK + 9600 + + DANDE-2 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DIWATA-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DIWATA-2.xml new file mode 100644 index 00000000..dd63e701 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DIWATA-2.xml @@ -0,0 +1,67 @@ + + + + DIWATA-2 + 43678 + 2018-084H + Operational + + true + + + 2018-10-29 + Tanegeshima Space Center in Japan + + PO-101 + Verified + 2020-05-24+02:00 + + Project page + http://phl-microsat.upd.edu.ph/diwata2 + + + + Facebook + https://www.facebook.com/PHLMicrosat + + + + + Telemetry APRS + 145900000 + + BPSK + 1200 bauds + + + CW + 120 WPM + + D1W2PH + + + Main + + 437700000 + + + 145900000 + + FM / APRS + + + + + + Telemetrie description + http://phl-microsat.upd.edu.ph/diwata2 + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DO-17(DOVE).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DO-17(DOVE).xml new file mode 100644 index 00000000..31931735 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DO-17(DOVE).xml @@ -0,0 +1,21 @@ + + + + DO-17(DOVE) + 20440 + 1990-005E + Not operational + DO-17 + + + Main + 2401220000 + + AFSK + 1200 + + DOVE-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DO-64(DELFI-C3).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DO-64(DELFI-C3).xml new file mode 100644 index 00000000..0f7c2313 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DO-64(DELFI-C3).xml @@ -0,0 +1,34 @@ + + + + DO-64(DELFI-C3) + 32789 + 2008-021G + Operational + + true + + DO-64 + Draft + 2020-05-24+02:00 + + + Main + 1458675000 + + BPSK + 1200 + + DLFIC3 + + + Main + 145930000 + + CW + + DLFIC3 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DOSAAF-85 (RS-44).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DOSAAF-85 (RS-44).xml new file mode 100644 index 00000000..bc555155 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DOSAAF-85 (RS-44).xml @@ -0,0 +1,57 @@ + + + + DOSAAF-85 (RS-44) + 44909 + Operational + + false + + + 2019-12-26 + Plesetsk Cosmodrome + + Draft + 2020-05-01 + + satellite information + https://r4uab.ru/2020/04/30/na-sputnike-dosaaf-85-rs-44-dlya-testirovaniya-byl-vklyuchen-radiolyubitelskij-retranslyator/ + + + + Beacon + 435605000 + + CW + RS44 + + + + + Transpondeur + + 145935000 + 145995000 + + + 435610000 + 435670000 + + SSB/CW + yes + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DRAGONSat(AggieSat-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DRAGONSat(AggieSat-2).xml new file mode 100644 index 00000000..e96c8b80 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DRAGONSat(AggieSat-2).xml @@ -0,0 +1,30 @@ + + + + DRAGONSat(AggieSat-2) + 35690 + Decayed + Verified + 2020-05-24+02:00 + + + Main + 436250000 + + FSK + 19200 + + + + + Main + 437325000 + + FSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DTUSAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DTUSAT.xml new file mode 100644 index 00000000..1575c9ff --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DTUSAT.xml @@ -0,0 +1,20 @@ + + + + DTUSAT + 27842 + 2003-031C + Not operational + + + Main + 437475000 + + AFSK + 2400 + + OZ2DTU + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DTUSat-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DTUSat-2.xml new file mode 100644 index 00000000..9cb1ce8c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DTUSat-2.xml @@ -0,0 +1,39 @@ + + + + DTUSat-2 + 40030 + 2014-033W + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=87 + + + + DTUsat Site + http://www.dtusat.dtu.dk/ + + + + + Main + 2401835000 + + MSK + 1200 + + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DUCHIFAT-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DUCHIFAT-1.xml new file mode 100644 index 00000000..1f7ecf78 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DUCHIFAT-1.xml @@ -0,0 +1,65 @@ + + + + DUCHIFAT-1 + 40021 + 2014-033M + Operational + + true + + + 2014-06-19 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=258 + + + + Duchifat 1 site + http://www.h-space-lab.org/php/duchifat1-en.php + + + + + Main + 145980000 + + BPSK + 1200 + + + CW + + 4X4HSL + + + APRS Digipeater + + 435220000 + + + 145980000 + + AFSK / BPSK + 1200 + + + + + + + + + + + + + http://www.h-space-lab.org/download/Public%20Release.rar + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DUTHSat (GR01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DUTHSat (GR01).xml new file mode 100644 index 00000000..9ba54e09 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DUTHSat (GR01).xml @@ -0,0 +1,21 @@ + + + + DUTHSat (GR01) + 42724 + Decayed + Draft + 2019-08-07 + + + Beacon + 436420000 + + BPSK + 1200 bps + + SZ2DUT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DX-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DX-1.xml new file mode 100644 index 00000000..929b0840 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DX-1.xml @@ -0,0 +1,20 @@ + + + + DX-1 + 40071 + 2014-037C + Operational + + + Main + 438225000 + + GFSK + 9600 + + DAURIA + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DaVinci.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DaVinci.xml new file mode 100644 index 00000000..dbd43bc9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DaVinci.xml @@ -0,0 +1,61 @@ + + + + DaVinci + 0 + To be launch + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2020-05-24+02:00 + + IARU coordination + http://www.amsatuk.me.uk/iaru/informal_detail.php?serialnum=524 + No frequency coordination has been provided + + + DaVinci project pages + https://www.projectdavincicubesat.org/ + + + + Twitter @DavinciCubeSat + https://twitter.com/davincicubesat + + + + FaceBook + https://www.facebook.com/Project-DaVinci-1225716617456409/ + + + + + Telemetry + 436500000 + + GMSK + 9600 bauds + + + CW + + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Delfi-n3Xt.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Delfi-n3Xt.xml new file mode 100644 index 00000000..1d7eee61 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Delfi-n3Xt.xml @@ -0,0 +1,19 @@ + + + + Delfi-n3Xt + 39428 + 2013-066N + Not operational + + + Main + 2405000000 + + BPSK MSK + 2400 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Delphini-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Delphini-1.xml new file mode 100644 index 00000000..cb81163b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Delphini-1.xml @@ -0,0 +1,41 @@ + + + + Delphini-1 + 44030 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + + + 1k2/4k8/9k6* GMSK + 0 + + + + + Beacon + 437500000 + + GMSK + 1200 Bps + + + GMSK + 4800 Bps + + + GMSK + 9600 Bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DeorbitSail.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DeorbitSail.xml new file mode 100644 index 00000000..3a865b17 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DeorbitSail.xml @@ -0,0 +1,21 @@ + + + + DeorbitSail + 40719 + Not operational + Drfat + 2020-05-24+02:00 + + + Beacon + 145975000 + + BPSK + 1200bps + + DOS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Dove-1 - 2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Dove-1 - 2.xml new file mode 100644 index 00000000..86eba30c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Dove-1 - 2.xml @@ -0,0 +1,19 @@ + + + + Dove-1 - 2 + 39144 + Decayed + 2020-05-24+02:00 + + + Main + 2420000000 + + AFSK + 1200 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_DragonSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_DragonSat-1.xml new file mode 100644 index 00000000..14fad731 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_DragonSat-1.xml @@ -0,0 +1,18 @@ + + + + DragonSat-1 + 39383 + Not operational + + + Main + 0000 + + FSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Duchifat3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Duchifat3.xml new file mode 100644 index 00000000..5dc4a28a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Duchifat3.xml @@ -0,0 +1,73 @@ + + + + Duchifat3 + 44854 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=586 + Shamai Opfer 4Z1WS and David Greenberg 4X1DG + 2017-10-17 + 2017-11-22 + 4z1ws@amsat.org.nospam and david.greenberg@bezeqint.net.nospam + + + 2019-12-11 + + + + INIT + 2020-05-24+02:00 + + + + + + + + + + Beacon + 436400000 + + PBSK + 9600 + + + + + U/V FM + + 145970000 + + + 436400000 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_E-Star-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_E-Star-2.xml new file mode 100644 index 00000000..dd47e7e0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_E-Star-2.xml @@ -0,0 +1,42 @@ + + + + E-Star-2 + 41459 + 2016-025D + Operational + + true + + + 2016-04-25 + Kourou, Guyanne Française + + Verified + 2020-05-24+02:00 + + Porject page + http://www.cubesatteam-polito.com/e-star-ii/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=241 + + + + + Main + 437485000 + + AFSK + 1200 + + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_E1P-U2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_E1P-U2.xml new file mode 100644 index 00000000..a172a8fe --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_E1P-U2.xml @@ -0,0 +1,24 @@ + + + + E1P-U2 + 37855 + 2011-061F + Operational + + true + + 2020-05-24+02:00 + + + Main + 437502000 + + AFSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_EDSN.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_EDSN.xml new file mode 100644 index 00000000..df35c0a9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_EDSN.xml @@ -0,0 +1,19 @@ + + + + EDSN + -29 + Unknown + 2020-05-24+02:00 + + + Main + 437100000 + + AFSK + 1200 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ELFIN-A.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ELFIN-A.xml new file mode 100644 index 00000000..0cd9b95f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ELFIN-A.xml @@ -0,0 +1,49 @@ + + + + ELFIN-A + 43617 + Operational + + true + + Draft + 2020-05-24+02:00 + + Project information + https://elfin.igpp.ucla.edu/ + + + + + Beacon + 437450000 + + GFSK + 9600bps + + WJ2XNX + + + + + information for amateur radio comunitie + https://elfin.igpp.ucla.edu/listen-to-elfin + + + Telemetry description + https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx + + + SatNOGS : Kaitai Struct telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy + + + + + + elfin@igpp.ucla.edu + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ELFIN-B.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ELFIN-B.xml new file mode 100644 index 00000000..70f55bed --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ELFIN-B.xml @@ -0,0 +1,49 @@ + + + + ELFIN-B + 43616 + Operational + + true + + Draft + 2020-05-24+02:00 + + Project information + https://elfin.igpp.ucla.edu/ + + + + + Beacon + 437450000 + + GFSK + 9600bps + + WJ2XOX + + + + + information for amateur radio comunitie + https://elfin.igpp.ucla.edu/listen-to-elfin + + + Telemetry description + https://elfin.igpp.ucla.edu/s/Beacon-Format_v2.xlsx + + + SatNOGS : Kaitai Struct telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/elfin.ksy + + + + + + elfin@igpp.ucla.edu + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_EO-88 (FUNcube-5 Nayif-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_EO-88 (FUNcube-5 Nayif-1).xml new file mode 100644 index 00000000..72b98db3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_EO-88 (FUNcube-5 Nayif-1).xml @@ -0,0 +1,59 @@ + + + + EO-88 (FUNcube-5 Nayif-1) + 42017 + Operational + + true + + EO-88 + Draft + 2020-05-24+02:00 + + + Beacon + 145940000 + + BPSK SSB + 1200 + + + + + Beacon + 145940000 + + BPSK SSB + 1200 + + + + + Main + + 435015000 + 435045000 + + + 145960000 + 145990000 + + SSB/CW + yes + + + + + Telemetry dashboard + http://data2.amsat-uk.org/ui/nayif1 + + + + + + operations@funcube.org.uk + https://funcube.org.uk/working-documents/funcube-telemetry-dashboard/ + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_EQUISat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_EQUISat.xml new file mode 100644 index 00000000..300fcbda --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_EQUISat.xml @@ -0,0 +1,45 @@ + + + + EQUISat + 43552 + Operational + Draft + 2019-08-07 + + Information page + https://brownspace.org/equisat/ + + + + Beacon + 435550000 + + CW + + + + FSK + 9600 + + + FSK + 4800 + + + + + + + + + + + Dasboard + https://equisat.brownspace.org + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ESEO (FUNcube 4).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ESEO (FUNcube 4).xml new file mode 100644 index 00000000..3ed849b0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ESEO (FUNcube 4).xml @@ -0,0 +1,81 @@ + + + + ESEO (FUNcube 4) + 43792 + Operational + + true + + + 2018-12-03 + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project description + https://www.esa.int/Education/ESEO + During its operational mission phase, ESEO will run the scientific experiments and test the various technology demonstrators designed and built by the students, and constantly monitor its own performance. + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=82 + ESEO has been coordinated by IARU + ESEO a été coordonné par l'IARU + + + + TLM 1 + 145895000 + + BPSK + 4800 bps + + + BPSK + 1200 bps + + + + + TLM 2 + 437000000 + + BPSK + 4800 bps + + + BPSK + 1200 bps + + + + + FM voice repeater + + 1263500000 + + + 145895000 + + FM + 67 + + + + + + + + + + + + + https://download.funcube.org.uk/ESEO_Dashboard_v1177.msi + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ESTELLE.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ESTELLE.xml new file mode 100644 index 00000000..32cca3dd --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ESTELLE.xml @@ -0,0 +1,19 @@ + + + + ESTELLE + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 580000000 + + 1Mbps-10Mbps GFSK BPSK + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Eagle-1 (BeakerSat-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Eagle-1 (BeakerSat-1).xml new file mode 100644 index 00000000..b68ec69a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Eagle-1 (BeakerSat-1).xml @@ -0,0 +1,19 @@ + + + + Eagle-1 (BeakerSat-1) + 39437 + 2013-066X + Not operational + + + Main + 437465000 + + GFSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Eagle-2 ($50SAT MO-76).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Eagle-2 ($50SAT MO-76).xml new file mode 100644 index 00000000..bedeb9a2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Eagle-2 ($50SAT MO-76).xml @@ -0,0 +1,36 @@ + + + + Eagle-2 ($50SAT MO-76) + 39436 + Decayed + MO-76 + Draft + 2015-05-30 + + project website + http://www.50dollarsat.info/ + $50SAT (aka Eagle-2 prelaunch) MO-76 was launched aboard Unisat-5 on November 21, 2013 from Dombarovsky, Russia on a Dnepr vehicle. This project is a joint effort involving Professor Bob Twiggs, Morehead State University, Howie DeFelice, AB2S, Michael Kirkhart, KD8QBA, and Stuart Robinson, GW7HPW. (Source AMSAT-NA) + + + Yahoo group Discution + https://groups.yahoo.com/neo/groups/50dollarsat/conversations/topics + + + + Main + 437505000 + + GFSK + 9600 + + + CW + + + RTTY + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_EagleSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_EagleSat-1.xml new file mode 100644 index 00000000..07008ffb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_EagleSat-1.xml @@ -0,0 +1,21 @@ + + + + EagleSat-1 + 43018 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437645000 + + AFSK + 1200bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_EcAMSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_EcAMSat.xml new file mode 100644 index 00000000..29b4017b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_EcAMSat.xml @@ -0,0 +1,21 @@ + + + + EcAMSat + 43019 + Operational + Draft + 2019-08-07 + + + Beacon + 437095000 + + AFSK + 1200bps + + KE6QLL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_EduSat-1 (BIRD-N).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_EduSat-1 (BIRD-N).xml new file mode 100644 index 00000000..bf0dbbf5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_EduSat-1 (BIRD-N).xml @@ -0,0 +1,29 @@ + + + + EduSat-1 (BIRD-N) + 42824 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_EnduroSat One.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_EnduroSat One.xml new file mode 100644 index 00000000..4f09e89b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_EnduroSat One.xml @@ -0,0 +1,24 @@ + + + + EnduroSat One + 43551 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + GMSK + 9600bps + + LZ0AMS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_EntrySat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_EntrySat.xml new file mode 100644 index 00000000..18bf291e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_EntrySat.xml @@ -0,0 +1,67 @@ + + + + EntrySat + 44429 + Not operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=334 + Nicolas Nolhier F5MDY + 2013-10-15 + 2015-01-08 + nolhier@laas.fr.nospam + + + 2019-07-03 + ISS + + + Verified + 2020-05-24+02:00 + + Mission description + https://www.csut.eu/en/project/entrysat/ + The objective of the mission, to study the atmospheric re-entry of debris, is well described, the scientific requirements and the system requirements are fully specified. However, given the short duration of analysis of atmospheric re-entry phenomena, this mission is ambitious and requires additional technical studies to show its full feasibility. +The mission analysis is to consolidate, when information about the orbit and the launcher will be well known. + + + + Mission description + https://websites.isae-supaero.fr/entrysat/ + + + + + Telemetry 1 + 436950000 + + BPSK + 9k6 + + ON02FR + + + + + EntrySat reception + https://www.csut.eu/en/recevoir-entrysat/ + + + AMSAT-F : Kaitai file Description (*.ksy) + https://code.electrolab.fr/xtof/telemetrydescription/tree/master/EntrySat + + + SatNogGS: Kaitai file Description (*.ksy) + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/entrysat.ksy + + + + + + + http://site.amsat-f.org/entrysat/ + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Es'Hail-2 (Phase-4A QO-100).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Es'Hail-2 (Phase-4A QO-100).xml new file mode 100644 index 00000000..948193cf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Es'Hail-2 (Phase-4A QO-100).xml @@ -0,0 +1,58 @@ + + + + Es'Hail-2 (Phase-4A QO-100) + 43700 + Operational + QO-100 + Verified + 2019-08-07 + + P4A AMSAT DL Forum + https://forum.amsat-dl.org/index.php?board/3-es-hail-2-amsat-phase-4-a/ + AMSAT DL Forum for Phase 4A payload + Forum de l'AMSAT-DL pour Phase 4A + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=630 + AMSAT P4-A has been coordinated by IARU + AMSAT P4-A a été coordonné par l'IARU + + + + Beacon + + + Linear transponder + + + + + + Narrowband Linear transponder + + 2400050000 + 2400300000 + + + 10489550000 + 10489800000 + + + + + Wideband digital transponder + + 2401500000 + 2409500000 + + + 10491000000 + 10499000000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_EstCube-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_EstCube-1.xml new file mode 100644 index 00000000..08054837 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_EstCube-1.xml @@ -0,0 +1,26 @@ + + + + EstCube-1 + 39161 + 2013-021C + Not operational + + Draft + 2019-08-05 + + + Main + 437254000 + + GMSK + 9600 + + + CW + + ES5E-11 ES5E/S + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ExAlta-1 (CA03).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ExAlta-1 (CA03).xml new file mode 100644 index 00000000..508b5443 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ExAlta-1 (CA03).xml @@ -0,0 +1,29 @@ + + + + ExAlta-1 (CA03) + 42734 + Decayed + Draft + 2019-08-07 + + + Beacon + 436705000 + + 4k8*/9k6/19k2 GMSK + 4800 + + + 4k8*/9k6/19k2 GMSK + 9600 + + + 4k8*/9k6/19k2 GMSK + 19200 + + ON03CA + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ExoCube.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ExoCube.xml new file mode 100644 index 00000000..e9138f89 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ExoCube.xml @@ -0,0 +1,23 @@ + + + + ExoCube + 40380 + 2015-003E + Operational + + + Main + 437270000 + + FSK + 9600 + + + CW + + KK6HGC XO3 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_F-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_F-1.xml new file mode 100644 index 00000000..689ce89a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_F-1.xml @@ -0,0 +1,24 @@ + + + + F-1 + 38855 + Decayed + Verified + 2020-05-24+02:00 + + + Main + 437485000 + + AFSK + 1200 + + + CW + + XV1VN + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FACSAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FACSAT.xml new file mode 100644 index 00000000..21c1632a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FACSAT.xml @@ -0,0 +1,46 @@ + + + + FACSAT + 43721 + Operational + + true + + + India + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=635 + FACSAT Hello World has been coordinated by IARU + FACSAT Hello World a été coordonné par l'IARU + + + + Telemetry 1 + 437350000 + + GMSK + 9k6 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-II FU3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-II FU3.xml new file mode 100644 index 00000000..11fb36b5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-II FU3.xml @@ -0,0 +1,24 @@ + + + + FIREBIRD-II FU3 + 40377 + 2015-003B + Operational + + true + + 2020-05-24+02:00 + + + Main + 437395000 + + FSK + 19200 + + K7MSU + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-II FU4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-II FU4.xml new file mode 100644 index 00000000..d87a4df4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-II FU4.xml @@ -0,0 +1,24 @@ + + + + FIREBIRD-II FU4 + 40378 + 2015-003C + Operational + + true + + 2020-05-24+02:00 + + + Main + 437219000 + + FSK + 19200 + + K7MSU + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-U1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-U1.xml new file mode 100644 index 00000000..9351bc82 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-U1.xml @@ -0,0 +1,20 @@ + + + + FIREBIRD-U1 + 39463 + 2013-072B + Not operational + + + Main + 437405000 + + FSK + 19200 + + K7MSU + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-U2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-U2.xml new file mode 100644 index 00000000..d2d3aaa4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FIREBIRD-U2.xml @@ -0,0 +1,20 @@ + + + + FIREBIRD-U2 + 39464 + 2013-072C + Not operational + + + Main + 437230000 + + FSK + 19200 + + K7MSU + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FITSAT-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FITSAT-1.xml new file mode 100644 index 00000000..fc7d9d06 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FITSAT-1.xml @@ -0,0 +1,19 @@ + + + + FITSAT-1 + 38853 + Decayed + 2020-05-24+02:00 + + + Main + 437250000 + + 1200bps/1152kbps + + JG6YEW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FMN-1 (FengMaNiu-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FMN-1 (FengMaNiu-1).xml new file mode 100644 index 00000000..7bdf63bc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FMN-1 (FengMaNiu-1).xml @@ -0,0 +1,39 @@ + + + + FMN-1 (FengMaNiu-1) + 43192 + Operational + + true + + INIT + 2020-05-24+02:00 + + CITATION NEEDED - https://xkcd.com/285/ + + + + + + Beacon + 435350000 + + BPSK + 9600bps + + BUAABJ + + + Repeater + + 145945000 + + + 435350000 + + FM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FO-12 (JAS-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-12 (JAS-1).xml new file mode 100644 index 00000000..0093c600 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-12 (JAS-1).xml @@ -0,0 +1,22 @@ + + + + FO-12 (JAS-1) + 16909 + Not operational + FO-12 + Draft + 2020-05-24+02:00 + + + Beacon + 435795000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FO-20(JAS-1b).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-20(JAS-1b).xml new file mode 100644 index 00000000..6b8f0e59 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-20(JAS-1b).xml @@ -0,0 +1,20 @@ + + + + FO-20(JAS-1b) + 20480 + 1990-013C + Not operational + FO-20 + + + Main + 435795000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FO-29(JAS-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-29(JAS-2).xml new file mode 100644 index 00000000..81643231 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-29(JAS-2).xml @@ -0,0 +1,22 @@ + + + + FO-29(JAS-2) + 24278 + 1996-046B + Operational + FO-29 + Draft + 2019-08-05 + + + Main + 4357964000 + + CW + + 8J1JCS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FO-69(FASTRAC-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-69(FASTRAC-1).xml new file mode 100644 index 00000000..a2abf0e0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-69(FASTRAC-1).xml @@ -0,0 +1,29 @@ + + + + FO-69(FASTRAC-1) + 37227 + 2010-062F + Not operational + + + Main + 437342000 + + AFSK + 1200 + + FAST1 + + + Main + 437342000 + + FSK + 9600 + + FAST1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FO-70(FASTRAC-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-70(FASTRAC-2).xml new file mode 100644 index 00000000..04636d94 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FO-70(FASTRAC-2).xml @@ -0,0 +1,29 @@ + + + + FO-70(FASTRAC-2) + 37380 + 2010-062M + Not operational + + + Main + 145825000 + + AFSK + 1200 + + FAST2 + + + Main + 145825000 + + FSK + 9600 + + FAST2 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FUNcube-1 (AO-73).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FUNcube-1 (AO-73).xml new file mode 100644 index 00000000..1c8f54f0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FUNcube-1 (AO-73).xml @@ -0,0 +1,58 @@ + + + + FUNcube-1 (AO-73) + 39444 + 2013-066AE + Operational + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + project information page + https://funcube.org.uk/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=158 + + + + + BPSK + 145935000 + + BPSK + 1200 + + + + CW + 145815000 + + CW + + + + + Repeater + + 435130000 + 435150000 + + + 145950000 + 145970000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FalconSAT-3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FalconSAT-3.xml new file mode 100644 index 00000000..40ebf2f4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FalconSAT-3.xml @@ -0,0 +1,25 @@ + + + + FalconSAT-3 + 30776 + Operational + + true + + INIT + 2020-05-24+02:00 + + + Digipeater + + 145840000 + + + 435103000 + + 9600bps GMSK + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_First-MOVE.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_First-MOVE.xml new file mode 100644 index 00000000..f1376e98 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_First-MOVE.xml @@ -0,0 +1,53 @@ + + + + First-MOVE + 39439 + 2013-066Z + Operational + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=125 + + + + Mission information + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/first-move/ + First-MOVE On-Board Computer Damaged - As we posted on December 21st 2013, we are not receiving data beacons from First-MOVE anymore. In contrast to the nominal mode in which CW beacons and AX.25 beacons alternate every 60 seconds, we are now hearing only CW beacons every 60 seconds. After trying many different approaches to reset our on-board computer via telecommands we re-analyzed our current options again last week. This analysis resulted in the conclusion, that the on-board software has sustained irreparable damage. The fact that we are receiving CW beacons every 60 seconds indicates, that both the transceiver and the power supply are functioning properly. For the transceiver to return to the 60 second CW beacon mode, it has to be power cycled, since this mode cannot be activated by the on-board software. This means that there was definitively an interruption in the power supply. In case of an interruption, the computer should deactivate the 60 second CW beacon mode as the first task during the boot sequence. As this has obviously not happened, the only conclusion is, that the computer is not getting through the entire boot sequence, probably because it was damaged due to an erroneous write process on the memory chip. Since there is no way to upload new software to First-MOVE we see no possibility to continue the mission and perform the planned experiments. It seems that First-MOVE has become inactive after a very short lifetime. We will still receive the CW beacons, but we will not hear anything but his name. + + + + + Main + 145970000 + + BPSK + 1200 + + + CW + + MOVE1 + + + Repeater + + 435520000 + + + 145970000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FloripaSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FloripaSat-1.xml new file mode 100644 index 00000000..6732a8d2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FloripaSat-1.xml @@ -0,0 +1,77 @@ + + + + FloripaSat-1 + 44885 + Not operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 + Mauricio Sinigaglia PP5BMS + 2018-09-27 + 2018-10-23 + mauricio.sinigaglia@gmail.com.nospam + + + 2019-12-20 + CZ-4B launch vehicle from Taiyuan Satellite Launch Center + + INIT + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=646 + + + + + FloripaSat-1 web site + https://floripasat.ufsc.br/ + + + + + + VHF Beacon + 145900000 + + GFSK + 1200 + + + + + UHF Beacon + 436100000 + + GFSK + 2400 + + + + + Repeater + + 436100000 + + + 436100000 + + GFSK -2400 + + + + + INFORMATION FOR COMMUNICATING WITH FLORIPASAT-1 + https://floripasat.ufsc.br/communication-info/ + + + + + + + https://github.com/floripasat/grs/releases + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_FossaSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_FossaSat-1.xml new file mode 100644 index 00000000..ff5849c6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_FossaSat-1.xml @@ -0,0 +1,56 @@ + + + + FossaSat-1 + 44829 + Not operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=652 + Julian Ismael Fernandez Barcellona EA4HCD + 2018-10-29 + 2019-05-27 + julian.ismael.fernandez@gmail.com.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + INIT + 2020-05-24+02:00 + + The FossaSat-1 Pocketqube + https://fossa.systems/fossasat-1/ + + + + + + Beacon + 436700000 + + LORA + : Bandwidth 125 kHz , Spreading factor 11 , Coding rate 4/8 , Sync word 0x0F0F + + + RTTY + Frequency shift 182 Hz, Baudrate 45 baud , Encoding ITA2 (5-bit, aka “Baudot code”), Single stop bit, no parity + + + + + + + To use and decode the FossaSat-1 Satellite, please consult our ground station database and instructional guides. + http://groundstationdatabase.com/index.php + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Fox-1B (RadFxSat AO-91).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Fox-1B (RadFxSat AO-91).xml new file mode 100644 index 00000000..73ed3fc3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Fox-1B (RadFxSat AO-91).xml @@ -0,0 +1,35 @@ + + + + Fox-1B (RadFxSat AO-91) + 43017 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 145960000 + + DUV + 200 Bps + + + + + FM voice repeater mode 1 + + 435250000 + + + 145960000 + + FM + 67 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_GEARRSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_GEARRSat-1.xml new file mode 100644 index 00000000..ae2f381f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_GEARRSat-1.xml @@ -0,0 +1,21 @@ + + + + GEARRSat-1 + 40456 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_GO-32(TechSat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_GO-32(TechSat).xml new file mode 100644 index 00000000..e957d90d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_GO-32(TechSat).xml @@ -0,0 +1,21 @@ + + + + GO-32(TechSat) + 25397 + 1998-043D + Operational + GO-32 + + + Main + 435225000 + + FSK + 9600 + + 4XTECH-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_GOMX-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_GOMX-1.xml new file mode 100644 index 00000000..aee156d9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_GOMX-1.xml @@ -0,0 +1,53 @@ + + + + GOMX-1 + 39430 + 2013-066Q + Operational + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=231 + + + + Twitter + https://gomspace.com/gomx-1.aspx + + + + + Main + 437250000 + + GMSK + 1200 + + + GMSK + 2400 + + + GMSK + 4800 + + + GMSK + 9600 + + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_GOMX-3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_GOMX-3.xml new file mode 100644 index 00000000..fa0f8f87 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_GOMX-3.xml @@ -0,0 +1,25 @@ + + + + GOMX-3 + 40949 + Decayed + Draft + 2019-08-07 + + + Beacon + 437250000 + + GMSK + 19200 + + + GMSK + 4800 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_GRAHAM (PhoneSat1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_GRAHAM (PhoneSat1).xml new file mode 100644 index 00000000..94fe66eb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_GRAHAM (PhoneSat1).xml @@ -0,0 +1,20 @@ + + + + GRAHAM (PhoneSat1) + 39142 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW-2 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_GRIFEX.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_GRIFEX.xml new file mode 100644 index 00000000..9ea43a73 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_GRIFEX.xml @@ -0,0 +1,24 @@ + + + + GRIFEX + 40379 + 2015-003D + Operational + + true + + 2020-05-24+02:00 + + + Main + 438480000 + + GMSK + 1200 + + KD8SPS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Galassia.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Galassia.xml new file mode 100644 index 00000000..f707bc50 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Galassia.xml @@ -0,0 +1,21 @@ + + + + Galassia + 41170 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 145800000 + + GMSK + 9600 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_GeneSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_GeneSat-1.xml new file mode 100644 index 00000000..555dbaa7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_GeneSat-1.xml @@ -0,0 +1,20 @@ + + + + GeneSat-1 + 29655 + Decayed + 2020-05-24+02:00 + + + Main + 437065000 + + AFSK + 1200 + + KE7EGC + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Goliat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Goliat.xml new file mode 100644 index 00000000..cbc4d596 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Goliat.xml @@ -0,0 +1,22 @@ + + + + Goliat + 38085 + Not operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + YO7MJF + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HA-1 (Zhou Enlai Huai'An-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HA-1 (Zhou Enlai Huai'An-1).xml new file mode 100644 index 00000000..7fc21a36 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HA-1 (Zhou Enlai Huai'An-1).xml @@ -0,0 +1,45 @@ + + + + HA-1 (Zhou Enlai Huai'An-1) + 43156 + Operational + INIT + 2019-08-07 + + CITATION NEEDED - https://xkcd.com/285/ + + + + + + Beacon + 437350000 + + BPSK + 9600bps + + BI4ST + + + Beacon + 437644000 + + BPSK + 9600bps + + BI4ST + + + Repeater + + 145930000 + + + 436950000 + + FM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HAUSAT-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HAUSAT-1.xml new file mode 100644 index 00000000..fa2d2836 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HAUSAT-1.xml @@ -0,0 +1,21 @@ + + + + HAUSAT-1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437465000 + + AFSK + 1200 + + D90HP + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HAVELSAT (TR02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HAVELSAT (TR02).xml new file mode 100644 index 00000000..c5b2f604 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HAVELSAT (TR02).xml @@ -0,0 +1,30 @@ + + + + HAVELSAT (TR02) + 42701 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 436845000 + + GMSK + 9600 bps + + + + + Beacon + 436843500 + + CW + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HO-59(HITSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HO-59(HITSAT).xml new file mode 100644 index 00000000..32aaa741 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HO-59(HITSAT).xml @@ -0,0 +1,20 @@ + + + + HO-59(HITSAT) + 29484 + Decayed + 2020-05-24+02:00 + + + Main + 437275000 + + AFSK + 1200 + + JR8YJT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HO-68(XW-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HO-68(XW-1).xml new file mode 100644 index 00000000..cafad13f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HO-68(XW-1).xml @@ -0,0 +1,30 @@ + + + + HO-68(XW-1) + 36122 + 2009-072B + Operational + + + Main + 435790000 + + SSBinvertingCW + + BJ1SA-11-12 + + + Main + 435790000 + + FM_tone67Hz + + + CW + + BJ1SA-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HORYU-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HORYU-4.xml new file mode 100644 index 00000000..14bb3481 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HORYU-4.xml @@ -0,0 +1,51 @@ + + + + HORYU-4 + 41340 + Not operational + + true + + + 2016-02-17 + TANEGASHIMA SPACE CENTER + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=434 + has been coordinated by IARU + a été coordonné par l'IARU + + + + Beacon + 437375000 + + CW + + + + AFSK + 1200 + + + GFSK + 9600 + + JG6YBW + + + Beacon S + 2400300000 + + BPSK + 10000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HawaiiSat1 (HiakaSat1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HawaiiSat1 (HiakaSat1).xml new file mode 100644 index 00000000..35af8d12 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HawaiiSat1 (HiakaSat1).xml @@ -0,0 +1,28 @@ + + + + HawaiiSat1 (HiakaSat1) + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437270500 + + GFSK + 9600 + + + + Main + 145980500 + + GFSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HawkSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HawkSat-1.xml new file mode 100644 index 00000000..ad8a41fc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HawkSat-1.xml @@ -0,0 +1,19 @@ + + + + HawkSat-1 + 35004 + Not operational + + + Main + 437345000 + + AFSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HiNCube.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HiNCube.xml new file mode 100644 index 00000000..4ca6b600 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HiNCube.xml @@ -0,0 +1,18 @@ + + + + HiNCube + 39445 + 2013-066AF + Not operational + + + Main + 438305000 + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Ho'oponopono-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Ho'oponopono-2.xml new file mode 100644 index 00000000..7efe9e26 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Ho'oponopono-2.xml @@ -0,0 +1,19 @@ + + + + Ho'oponopono-2 + 39403 + 2013-064Z + Not operational + + + Main + 427220000 + + GMSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Hoopoe (IL01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Hoopoe (IL01).xml new file mode 100644 index 00000000..8289d1cf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Hoopoe (IL01).xml @@ -0,0 +1,21 @@ + + + + Hoopoe (IL01) + 42718 + Decayed + Draft + 2019-08-07 + + + Beacon + 437740000 + + BPSK + 9600 bps + + ON01IL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Horyu-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Horyu-2.xml new file mode 100644 index 00000000..fc5e148e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Horyu-2.xml @@ -0,0 +1,27 @@ + + + + Horyu-2 + 38340 + 2012-025D + Not operational + + true + + 2020-05-24+02:00 + + + Main + 437378000 + + FSK + 1200 + + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Humsat-D.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Humsat-D.xml new file mode 100644 index 00000000..c269db56 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Humsat-D.xml @@ -0,0 +1,18 @@ + + + + Humsat-D + 39433 + 2013-066T + Not operational + + + Main + 437325000 + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_HuskySat-1 - HO-107.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_HuskySat-1 - HO-107.xml new file mode 100644 index 00000000..b3fc77f2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_HuskySat-1 - HO-107.xml @@ -0,0 +1,73 @@ + + + + HuskySat-1 - HO-107 + 45119 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=604 + Jeffrey Chrisope KI7ORW + 2018-03-07 + 2018-04-09 + jeffchrisope@live.com.nospam + + + 2019-11-02 + Wallops Flight Facility,USA + + HuskySat-OSCAR 107 (HO-107) + Verified + 2020-05-16 + + Project Information page + https://sites.google.com/uw.edu/huskysatellitelab/huskysat-1 + + + + Beacon + 435800000 + + BPSK + 1200 + + + + + Beacon Experimental + 24049000000 + + + + + + + + V/U + + 145910000 + 145940000 + + + 435810000 + 435840000 + + + true + + + + + FoxTLM is used for this satellite + https://www.amsat.org/tlm/leaderboard.php?id=0 + + + + + + cubesat@uw.edu + https://www.g0kla.com/foxtelem/index.php + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ICEcube1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ICEcube1.xml new file mode 100644 index 00000000..77548136 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ICEcube1.xml @@ -0,0 +1,21 @@ + + + + ICEcube1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + FSK + 9600 + + W2CXM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ICEcube2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ICEcube2.xml new file mode 100644 index 00000000..5c8f1ea8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ICEcube2.xml @@ -0,0 +1,21 @@ + + + + ICEcube2 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + FSK + 9600 + + N2VR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ICUBE-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ICUBE-1.xml new file mode 100644 index 00000000..4e00483d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ICUBE-1.xml @@ -0,0 +1,18 @@ + + + + ICUBE-1 + 39432 + 2013-066S + Not operational + + + Main + 145947000 + + 1200bps BPSK/FM-DSB_Transponder + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_INS-1C.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_INS-1C.xml new file mode 100644 index 00000000..8f52fa09 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_INS-1C.xml @@ -0,0 +1,21 @@ + + + + INS-1C + 43116 + Operational + Draft + 2020-05-24+02:00 + + + Beacon + 435080000 + + FSK + 1200 bps + + INDUSR-10 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_IO-26(ITAMSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_IO-26(ITAMSAT).xml new file mode 100644 index 00000000..c30e8934 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_IO-26(ITAMSAT).xml @@ -0,0 +1,21 @@ + + + + IO-26(ITAMSAT) + 22826 + 1993-061D + Not operational + IO-26 + + + Main + 435791000 + + PSK + 1200 + + ITMSAT-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_IO-86 (LAPAN-A2 ORARI).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_IO-86 (LAPAN-A2 ORARI).xml new file mode 100644 index 00000000..5b45324b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_IO-86 (LAPAN-A2 ORARI).xml @@ -0,0 +1,45 @@ + + + + IO-86 (LAPAN-A2 ORARI) + 40931 + Operational + + true + + IO-86 + INIT + 2020-05-24+02:00 + + + Beacon + 437325000 + + AFSK + 1200 Bps + + YBSAT/YBOX-1 + + + Repeater + + 145825000 + + + 145825000 + + APRS + + + Repeater + + 145880000 + + + 435880000 + + FM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ION.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ION.xml new file mode 100644 index 00000000..d3121f2a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ION.xml @@ -0,0 +1,21 @@ + + + + ION + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437505000 + + AFSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_IPEX.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_IPEX.xml new file mode 100644 index 00000000..20c8a79f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_IPEX.xml @@ -0,0 +1,23 @@ + + + + IPEX + 39471 + 2013-072K + Not operational + + + Main + 437270000 + + GMSK + 9600 + + + CW + + KJ6KSL-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ISS.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ISS.xml new file mode 100644 index 00000000..127b9b98 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ISS.xml @@ -0,0 +1,53 @@ + + + + ISS + 25544 + 1998-067A + Operational + Draft + 2019-08-05 + + + Main + 0 + + Voice(Reg1) + + NA1SS + + + Main + 0 + + Voice(Reg23) + + NA1SS + + + Main + 145800000 + + Packet + + RS0ISS + + + Main + 437550000 + + APRS + + RS0ISS + + + Main + 145825000 + + APRS + + RS0ISS-4-11 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ISX (CP-11).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ISX (CP-11).xml new file mode 100644 index 00000000..ebbf425d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ISX (CP-11).xml @@ -0,0 +1,25 @@ + + + + ISX (CP-11) + 43856 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 437150000 + + FSK + 9600 bps + + + CW + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ISX-SR1 -ISX - CP11.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ISX-SR1 -ISX - CP11.xml new file mode 100644 index 00000000..4531dd3a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ISX-SR1 -ISX - CP11.xml @@ -0,0 +1,56 @@ + + + + ISX-SR1 -ISX - CP11 + 0 + To be launch + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=514 + + + + Project page + http://www.polysat.org/in-development/ + + + + + Telemetry UHF + 437150000 + + FSK + 9600 bauds + + + + + Telemetry 2 + 5840000000 + + QPSK + 10 Mb + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ITASAT 1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ITASAT 1.xml new file mode 100644 index 00000000..6a0e43e8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ITASAT 1.xml @@ -0,0 +1,61 @@ + + + + ITASAT 1 + 43786 + Operational + + true + + + + + + Verified + 2020-05-24+02:00 + + project Web site + http://www.itasat.ita.br/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=435 + ITASAT 1 has been coordinated by IARU + ITASAT 1 a été coordonné par l'IARU + + + + Telemetry 1 + 145860000 + + BPSK + 1200 + + + + + Telemetry 1 + 2400150000 + + BPSK + 14400 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ITF-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ITF-1.xml new file mode 100644 index 00000000..99f7ef81 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ITF-1.xml @@ -0,0 +1,19 @@ + + + + ITF-1 + 39573 + Decayed + 2020-05-24+02:00 + + + Main + 437525000 + + CW + + JQ1ZLO + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ITF-2 (TO-89).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ITF-2 (TO-89).xml new file mode 100644 index 00000000..0f17f1bc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ITF-2 (TO-89).xml @@ -0,0 +1,26 @@ + + + + ITF-2 (TO-89) + 41932 + Decayed + TO-89 + Draft + 2019-08-07 + + + Beacon + 437525000 + + FM CW + 1200 bps + + + CW + 0 + + JQ1ZTK + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ITU-pSat1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ITU-pSat1.xml new file mode 100644 index 00000000..1ac6fda9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ITU-pSat1.xml @@ -0,0 +1,27 @@ + + + + ITU-pSat1 + 35935 + 2009-051E + Operational + + true + + 2020-05-24+02:00 + + + Main + 437325000 + + GFSK + 19200 + + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_IceCube.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_IceCube.xml new file mode 100644 index 00000000..2b212e1e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_IceCube.xml @@ -0,0 +1,21 @@ + + + + IceCube + 42705 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_IiNUSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_IiNUSat.xml new file mode 100644 index 00000000..d76413e3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_IiNUSat.xml @@ -0,0 +1,19 @@ + + + + IiNUSat + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 436915000 + + 1k2 9k6 2FSK + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_InflateSail (GB06).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_InflateSail (GB06).xml new file mode 100644 index 00000000..1fd9ebf1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_InflateSail (GB06).xml @@ -0,0 +1,21 @@ + + + + InflateSail (GB06) + 42770 + Decayed + Draft + 2019-08-07 + + + Beacon + 436060000 + + BPSK + 1200bps + + ON06GB + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_InnoSAT-2 .xml b/ModuleSatelliteDatabase/src/test/data/in/AL_InnoSAT-2 .xml new file mode 100644 index 00000000..640f731c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_InnoSAT-2 .xml @@ -0,0 +1,46 @@ + + + + InnoSAT-2 + 43738 + Operational + + true + + + India + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=548 + InnoSAT-2 has been coordinated by IARU + InnoSAT-2 a été coordonné par l'IARU + + + + Telemetry 1 + 437450000 + + + + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Irazu.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Irazu.xml new file mode 100644 index 00000000..c070c290 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Irazu.xml @@ -0,0 +1,21 @@ + + + + Irazu + 43468 + Operational + Draft + 2019-08-07 + + + Beacon + 436500000 + + FSK + 9600bps + + TI0IRA + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Irvine 02.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Irvine 02.xml new file mode 100644 index 00000000..9483a557 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Irvine 02.xml @@ -0,0 +1,49 @@ + + + + Irvine 02 + 43789 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2018-10-29 + + Project + https://www.irvinecubesat.org/irvine02 + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 + Irvine 02 has been coordinated by IARU + Irvine 02a été coordonné par l'IARU + + + + Telemetry 1 + 437450000 + + FSK + 9600 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Irvine.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Irvine.xml new file mode 100644 index 00000000..a372343f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Irvine.xml @@ -0,0 +1,45 @@ + + + + Irvine + 43693 + 2018-088D + Operational + + true + + + + + + Verified + 2020-05-24+02:00 + + + Telemetry 1 + 437800000 + + FSK + 9600 + + + CW + + + WI2XPH + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_JAISAT-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_JAISAT-1.xml new file mode 100644 index 00000000..2847d6db --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_JAISAT-1.xml @@ -0,0 +1,48 @@ + + + + JAISAT-1 + 44419 + Operational + + true + + Draft + 2020-05-24+02:00 + + Information page + http://www.rast.or.th/jaisat + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=521 + + + + Beacon + 4435325000 + + CW + + + + GMSK + 4800 + + + + + Transpondeur + + 145935000 + 145965000 + + + 435935000 + 435965000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_JY1SAT -JO-97.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_JY1SAT -JO-97.xml new file mode 100644 index 00000000..8aed8c40 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_JY1SAT -JO-97.xml @@ -0,0 +1,69 @@ + + + + JY1SAT -JO-97 + 43803 + Operational + + true + + + 2018-12-03 + Vandenberg Air Force Base, California + + Jordan-OSCAR 97 (JO-97) + Verified + 2020-05-24+02:00 + + JY1SAT launch information and Dashboard + https://funcube.org.uk/2018/11/15/jy1sat/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=554 + JY1SAT has been coordinated by IARU + JY1SAT a été coordonné par l'IARU + + + + FUNcube telemetry + 145840000 + + BPSK + 1200 + + + SSDV + + + JY1 + + + Main + + 435100000 + 435120000 + + + 145855000 + 145875000 + + SSB/CW + yes + + + + + Telemetry dashboard + http://data2.amsat-uk.org/ui/jy1sat-fm + + + + + + operations@funcube.org.uk + https://download.funcube.org.uk/JY11Sat_Dashboard_v1160.msi + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Jugnu.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Jugnu.xml new file mode 100644 index 00000000..ccac9e1e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Jugnu.xml @@ -0,0 +1,19 @@ + + + + Jugnu + 37839 + 2011-058B + Operational + + + Main + 4372759000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Juvenile-1F(Shaonian-Xing).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Juvenile-1F(Shaonian-Xing).xml new file mode 100644 index 00000000..f43f6884 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Juvenile-1F(Shaonian-Xing).xml @@ -0,0 +1,24 @@ + + + + Juvenile-1F(Shaonian-Xing) + 43199 + Operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 436370000 + + BPSK + 9600 bps + + MXSAT-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_K2SAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_K2SAT.xml new file mode 100644 index 00000000..e85ff684 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_K2SAT.xml @@ -0,0 +1,68 @@ + + + + K2SAT + 43761 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=552 + K2SAT has been coordinated by IARU + K2SAT a été coordonné par l'IARU + + + K2SAT S-band image receiver + https://destevez.net/2018/07/k2sat-s-band-image-receiver/ + Technical article from DANIEL ESTÉVEZ + Article technique de DANIEL ESTÉVEZ + + + + Telemetry 1 + 435835000 + + BPSK + 9600 + + + + + Telemetry 2 + 2404000000 + + QPSK + 2 Mb + + + + + FM voice repeater + + 145980000 + + + 436225000 + + FM + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KAGAYAKI.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KAGAYAKI.xml new file mode 100644 index 00000000..c3a7abcb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KAGAYAKI.xml @@ -0,0 +1,23 @@ + + + + KAGAYAKI + 33495 + 2009-002D + Not operational + + + Main + 437375000 + + FSK + 9600 + + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KAITUO-1B (CAS-3G DCBB).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KAITUO-1B (CAS-3G DCBB).xml new file mode 100644 index 00000000..a7dad0a5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KAITUO-1B (CAS-3G DCBB).xml @@ -0,0 +1,30 @@ + + + + KAITUO-1B (CAS-3G DCBB) + 40912 + Operational + Draft + 2019-08-07 + + + Beacon + 437950000 + + GMSK + 9600 + + BJ1SH + + + Beacon + 145475000 + + GMSK + 9600 + + BJ1SH + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KALAMSAT-V2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KALAMSAT-V2.xml new file mode 100644 index 00000000..a630ecb2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KALAMSAT-V2.xml @@ -0,0 +1,21 @@ + + + + KALAMSAT-V2 + 43948 + Unknown + Draft + 2019-08-07 + + + Beacon + 436500000 + + + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KAUSAT-5.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KAUSAT-5.xml new file mode 100644 index 00000000..9fb2aca0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KAUSAT-5.xml @@ -0,0 +1,30 @@ + + + + KAUSAT-5 + 43135 + Unknown + INIT + 2019-08-07 + + + Beacon + 437465000 + + FSK + 9600 Bps + + + + + Beacon 2 + 2413000000 + + MSK + 115200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KAZSCISAT-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KAZSCISAT-1.xml new file mode 100644 index 00000000..6b486a36 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KAZSCISAT-1.xml @@ -0,0 +1,21 @@ + + + + KAZSCISAT-1 + 43787 + Operational + Draft + 2019-08-07 + + + Beacon + 435500000 + + GMSK + 9600bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KKS-1(KISEKI).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KKS-1(KISEKI).xml new file mode 100644 index 00000000..a061cd11 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KKS-1(KISEKI).xml @@ -0,0 +1,23 @@ + + + + KKS-1(KISEKI) + 33499 + 2009-002H + Operational + + + Main + 437385000 + + AFSK + 1200 + + + CW + + JQ1YYY + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KO-23(KITSAT-A).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KO-23(KITSAT-A).xml new file mode 100644 index 00000000..a36356fb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KO-23(KITSAT-A).xml @@ -0,0 +1,21 @@ + + + + KO-23(KITSAT-A) + 22077 + 1992-052B + Not operational + KO-23 + + + Main + 435175000 + + FSK + 9600 + + HL01-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KO-25(KITSAT-B).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KO-25(KITSAT-B).xml new file mode 100644 index 00000000..2d3383f0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KO-25(KITSAT-B).xml @@ -0,0 +1,21 @@ + + + + KO-25(KITSAT-B) + 22828 + 1993-061F + Not operational + KO-25 + + + Main + 436500000 + + FSK + 9600 + + HL02-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KS-1Q.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KS-1Q.xml new file mode 100644 index 00000000..c2021ff1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KS-1Q.xml @@ -0,0 +1,21 @@ + + + + KS-1Q + 41847 + Operational + Drfat + 2020-05-24+02:00 + + + Beacon + 436500000 + + GMSK + 20000 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KUTESatPathfinder.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KUTESatPathfinder.xml new file mode 100644 index 00000000..9f1a6ba9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KUTESatPathfinder.xml @@ -0,0 +1,21 @@ + + + + KUTESatPathfinder + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + KC0RMW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Kaidun-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Kaidun-1.xml new file mode 100644 index 00000000..542784a1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Kaidun-1.xml @@ -0,0 +1,21 @@ + + + + Kaidun-1 + 41915 + Operational + Draft + 2019-08-07 + + + Beacon + 437600000 + + G3RUH BPSK + 1200 bps + + AXNWPU-4 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Karksat .xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Karksat .xml new file mode 100644 index 00000000..174573b0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Karksat .xml @@ -0,0 +1,57 @@ + + + + Karksat + 44427 + Operational + + true + + + 2019-04-17 + + + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=608 + coordinated by IARU + coordonné par l'IARU + + + Project Site + https://www.kraksat.pl/space/ + project page + site du projet + + + + Beacon + 435500000 + + AFSK + 1200 + + + AFSK + 9600 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KickSat-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KickSat-2.xml new file mode 100644 index 00000000..df7b02e4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KickSat-2.xml @@ -0,0 +1,21 @@ + + + + KickSat-2 + 44046 + Decayed + Draft + 2019-08-07 + + + Beacon + 437505000 + + FSK + 1200bps + + KD2BHC + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KickSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KickSat.xml new file mode 100644 index 00000000..c773ee85 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KickSat.xml @@ -0,0 +1,20 @@ + + + + KickSat + 39685 + Decayed + 2020-05-24+02:00 + + + Main + 437505000 + + 1200bps AFSK + 1200 + + KD2BHC + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Knacksat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Knacksat.xml new file mode 100644 index 00000000..679021db --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Knacksat.xml @@ -0,0 +1,55 @@ + + + + Knacksat + 43761 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + project pages + http://www.knacksat.space + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=520 + Knacksat has been coordinated by IARU + Knacksat a été coordonné par l'IARU + + + + FUNcube telemetry + 435635000 + + CW + + + + GFSK + 9600 + + + GFSK + 1200 + + HS0K + + + + + Hamradio Information + http://www.knacksat.space/amateur-radio + + + + + + knacksat@gmail.com + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_KySat-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_KySat-2.xml new file mode 100644 index 00000000..d06aefcc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_KySat-2.xml @@ -0,0 +1,19 @@ + + + + KySat-2 + 39384 + Not operational + + + Main + 437402000 + + FSK + 9600 + + KK4AJJ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LIBERTAD-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LIBERTAD-1.xml new file mode 100644 index 00000000..b605b4d1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LIBERTAD-1.xml @@ -0,0 +1,20 @@ + + + + LIBERTAD-1 + 31129 + 2007-012N + Not operational + + + Main + 437399000 + + AFSK + 1200 + + 5K3L + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LINK (KR01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LINK (KR01).xml new file mode 100644 index 00000000..8df6238f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LINK (KR01).xml @@ -0,0 +1,21 @@ + + + + LINK (KR01) + 42714 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 436030000 + + BPSK + 1200bps + + D80LW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LO-19(LUSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LO-19(LUSAT).xml new file mode 100644 index 00000000..30f3c272 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LO-19(LUSAT).xml @@ -0,0 +1,20 @@ + + + + LO-19(LUSAT) + 20442 + 1990-005G + Not operational + LO-19 + + + Main + 437125000 + + CW + + LUSAT-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LO-90 (LilacSat-1 CN02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LO-90 (LilacSat-1 CN02).xml new file mode 100644 index 00000000..058065f7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LO-90 (LilacSat-1 CN02).xml @@ -0,0 +1,32 @@ + + + + LO-90 (LilacSat-1 CN02) + 42725 + Operational + LO-90 + Draft + 2019-08-07 + + + Beacon + 436510000 + + BPSK + 9600bps + + ON02CN + + + FM Transpondeur + + 145985000 + + + 436510000 + + FM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LO-93 (DSLWP-A1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LO-93 (DSLWP-A1).xml new file mode 100644 index 00000000..007884fa --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LO-93 (DSLWP-A1).xml @@ -0,0 +1,40 @@ + + + + LO-93 (DSLWP-A1) + 43471 + Not operational + LO-93 + Draft + 2020-05-24+02:00 + + + Beacon + 436425000 + + 500/250bps GMSK + 0 + + BJ1SM + + + Beacon + 435425000 + + 500/250bps GMSK + 0 + + BJ1SM + + + Beacon + 2222810000 + + 500/250bps GMSK + 0 + + BJ1SM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LO-94 (DSLWP-A2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LO-94 (DSLWP-A2).xml new file mode 100644 index 00000000..52eaae33 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LO-94 (DSLWP-A2).xml @@ -0,0 +1,40 @@ + + + + LO-94 (DSLWP-A2) + 43472 + Operational + LO-94 + INIT + 2019-08-07 + + + Beacon + 436400000 + + 500/250bps GMSK + 0 + + BJ1SN + + + Beacon + 435400000 + + 500/250bps GMSK + 0 + + BJ1SN + + + Beacon + 2275220000 + + 500/250bps GMSK + 0 + + BJ1SN + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LQSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LQSat.xml new file mode 100644 index 00000000..a0d86692 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LQSat.xml @@ -0,0 +1,42 @@ + + + + LQSat + 40958 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon 1 + 437650000 + + 4k8 MSK + 4800 Bps + + + CW + 0 + + + + + Beacon + + MSK4k8 + 0 + + + + + Beacon + 2404035000 + + QPSK + 1Mbps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LUME-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LUME-1.xml new file mode 100644 index 00000000..63ff5e6a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LUME-1.xml @@ -0,0 +1,24 @@ + + + + LUME-1 + 43908 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437060000 + + GMSK + 4800bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Lambda-Sat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Lambda-Sat.xml new file mode 100644 index 00000000..9a779356 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Lambda-Sat.xml @@ -0,0 +1,19 @@ + + + + Lambda-Sat + 40458 + Not operational + 2020-05-24+02:00 + + + Main + 437462000 + + AFSK + 1200 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LightSail-A.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LightSail-A.xml new file mode 100644 index 00000000..19113635 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LightSail-A.xml @@ -0,0 +1,19 @@ + + + + LightSail-A + 40661 + Decayed + 2020-05-24+02:00 + + + Main + 437435000 + + FSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LightSail-B (now LightSail-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LightSail-B (now LightSail-2).xml new file mode 100644 index 00000000..e6bf5593 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LightSail-B (now LightSail-2).xml @@ -0,0 +1,47 @@ + + + + LightSail-B (now LightSail-2) + 44420 + Operational + + true + + + 2019-06-25 + + + + DRAFT + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=489 + LightSail-2 has been coordinated by IARU + LightSail-2 a été coordonné par l'IARU + + + + Telemetry 1 + 437025000 + + GMSK + 9k6 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LightSat (D-Star One).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LightSat (D-Star One).xml new file mode 100644 index 00000000..dacc8253 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LightSat (D-Star One).xml @@ -0,0 +1,30 @@ + + + + LightSat (D-Star One) + 44393 + Operational + INIT + 2019-08-07 + + + Beacon + 435700000 + + mobitex GMSK + 4800 Bps + + + + + Beacon + 435700000 + + mobitex GMSK + 9600 Bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LilacSat-2 (CAS-3H).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LilacSat-2 (CAS-3H).xml new file mode 100644 index 00000000..e788263c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LilacSat-2 (CAS-3H).xml @@ -0,0 +1,44 @@ + + + + LilacSat-2 (CAS-3H) + 40908 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437200000 + + 1k2/4k8*/9k6 AFSK/GFSK + 0 + + BJ1SI + + + Repeater + + 144350000 + + + 437250000 + + + + + Repeater + + 144390000 + + + 144390000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LitSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LitSat-1.xml new file mode 100644 index 00000000..25805a29 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LitSat-1.xml @@ -0,0 +1,30 @@ + + + + LitSat-1 + 39568 + Decayed + 2020-05-24+02:00 + + + Main + 145965000 + + SSB + + + + Main + 435138000 + + FSK + 9600 + + + CW + + LY1LS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LituanicaSAT-1 (LO-78).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LituanicaSAT-1 (LO-78).xml new file mode 100644 index 00000000..7ae43391 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LituanicaSAT-1 (LO-78).xml @@ -0,0 +1,30 @@ + + + + LituanicaSAT-1 (LO-78) + 39569 + Decayed + 2020-05-24+02:00 + + + Main + 435176000 + + FM_tone 670Hz + + + + Main + 437275000 + + FSK + 9600 + + + CW + + LY5N + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_LituanicaSAT-2 (LT01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_LituanicaSAT-2 (LT01).xml new file mode 100644 index 00000000..6e020032 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_LituanicaSAT-2 (LT01).xml @@ -0,0 +1,21 @@ + + + + LituanicaSAT-2 (LT01) + 42768 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437265000 + + FSK + 9600bps + + LY0LS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Lucky-7.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Lucky-7.xml new file mode 100644 index 00000000..4d05de29 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Lucky-7.xml @@ -0,0 +1,40 @@ + + + + Lucky-7 + 44406 + Operational + + true + + Verified + 2020-05-24+02:00 + + Information page + http://www.lucky7satellite.org/ + + + + Beacon + 437525000 + + GFSK + 4600 Bps + + + + + + + + + + + Telemetry description + http://www.lucky7satellite.org/download/Lucky-7_-_Amateur_Radio_Information.pdf + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_M-Cubed.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_M-Cubed.xml new file mode 100644 index 00000000..b8452094 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_M-Cubed.xml @@ -0,0 +1,25 @@ + + + + M-Cubed + 37855 + 2011-061F + Operational + + true + + Verified + 2020-05-24+02:00 + + + Main + 437485000 + + GMSKKISS + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_M6P.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_M6P.xml new file mode 100644 index 00000000..be9e34a2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_M6P.xml @@ -0,0 +1,21 @@ + + + + M6P + 44109 + Operational + Draft + 2019-08-07 + + + Beacon + 437265000 + + FSK + 9600 bps + + LY0LS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MAST.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MAST.xml new file mode 100644 index 00000000..fdd86159 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MAST.xml @@ -0,0 +1,19 @@ + + + + MAST + 31126 + 2007-012K + Not operational + + + Main + 0 + + FHSS + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MAYA-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MAYA-1.xml new file mode 100644 index 00000000..68baf30d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MAYA-1.xml @@ -0,0 +1,59 @@ + + + + MAYA-1 + 43590 + 1998-067PE + Operational + + true + + + 2018-08-10 + ISS + + + Verified + 2020-05-24+02:00 + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=564 + + + + + Main + 437375000 + + BPSK + 1200 + + + CW + + JG6YKM + + + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MCubed-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MCubed-2.xml new file mode 100644 index 00000000..05379004 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MCubed-2.xml @@ -0,0 +1,36 @@ + + + + MCubed-2 + 39469 + 2013-072H + Operational + + 2013-12-06 + Air Force Western Test Range + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=265 + + + + MCubed-2 recovery + http://www.ne.jp/asahi/hamradio/je9pel/mc2recov.htm + + + + + Main + 437485000 + + GMSK + 9600 + + NOCALL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MEROPE.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MEROPE.xml new file mode 100644 index 00000000..8cec8510 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MEROPE.xml @@ -0,0 +1,21 @@ + + + + MEROPE + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + K7MSU-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MINXSS 2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MINXSS 2.xml new file mode 100644 index 00000000..ba5c5c24 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MINXSS 2.xml @@ -0,0 +1,52 @@ + + + + MINXSS 2 + 41474 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project web site + http://lasp.colorado.edu/home/minxss/ + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=477 + MINXSS 2 has been coordinated by IARU + MINXSS 2 a été coordonné par l'IARU + + + + Telemetry 1 + 437250000 + + GMSK + 9600 + + + + + + + Ham radio information + http://lasp.colorado.edu/home/minxss/data/ + + + + + + + https://github.com/jmason86/MinXSS_Beacon_Decoder/releases + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MIR.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MIR.xml new file mode 100644 index 00000000..79410895 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MIR.xml @@ -0,0 +1,19 @@ + + + + MIR + 16609 + Decayed + 2020-05-24+02:00 + + + Main + 145985000 + + PSK + + R0MIR-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MO-30 (UNAMSAT-B).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MO-30 (UNAMSAT-B).xml new file mode 100644 index 00000000..29d56994 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MO-30 (UNAMSAT-B).xml @@ -0,0 +1,22 @@ + + + + MO-30 (UNAMSAT-B) + 24305 + Not operational + MO-30 + Draft + 2020-05-24+02:00 + + + Beacon + 435138000 + + BPSK + 1200bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MO-46(TiungSat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MO-46(TiungSat).xml new file mode 100644 index 00000000..8bd08b21 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MO-46(TiungSat).xml @@ -0,0 +1,21 @@ + + + + MO-46(TiungSat) + 26548 + 2000-057D + Not operational + MO-46 + + + Main + 437325000 + + FSK + 38400 + + MYSAT3-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MOVE II.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MOVE II.xml new file mode 100644 index 00000000..d190714d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MOVE II.xml @@ -0,0 +1,56 @@ + + + + MOVE II + 43780 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project + https://www.move2space.de/MOVE-II/ + MOVE-II is a CubeSat, a tiny satellite with dimensions of 10 x 10 x 13 cm and a mass of 1.2 kg. It is the second satellite of the Technical University of Munich (TUM) and the follow-up project of First-MOVE. The name MOVE is an acronym and stands for Munich Orbital Verification Experiment. The number “II” implies that it is the second of its series. + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=557 + MOVE II has been coordinated by IARU + MOVE II a été coordonné par l'IARU + + + + Telemetry 1 + 145950000 + + BPSK + 9600 + + + CW + + + DP0MOV + + + + + Hamradio information + https://www.move2space.de/MOVE-II/radio-amateurs/ + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MOVE-IIb.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MOVE-IIb.xml new file mode 100644 index 00000000..c4b348cb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MOVE-IIb.xml @@ -0,0 +1,29 @@ + + + + MOVE-IIb + 44398 + Unknown + Draft + 2019-08-07 + + Information page + https://www.move2space.de/MOVE-II/ + + + + Beacon + 145840000 + + QPSK + 12500 Bps + + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MYSAT-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MYSAT-1.xml new file mode 100644 index 00000000..ad66a373 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MYSAT-1.xml @@ -0,0 +1,32 @@ + + + + MYSAT-1 + 44045 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 435775000 + + BPSK + 1200 + + + BPSK + 4800 + + + BPSK + 9600 + + A68MY + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MaSat-1(MO-72).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MaSat-1(MO-72).xml new file mode 100644 index 00000000..07a8d0c5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MaSat-1(MO-72).xml @@ -0,0 +1,19 @@ + + + + MaSat-1(MO-72) + 38081 + Decayed + 2020-05-24+02:00 + + + Main + 437345000 + + 625/1250bpsGFSKC + + WHA5MASAT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MakerSat-0.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MakerSat-0.xml new file mode 100644 index 00000000..7b91b256 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MakerSat-0.xml @@ -0,0 +1,21 @@ + + + + MakerSat-0 + 43016 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Max Valier Sat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Max Valier Sat.xml new file mode 100644 index 00000000..84c5778f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Max Valier Sat.xml @@ -0,0 +1,57 @@ + + + + Max Valier Sat + 42778 + Operational + + true + + + 2017-06-23 + Satish Dhawan Space Centre. + + Verified + 2020-05-24+02:00 + + Information page + http://aprs.org/bricsat-2.html + + + + Radio Beacon + 145960000 + + CW + + + II3MV + + + Beacon Astrodev Helium-100 + 145860000 + + GMSK + + + II3MV + + + + + Amateur information + http://www.maxvaliersat.it/amateurradio + + + QSL Card Request + mailto:maxvaliersat[at]tfobz[dot]net. + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MeaHuaka'iVoyager.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MeaHuaka'iVoyager.xml new file mode 100644 index 00000000..e8e428b8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MeaHuaka'iVoyager.xml @@ -0,0 +1,21 @@ + + + + MeaHuaka'iVoyager + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_MicroMAS-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_MicroMAS-1.xml new file mode 100644 index 00000000..0899242a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_MicroMAS-1.xml @@ -0,0 +1,21 @@ + + + + MicroMAS-1 + 40457 + Unknown + Draft + 2019-08-07 + + + Beacon + 468000000 + + OQPSK + 1.5Mbit/s + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NCUBE2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NCUBE2.xml new file mode 100644 index 00000000..983046d2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NCUBE2.xml @@ -0,0 +1,20 @@ + + + + NCUBE2 + 28897 + 2005-043H + Not operational + + + Main + 437305000 + + FSK + 9600 + + LA1CUB + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NIUSAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NIUSAT.xml new file mode 100644 index 00000000..ab7d0932 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NIUSAT.xml @@ -0,0 +1,30 @@ + + + + NIUSAT + 42766 + Operational + INIT + 2019-08-07 + + + Beacon + 436000000 + + FSK + 1200 bps + + NIUOBT + + + Beacon + 2240000000 + + + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NJUST-1 (CN03).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NJUST-1 (CN03).xml new file mode 100644 index 00000000..63b565fc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NJUST-1 (CN03).xml @@ -0,0 +1,21 @@ + + + + NJUST-1 (CN03) + 42722 + Decayed + Draft + 2019-08-07 + + + Beacon + 436570000 + + BPSK + 1200bps + + BI4ST + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NMARS.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NMARS.xml new file mode 100644 index 00000000..342871c9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NMARS.xml @@ -0,0 +1,20 @@ + + + + NMARS + 29662 + Decayed + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NO-44(PCsat1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-44(PCsat1).xml new file mode 100644 index 00000000..32053218 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-44(PCsat1).xml @@ -0,0 +1,53 @@ + + + + NO-44(PCsat1) + 26931 + 2001-043C + Operational + + true + + NO-44 + Draft + 2020-05-24+02:00 + + + Main + 145827000 + + AFSK + 1200 + + (A)PCSAT-1 + + + Main + 145827000 + + FSK + 9600 + + (A)PCSAT-2 + + + Main + 144390000 + + AFSK + 1200 + + (B)PCSAT-11 + + + Main + 144390000 + + FSK + 9600 + + (B)PCSAT-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NO-45(Sapphire).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-45(Sapphire).xml new file mode 100644 index 00000000..1f44fe71 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-45(Sapphire).xml @@ -0,0 +1,21 @@ + + + + NO-45(Sapphire) + 26932 + 2001-043D + Not operational + NO-45 + + + Main + 437100000 + + AFSK + 1200 + + KE6QMD + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NO-60(RAFT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-60(RAFT).xml new file mode 100644 index 00000000..a463ef72 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-60(RAFT).xml @@ -0,0 +1,21 @@ + + + + NO-60(RAFT) + 29661 + Decayed + NO-60 + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + RAFT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NO-61(ANDE).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-61(ANDE).xml new file mode 100644 index 00000000..3eb63de1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-61(ANDE).xml @@ -0,0 +1,21 @@ + + + + NO-61(ANDE) + 29664 + Decayed + NO-61 + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + ANDE-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NO-62(FCAL).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-62(FCAL).xml new file mode 100644 index 00000000..a447f6e7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-62(FCAL).xml @@ -0,0 +1,21 @@ + + + + NO-62(FCAL) + 29667 + Decayed + NO-62 + 2020-05-24+02:00 + + + Main + 437385000 + + AFSK + 1200 + + KD4HBO + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NO-83 (BRICsat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-83 (BRICsat).xml new file mode 100644 index 00000000..f3f00791 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NO-83 (BRICsat).xml @@ -0,0 +1,32 @@ + + + + NO-83 (BRICsat) + 40655 + Not operational + AO-83 + INIT + 2020-05-24+02:00 + + + Beacon + 437975000 + + FSK PSK31 + 9600 bps + + BRCSAT + + + PSK31 + + 28120000 + + + 435350000 + + APRS 1200 bauds + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NPS-SCAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NPS-SCAT.xml new file mode 100644 index 00000000..0fd36692 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NPS-SCAT.xml @@ -0,0 +1,22 @@ + + + + NPS-SCAT + 39389 + Not operational + + + Main + 437525000 + + AFSK + 1200 + + + CW + + K6NPS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NUDT-PhoneSat (CAS-3I).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NUDT-PhoneSat (CAS-3I).xml new file mode 100644 index 00000000..cf101ebc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NUDT-PhoneSat (CAS-3I).xml @@ -0,0 +1,21 @@ + + + + NUDT-PhoneSat (CAS-3I) + 40900 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 437300000 + + GFSK + 96000 + + BJ1SJ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NUDTSat (CN06).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NUDTSat (CN06).xml new file mode 100644 index 00000000..9df1f735 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NUDTSat (CN06).xml @@ -0,0 +1,24 @@ + + + + NUDTSat (CN06) + 42787 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 436270000 + + BPSK + 9600 Bps + + BG7AKF + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NanoSail-D2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NanoSail-D2.xml new file mode 100644 index 00000000..b20176bb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NanoSail-D2.xml @@ -0,0 +1,20 @@ + + + + NanoSail-D2 + 37361 + Decayed + 2020-05-24+02:00 + + + Main + 437270000 + + AFSK + 1200 + + KE7EGC + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NanoSat-6 (Oculus-ASR).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NanoSat-6 (Oculus-ASR).xml new file mode 100644 index 00000000..35b1ab68 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NanoSat-6 (Oculus-ASR).xml @@ -0,0 +1,29 @@ + + + + NanoSat-6 (Oculus-ASR) + 44346 + Unknown + draft + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=266 + + + Project information page + http://aerospace.mtu.edu/spacecraft/oculus-asr + + + + Beacon + 437200000 + + GMSK + 9600 Bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Nanosat-7 (Prox-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Nanosat-7 (Prox-1).xml new file mode 100644 index 00000000..e66f352e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Nanosat-7 (Prox-1).xml @@ -0,0 +1,43 @@ + + + + Nanosat-7 (Prox-1) + 44339 + Unknown + draft + 2019-08-07 + + Information page + http://prox-1.gatech.edu/ + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=437 + Prox-1 has been coordinated by IARU + Prox-1 a été coordonné par l'IARU + + + + Beacon + 2306500000 + + FSK + 38400 Bps + + + + + + + + + + + Telemetry description + http://prox-1.gatech.edu/beacon.html + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NanosatC-Br1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NanosatC-Br1.xml new file mode 100644 index 00000000..b9004a93 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NanosatC-Br1.xml @@ -0,0 +1,51 @@ + + + + NanosatC-Br1 + 40024 + 2014-033Q + Operational + + 2014-06-19 + Orenburg, Russia + + Verified + 2019-05-06 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=209 + + + + NanosatC-Br1 + http://www.h-space-lab.org/php/duchifat1-en.php + + + + + Main + 145865000 + + BPSK + 1200 + + + CW + + NCBR1 + + + + + Operating for Amateur Radio + http://www.inpe.br/crs/nanosat/acompanhe/radio_amadores.php + + + Data acquisition page + http://www3.inpe.br/crs/nanosat/aquisicao_dados.php + + + http://www.dk3wn.info/files/ncbr1.zip + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Negai.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Negai.xml new file mode 100644 index 00000000..b775ac03 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Negai.xml @@ -0,0 +1,23 @@ + + + + Negai + 36575 + Decayed + 2020-05-24+02:00 + + + Main + 437305000 + + AFSK + 1200 + + + CW + + JQ1ZEX + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NepaliSat1 .xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NepaliSat1 .xml new file mode 100644 index 00000000..c7581a49 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NepaliSat1 .xml @@ -0,0 +1,57 @@ + + + + NepaliSat1 + 44331 + Operational + + true + + + 2019-04-17 + + + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=618 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + + + + Beacon + 435375000 + + CW + + + + GMSK + 9600 + + + + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Nexus.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Nexus.xml new file mode 100644 index 00000000..35e8e937 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Nexus.xml @@ -0,0 +1,74 @@ + + + + Nexus + 43937 + 2019-003F + Operational + + true + + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + Fuji-OSCAR 99 + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=535 + + + + + Project Web site + http://sat.aero.cst.nihon-u.ac.jp/nexus/E0_Top.html + + + + + + Telemetry 1 + 437075000 + + CW + + + + + + Telemetry 2 + 435900000 + + FSK AX.25 / π/4 shift QPSK CCSDS + + + + + + SSB/CW transponder + + 145900000 + 145930000 + + + 435880000 + 435910000 + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Nodes-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Nodes-1.xml new file mode 100644 index 00000000..6dd575fd --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Nodes-1.xml @@ -0,0 +1,21 @@ + + + + Nodes-1 + 41478 + Decayed + INIT + 2019-08-07 + + + Beacon + 437100000 + + AFSK + 1200 + + KE6QLL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Nodes-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Nodes-2.xml new file mode 100644 index 00000000..b2fe17f6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Nodes-2.xml @@ -0,0 +1,21 @@ + + + + Nodes-2 + 41477 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 437100000 + + AFSK + 1200 + + KE6QLL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NuSat-1 (LO-87).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NuSat-1 (LO-87).xml new file mode 100644 index 00000000..46c2c983 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NuSat-1 (LO-87).xml @@ -0,0 +1,46 @@ + + + + NuSat-1 (LO-87) + 41557 + Operational + + true + + LO-87 + Draft + 2020-05-24+02:00 + + + Beacon 1 + 145900000 + + SSB CW + 0 + + + + + Beacon 2 + 436445000 + + FSK + 19200 + + + + + Repeater + + 436935000 + 436965000 + + + 145935000 + 145965000 + + Linear + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_NuSat-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_NuSat-2.xml new file mode 100644 index 00000000..1234aa50 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_NuSat-2.xml @@ -0,0 +1,24 @@ + + + + NuSat-2 + 41558 + Operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 145900000 + + SSB CW + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_OO-38(OPAL).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_OO-38(OPAL).xml new file mode 100644 index 00000000..5001d1e8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_OO-38(OPAL).xml @@ -0,0 +1,21 @@ + + + + OO-38(OPAL) + 26063 + 2000-004C + Not operational + OO-38 + + + Main + 437100000 + + FSK + 9600 + + KF6RFX + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_OPS-Sat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_OPS-Sat.xml new file mode 100644 index 00000000..a6b64c6e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_OPS-Sat.xml @@ -0,0 +1,58 @@ + + + + OPS-Sat + 44878 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=478 + Allesandro Donati DJ0MDO + 2015-07-15 + 2015-10-04 + alessandro.donati@esa.int.nospam + + + 2019-12-18 + Kourou, French Guiana + + Verified + 2020-05-24+02:00 + + Calling radio amateurs: help find OPS-SAT! + http://www.esa.int/Enabling_Support/Operations/Calling_radio_amateurs_help_find_OPS-SAT + + + + + OPS-SAT: your flying laboratory! + http://www.esa.int/Enabling_Support/Operations/OPS-SAT_your_flying_laboratory + + + + + + Beacon + 437200000 + + GMSK + 9600 + + + + + + + OPS-SAT UHF Handbook + https://github.com/esa/gr-opssat/blob/master/docs/os-uhf-specs.pdf + + + OPS-SAT UHF beacon reception report + https://docs.google.com/forms/d/e/1FAIpQLSfkHF_wN2IxBb2WNYm6RuA_iT6qJH4Hz_pA9hCbcp0AcG5TbA/viewform + + + https://github.com/esa/gr-opssat + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_OPUSAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_OPUSAT.xml new file mode 100644 index 00000000..f4aa2664 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_OPUSAT.xml @@ -0,0 +1,27 @@ + + + + OPUSAT + 39575 + Decayed + 2020-05-24+02:00 + + + Main + 437154000 + + AFSK + 1200 + + + GFSK + 9600 + + + CW + + JL3ZCA + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ORS-Squared.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ORS-Squared.xml new file mode 100644 index 00000000..e82e3424 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ORS-Squared.xml @@ -0,0 +1,20 @@ + + + + ORS-Squared + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437325000 + + GMSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_OSIRIS-3U.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_OSIRIS-3U.xml new file mode 100644 index 00000000..562ed2cf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_OSIRIS-3U.xml @@ -0,0 +1,28 @@ + + + + OSIRIS-3U + 43027 + Decayed + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437505000 + + GMSK + 9600 Bps + + + GMSK + 38400 Bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_OSSI-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_OSSI-1.xml new file mode 100644 index 00000000..54c9a62a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_OSSI-1.xml @@ -0,0 +1,24 @@ + + + + OSSI-1 + 39131 + Unknown + + Draft + 2019-08-05 + + + Main + 145980000 + + AFSK + 1200 + + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_OUFTI-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_OUFTI-1.xml new file mode 100644 index 00000000..ea9f94ec --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_OUFTI-1.xml @@ -0,0 +1,35 @@ + + + + OUFTI-1 + 41458 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 145980000 + + FSK + 9600 bps + + + CW + 0 + + OUFTI-1 + + + DSTAR + + 435045000 + + + 145950000 + + DSTAR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Orbital Factory 2 (OF-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Orbital Factory 2 (OF-2).xml new file mode 100644 index 00000000..1392b1d9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Orbital Factory 2 (OF-2).xml @@ -0,0 +1,51 @@ + + + + Orbital Factory 2 (OF-2) + 0 + To be launch + + Wallops Flight Facility, états unis + + + Draft + 2020-05-24+02:00 + + IARU information + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=685 + + + + + Beacon + 435040000 + + GMSK + 9600 + + + + + Beacon + 2426000000 + + QPSK + 3-5 Mbps + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_OrigamiSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_OrigamiSat-1.xml new file mode 100644 index 00000000..0a92e55c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_OrigamiSat-1.xml @@ -0,0 +1,61 @@ + + + + OrigamiSat-1 + 43933 + 2019-003B + Not operational + + true + + + 2019-01-18 + Centre spatial JAXA Uchinoura, Kagoshima, Japan + + FO-98 + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=591 + + + + + + Telemetry 1 + 437050500 + + AFSK + 1200 + + + CW + + + JS1YAX + + + Telemetry 2 + 5840000000 + + + 115kbps + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PACE.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PACE.xml new file mode 100644 index 00000000..e1b6c11c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PACE.xml @@ -0,0 +1,25 @@ + + + + PACE + 40022 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437485000 + + CW + 0 + + + AFSK + 1200bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PCSat2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PCSat2.xml new file mode 100644 index 00000000..e5e79bc8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PCSat2.xml @@ -0,0 +1,21 @@ + + + + PCSat2 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437975000 + + FSK + 9600 + + PC2TLM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PHOENIX (TW01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PHOENIX (TW01).xml new file mode 100644 index 00000000..a6690aac --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PHOENIX (TW01).xml @@ -0,0 +1,21 @@ + + + + PHOENIX (TW01) + 42706 + Decayed + Draft + 2019-08-07 + + + Beacon + 436915000 + + GMSK + 9600bps + + ON01TW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PHOENIX.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PHOENIX.xml new file mode 100644 index 00000000..537d3da5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PHOENIX.xml @@ -0,0 +1,61 @@ + + + + PHOENIX + 45258 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 + QB50 and National Cheng Kung University + 2013-10-15 + 2015-04-06 + bx1ad@ctarl.org.tw.nospam + + Draft + 2020-05-09 + + Project page + http://phxcubesat.asu.edu/ + + + Frequency coordination note + + 437350000 is used instead of 436915000. This frequency is also used by Quarman satellite. THe satellite allow a ping command + + + + Beacon + 437350000 + + GMSK + 9600 + + KIOO7Y - WJ2OXY + + + Ping Mode + + 437350000 + + + 437350000 + + + + + + + Radioamateur page including beacon description + https://github.com/ASU-cubesat/phxsat-gsw-public + + + + + + + https://github.com/ASU-cubesat/phxsat-gsw-public + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PICPOT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PICPOT.xml new file mode 100644 index 00000000..369a54cb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PICPOT.xml @@ -0,0 +1,29 @@ + + + + PICPOT + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + FSK + 9600 + + + + + Main + 0 + + 10kbitGFSK + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PO-28(POSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PO-28(POSAT).xml new file mode 100644 index 00000000..6e71ea2e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PO-28(POSAT).xml @@ -0,0 +1,21 @@ + + + + PO-28(POSAT) + 22829 + 1993-061G + Not operational + PO-28 + + + Main + 0 + + FSK + 9600 + + POSAT1-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PO-34(PANSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PO-34(PANSAT).xml new file mode 100644 index 00000000..4cabed80 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PO-34(PANSAT).xml @@ -0,0 +1,20 @@ + + + + PO-34(PANSAT) + 25520 + 1998-064B + Not operational + PO-34 + + + Main + 0 + + Spectrum + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PO-63 (PehuenSat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PO-63 (PehuenSat).xml new file mode 100644 index 00000000..904715bb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PO-63 (PehuenSat).xml @@ -0,0 +1,22 @@ + + + + PO-63 (PehuenSat) + 29712 + Not operational + PO-63 + Draft + 2020-05-24+02:00 + + + Beacon + 145825000 + + AFSK + 1200bps + + LU1YUC + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PO-63(PehuenSat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PO-63(PehuenSat).xml new file mode 100644 index 00000000..db171691 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PO-63(PehuenSat).xml @@ -0,0 +1,21 @@ + + + + PO-63(PehuenSat) + 29709 + Unknown + PO-63 + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + LU1YUC + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_POPSAT-HIP1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_POPSAT-HIP1.xml new file mode 100644 index 00000000..79cd5cae --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_POPSAT-HIP1.xml @@ -0,0 +1,22 @@ + + + + POPSAT-HIP1 + 40028 + 2014-033U + Not operational + + + Main + 437405000 + + 1k2 9k6 CCSDS CW + + + CW + + POPSAT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PRISM(HITOMI).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PRISM(HITOMI).xml new file mode 100644 index 00000000..587ca45e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PRISM(HITOMI).xml @@ -0,0 +1,29 @@ + + + + PRISM(HITOMI) + 33493 + 2009-002B + Operational + + true + + 2020-05-24+02:00 + + + Main + 437250000 + + AFSK + + + GMSK + + + CW + + JQ1YCX + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PROITERES.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PROITERES.xml new file mode 100644 index 00000000..25d52f8f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PROITERES.xml @@ -0,0 +1,23 @@ + + + + PROITERES + 38756 + 2012-047B + Not operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + JL3YZL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PSAT-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PSAT-2.xml new file mode 100644 index 00000000..ca06b2c6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PSAT-2.xml @@ -0,0 +1,73 @@ + + + + PSAT-2 + 44354 + Operational + + true + + + 2019-06-25 + + + Navy- OSCAR 104 (NO-104) + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=473 + PSAT-2 has been coordinated by IARU + PSAT-2 a été coordonné par l'IARU + + + Information page + http://aprs.org/psat2.html + + + + SSTV + 435350000 + + SSTV + + + + + + APRS + + 145825000 + + + 145825000 + + AFSK + 1200 + + + PSK31 + + 294815000 + + + 435350000 + + AFSK + 1200 + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PTecSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PTecSat.xml new file mode 100644 index 00000000..2b218ac7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PTecSat.xml @@ -0,0 +1,19 @@ + + + + PTecSat + 0 + To be launch + 2020-05-24+02:00 + + + Main + 436000000 + + AFSK + 1200 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PUCP-SAT-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PUCP-SAT-1.xml new file mode 100644 index 00000000..6c1bef2a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PUCP-SAT-1.xml @@ -0,0 +1,19 @@ + + + + PUCP-SAT-1 + 39442 + 2013-066AC + Not operational + + + Main + 145840000 + + AFSK + 1200 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PW-Sat 2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PW-Sat 2.xml new file mode 100644 index 00000000..2d5e0e9f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PW-Sat 2.xml @@ -0,0 +1,56 @@ + + + + PW-Sat 2 + 43814 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project Site + https://pw-sat.pl/en/home-page/ + PW-Sat2 is a student satellite project started in 2013 at Warsaw University of Technology by the Students Space Association members. Its main technical goal is to test new deorbit technology in form of a large deorbit sail whereas the project purpose is to educate a group of new space engineers + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=545 + PW-Sat 2 has been coordinated by IARU + PW-Sat 2 a été coordonné par l'IARU + + + + Telemetry 1 + 435275000 + + BPSK + 9600 + + + BPSK + 1200 + + + + + + + Ham radio information + https://pw-sat.pl/en/information-for-radio-amateurs/ + + + + + + + https://radio.pw-sat.pl/communication/desktopsoftware + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PW-Sat1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PW-Sat1.xml new file mode 100644 index 00000000..e6dbedc7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PW-Sat1.xml @@ -0,0 +1,22 @@ + + + + PW-Sat1 + 38083 + Not operational + + + Main + 145902000 + + BPSK + 1200 + + + CW + + VOID + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ParkinsonSAT (PSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ParkinsonSAT (PSAT).xml new file mode 100644 index 00000000..a5512d85 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ParkinsonSAT (PSAT).xml @@ -0,0 +1,54 @@ + + + + ParkinsonSAT (PSAT) + 40654 + 2015-025D + Operational + + true + + NO-84 + Verified + 2020-05-24+02:00 + + PSAT + http://aprs.org/psat.html + ParkinsonSAT description + + + + APRS + 145825000 + + AX25 + 1200 + + + + PSK31 + 435350000 + + PSK31 + + W3ADO-5 + + + PSK31 + + 28120000 + + + 435035000 + + SSB PSK31 + + + + + LIVE Telemetry Downlink + http://pcsat.aprs.org + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Pegasus (AT03).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Pegasus (AT03).xml new file mode 100644 index 00000000..2e4095c1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Pegasus (AT03).xml @@ -0,0 +1,24 @@ + + + + Pegasus (AT03) + 42784 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 436670000 + + GMSK + 9600 bps + + ON03AT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PharmaSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PharmaSat-1.xml new file mode 100644 index 00000000..b0e158e6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PharmaSat-1.xml @@ -0,0 +1,19 @@ + + + + PharmaSat-1 + 35002 + Not operational + + + Main + 437465000 + + AFSK + 1200 + + KE7EGC + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PhoneSat24.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PhoneSat24.xml new file mode 100644 index 00000000..7533133b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PhoneSat24.xml @@ -0,0 +1,20 @@ + + + + PhoneSat24 + 39381 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PhoneSat25.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PhoneSat25.xml new file mode 100644 index 00000000..a432cb81 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PhoneSat25.xml @@ -0,0 +1,20 @@ + + + + PhoneSat25 + 39684 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PicSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PicSat.xml new file mode 100644 index 00000000..bd184aa5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PicSat.xml @@ -0,0 +1,38 @@ + + + + PicSat + 43132 + Not operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 435525000 + + BPSK + 1200 + + + BPSK + 9600 + + PICSAT + + + Repeater + + 145910000 + + + 435525000 + + FM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PicoDragon.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PicoDragon.xml new file mode 100644 index 00000000..ae24534f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PicoDragon.xml @@ -0,0 +1,23 @@ + + + + PicoDragon + 39413 + Decayed + 2020-05-24+02:00 + + + Main + 437250000 + + AFSK + 1200 + + + CW + + XV9PID + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Pocket-PUCP.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Pocket-PUCP.xml new file mode 100644 index 00000000..9c3d9975 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Pocket-PUCP.xml @@ -0,0 +1,23 @@ + + + + Pocket-PUCP + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437200000 + + AFSK + 1200 + + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PolyITAN-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PolyITAN-1.xml new file mode 100644 index 00000000..2736b3da --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PolyITAN-1.xml @@ -0,0 +1,23 @@ + + + + PolyITAN-1 + 40042 + 2014-033AJ + Operational + + + Main + 437675000 + + FSK + 9600 + + + CW + + EM0UKP + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PolyITAN-2-SAU (UA01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PolyITAN-2-SAU (UA01).xml new file mode 100644 index 00000000..5386cde1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PolyITAN-2-SAU (UA01).xml @@ -0,0 +1,21 @@ + + + + PolyITAN-2-SAU (UA01) + 42732 + Decayed + Draft + 2019-08-07 + + + Beacon + 436600000 + + BPSK + 9600bps + + QBUA01 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP1.xml new file mode 100644 index 00000000..41dbf227 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP1.xml @@ -0,0 +1,20 @@ + + + + PolySatCP1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + 15bpsDTMFCW + + N6CP + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP2.xml new file mode 100644 index 00000000..6ca64147 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP2.xml @@ -0,0 +1,21 @@ + + + + PolySatCP2 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437325000 + + AFSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP3.xml new file mode 100644 index 00000000..52f1a4e0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP3.xml @@ -0,0 +1,20 @@ + + + + PolySatCP3 + 31128 + 2007-012M + Not operational + + + Main + 0 + + AFSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP4.xml new file mode 100644 index 00000000..ca4c799b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PolySatCP4.xml @@ -0,0 +1,20 @@ + + + + PolySatCP4 + 31132 + 2007-012Q + Not operational + + + Main + 437323000 + + SSB + 1200 + + N6CP + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Pratham.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Pratham.xml new file mode 100644 index 00000000..f21a47a5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Pratham.xml @@ -0,0 +1,25 @@ + + + + Pratham + 41783 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 145980000 + + AFSK + 1200bps + + + CW + 0 + + PRATHAM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_PrintSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_PrintSat.xml new file mode 100644 index 00000000..a012eb14 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_PrintSat.xml @@ -0,0 +1,20 @@ + + + + PrintSat + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437325000 + + GMSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_QARMAN.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_QARMAN.xml new file mode 100644 index 00000000..967bb52f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_QARMAN.xml @@ -0,0 +1,50 @@ + + + + QARMAN + 45257 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=349 + Thosten Scholz DO2TSB + 2013-10-31 + 2015-06-08 + scholz@vki.ac.be.nospam + + Draft + 2020-05-22 + + Project Information page + https://qarman.eu/ + + + + Beacon + 437350000 + + GMSK + 9600 + + ON05BE + + + + + Qarman Beacon Definition + https://ukamsat.files.wordpress.com/2020/01/qarman_bcndef_v1.1.pdf + + + Beacon Decoder spreadsheet + https://ukamsat.files.wordpress.com/2020/01/qarman_bcndecoder.xlsx + + + + + + operations@qarman.eu + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_QB50p1 - FUNcube3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_QB50p1 - FUNcube3.xml new file mode 100644 index 00000000..9fc9f1a7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_QB50p1 - FUNcube3.xml @@ -0,0 +1,76 @@ + + + + QB50p1 - FUNcube3 + 40025 + 2014-033R + Not operational + + true + + + 2014-06-19 + Yasniy site + + EO-79 + Verified + 2020-05-24+02:00 + + QB50 Precursor Mission page + https://www.qb50.eu/index.php/precursor-flight + EO-79, also known as QB50p1 and FUNcube-3, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-NL constructed transponder as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months. (Source AMSAT-NA) + + + Funcube Home page + http://funcube.org.uk/ + Funcube project home page + + + + Main + 145815000 + + BPSK + 1200 + + + CW + + QB50P1 + + + Main + + 435035000 + 435065000 + + + 145935000 + 145965000 + + SSB/CW + yes + + + + + QB50 precursor amateur radio operator page + https://www.qb50.eu/index.php/precursor-amateur-radio-operator + + + CW beacon content + http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + operations@isispace.nl + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_QB50p2 (EO-80).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_QB50p2 (EO-80).xml new file mode 100644 index 00000000..302e3c2b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_QB50p2 (EO-80).xml @@ -0,0 +1,75 @@ + + + + QB50p2 (EO-80) + 40032 + 2014-033Y + Not operational + + true + + + 2014-06-19 + Yasniy site + + EO-80 + Verified + 2020-05-24+02:00 + + QB50 Precursor Mission page + https://www.qb50.eu/index.php/precursor-flight + EO-80, also known as QB50p2, is a 2U cubesat (10cm x 10cm x 20cm) built and launched as a collaborative effort led by the von Karman Institute and ISIS-BV. The primary function of the satellite is testing of the systems designed for the QB50 mission cubesats, including the Attitude Determination and Control System, Ion and Neutral Mass Spectrometer, Oxygen Flux Probe, Satellite Control Software, and the Quadpack deployer. Additionally, the satellite carries a AMSAT-F constructed repeater as a return favor for support of the use of the amateur bands for the primary QB50 mission. The transponder will be active after the primary mission is complete, estimated at six months.(source AMSAT-NA) + + + + Le@af 4 - Edition spéciale QB50 + http://www.amsat-f.org/spip/IMG/pdf/leaf4.pdf + Amsat-Francophone publication dedicated to QB50P2 + + + + Main + 145880000 + + BPSK + 1200 + + + CW + + QB50P2 + + + FM voice repeater + + 435080000 + + + 145840000 + + FM + 210.7 + + + + + QB50 precursor amateur radio operator page + https://www.qb50.eu/index.php/precursor-amateur-radio-operator + + + CW beacon content + http://www.isispace.nl/HAM/qb50p_cwbeacon.pdf + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + operations@isispace.nl + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_QBEE (SE01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_QBEE (SE01).xml new file mode 100644 index 00000000..765aead7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_QBEE (SE01).xml @@ -0,0 +1,21 @@ + + + + QBEE (SE01) + 42708 + Decayed + Draft + 2019-08-07 + + + Beacon + 435800000 + + GFSK + 9600bps + + ON01SE + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_QBITO (ES01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_QBITO (ES01).xml new file mode 100644 index 00000000..7aa8152f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_QBITO (ES01).xml @@ -0,0 +1,21 @@ + + + + QBITO (ES01) + 42728 + Decayed + INIT + 2019-08-07 + + + Beacon + 436810000 + + GFSK + 9600bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_QUAKESAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_QUAKESAT.xml new file mode 100644 index 00000000..f48e5ed0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_QUAKESAT.xml @@ -0,0 +1,20 @@ + + + + QUAKESAT + 27845 + 2003-031F + Not operational + + + Main + 436682000 + + FSK + 9600 + + KD7OVB + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_QUETZAL-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_QUETZAL-1.xml new file mode 100644 index 00000000..8334f1f3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_QUETZAL-1.xml @@ -0,0 +1,55 @@ + + + + QUETZAL-1 + 45598 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=653 + José Bagur TG8JAB + 2018-11-15 + 2019-07-23 + jabagur@uvg.edu.gt.nospam + + + International Space Station + + Draft + 2020-05-01 + + Project page + https://www.uvg.edu.gt/cubesat-en/ + + + Telemetry description and associated SW + https://github.com/danalvarez/gr-quetzal1 + This repository includes the UHF specifications for Quetzal-1, information on demodulating and decoding beacons from the satellite, as well as a graphical application to view beacon data. + + + + + Beacon + 437200000 + + GMSK + 4800 + + + + + + + beacon description + https://github.com/danalvarez/gr-quetzal1/blob/master/docs/Beacon_Package_Data.xlsx + + + + + + satelite@uvg.edu.gt + https://github.com/danalvarez/gr-quetzal1 + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6).xml new file mode 100644 index 00000000..c7f5fae9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6).xml @@ -0,0 +1,54 @@ + + + + Quantutong-1 (TY-6 Tianyi-6 Xiaoxiang-6) + 43158 + Not operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 436100000 + + GMSK + 9600 + + + + + T1 + + 436100000 + + + 436100000 + + 9k6 GMSK + + + T2 + + 2415000000 + + + 2415000000 + + 5Mbps OFDM + + + T3 + + 5667000000 + + + 5845000000 + + 5Mbps OFDM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Qubescout-S1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Qubescout-S1.xml new file mode 100644 index 00000000..c58fa6bf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Qubescout-S1.xml @@ -0,0 +1,19 @@ + + + + Qubescout-S1 + 39443 + 2013-066AD + Not operational + + + Main + 437525000 + + GMSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RAIKO.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RAIKO.xml new file mode 100644 index 00000000..2144e22d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RAIKO.xml @@ -0,0 +1,21 @@ + + + + RAIKO + 38852 + Not amateur satellite + + Draft + 2020-05-24+02:00 + + + Main + 1300000000000 + + 384-500kbps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RANGE-A.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RANGE-A.xml new file mode 100644 index 00000000..c87a8701 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RANGE-A.xml @@ -0,0 +1,21 @@ + + + + RANGE-A + 43772 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437150000 + + 0.1kbps-115.2kbps FSK/MSK/GFSK/GMSK + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RASAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RASAT.xml new file mode 100644 index 00000000..717c5d04 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RASAT.xml @@ -0,0 +1,21 @@ + + + + RASAT + 37791 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 437400000 + + FSK + 9600 bps + + RASAT0-11 -12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RAX-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RAX-1.xml new file mode 100644 index 00000000..f4d80f7b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RAX-1.xml @@ -0,0 +1,20 @@ + + + + RAX-1 + 37223 + 2010-062B + Not operational + + + Main + 437505000 + + GMSKKISS + 9600 + + RAX-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RAX-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RAX-2.xml new file mode 100644 index 00000000..88e9a270 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RAX-2.xml @@ -0,0 +1,20 @@ + + + + RAX-2 + 37853 + 2011-061D + Not operational + + + Main + 437345000 + + GMSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RINCON.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RINCON.xml new file mode 100644 index 00000000..7d20964f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RINCON.xml @@ -0,0 +1,21 @@ + + + + RINCON + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437345000 + + AFSK + 1200 + + WA4CEW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-1 (Radio Sputnik 1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-1 (Radio Sputnik 1).xml new file mode 100644 index 00000000..9c776dbf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-1 (Radio Sputnik 1).xml @@ -0,0 +1,21 @@ + + + + RS-1 (Radio Sputnik 1) + 11085 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-10 (COSMOS 1861).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-10 (COSMOS 1861).xml new file mode 100644 index 00000000..f2fa18b5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-10 (COSMOS 1861).xml @@ -0,0 +1,30 @@ + + + + RS-10 (COSMOS 1861) + 18129 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 29357000 + + CW + + + + + + Beacon + 29403000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-12(Sputnik).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-12(Sputnik).xml new file mode 100644 index 00000000..315c89d9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-12(Sputnik).xml @@ -0,0 +1,27 @@ + + + + RS-12(Sputnik) + 21089 + 1991-007A + Not operational + + + Main + 29408000 + + CW + + + + + Main + 145862000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-14 (Informator-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-14 (Informator-1).xml new file mode 100644 index 00000000..109dc0e3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-14 (Informator-1).xml @@ -0,0 +1,30 @@ + + + + RS-14 (Informator-1) + 21087 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 145822000 + + CW + + + + + + Beacon + 145948000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-15(Sputnik).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-15(Sputnik).xml new file mode 100644 index 00000000..1966678f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-15(Sputnik).xml @@ -0,0 +1,19 @@ + + + + RS-15(Sputnik) + 23439 + 1994-085A + Operational + + + Main + 29352000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-16 (Mozhayets-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-16 (Mozhayets-2).xml new file mode 100644 index 00000000..432f49f6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-16 (Mozhayets-2).xml @@ -0,0 +1,21 @@ + + + + RS-16 (Mozhayets-2) + 24744 + Decayed + Draft + 2019-08-07 + + + Beacon + 435510000 + + CW + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-17 (Sputnik 40).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-17 (Sputnik 40).xml new file mode 100644 index 00000000..36f92a72 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-17 (Sputnik 40).xml @@ -0,0 +1,21 @@ + + + + RS-17 (Sputnik 40) + 24958 + Decayed + INIT + 2019-08-07 + + + Beacon + 145820000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-18 (Sputnik 41).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-18 (Sputnik 41).xml new file mode 100644 index 00000000..37755ffa --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-18 (Sputnik 41).xml @@ -0,0 +1,21 @@ + + + + RS-18 (Sputnik 41) + 25533 + Decayed + Draft + 2019-08-07 + + + Beacon + 145812000 + + CW + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-19 (Sputnik 99).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-19 (Sputnik 99).xml new file mode 100644 index 00000000..f43a156a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-19 (Sputnik 99).xml @@ -0,0 +1,21 @@ + + + + RS-19 (Sputnik 99) + 25685 + Decayed + INIT + 2019-08-07 + + + Beacon + 145815000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-2 (Radio Sputnik 2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-2 (Radio Sputnik 2).xml new file mode 100644 index 00000000..2441efbf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-2 (Radio Sputnik 2).xml @@ -0,0 +1,21 @@ + + + + RS-2 (Radio Sputnik 2) + 11086 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-20 (Mozhayets-3).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-20 (Mozhayets-3).xml new file mode 100644 index 00000000..b4d6c5ff --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-20 (Mozhayets-3).xml @@ -0,0 +1,30 @@ + + + + RS-20 (Mozhayets-3) + 27560 + Decayed + INIT + 2019-08-07 + + + Beacon + 145828000 + + CW + + + + + + Beacon + 435319000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-21(Sputnik).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-21(Sputnik).xml new file mode 100644 index 00000000..a573d0d8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-21(Sputnik).xml @@ -0,0 +1,18 @@ + + + + RS-21(Sputnik) + 27394 + Decayed + + + Main + 145825000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-22(Mozhayets).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-22(Mozhayets).xml new file mode 100644 index 00000000..0b059510 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-22(Mozhayets).xml @@ -0,0 +1,19 @@ + + + + RS-22(Mozhayets) + 27939 + 2003-042A + Operational + + + Main + 435352000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-23 (Tatyana).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-23 (Tatyana).xml new file mode 100644 index 00000000..8c27a8e7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-23 (Tatyana).xml @@ -0,0 +1,30 @@ + + + + RS-23 (Tatyana) + 28523 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 435215000 + + CW + 0 + + + + + Beacon + 435315000 + + CW + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-25.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-25.xml new file mode 100644 index 00000000..e0fa5f90 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-25.xml @@ -0,0 +1,19 @@ + + + + RS-25 + 28898 + 2005-043G + Unknown + + + Main + 435325000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-28(UgatuSat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-28(UgatuSat).xml new file mode 100644 index 00000000..1acc3eb3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-28(UgatuSat).xml @@ -0,0 +1,22 @@ + + + + RS-28(UgatuSat) + 35869 + 2009-049D + Not operational + + Draft + 2019-08-05 + + + Main + 435264000 + + CW + + RS28 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-3 (Radio Sputnik 3).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-3 (Radio Sputnik 3).xml new file mode 100644 index 00000000..5d797e0c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-3 (Radio Sputnik 3).xml @@ -0,0 +1,21 @@ + + + + RS-3 (Radio Sputnik 3) + 12997 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-30(Yubileiniy).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-30(Yubileiniy).xml new file mode 100644 index 00000000..77420b7c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-30(Yubileiniy).xml @@ -0,0 +1,22 @@ + + + + RS-30(Yubileiniy) + 32953 + 2008-025A + Not operational + + Draft + 2019-08-05 + + + Main + 435315000 + + CW + + RS30 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-38(Tatiana-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-38(Tatiana-2).xml new file mode 100644 index 00000000..78814abc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-38(Tatiana-2).xml @@ -0,0 +1,22 @@ + + + + RS-38(Tatiana-2) + 35868 + 2009-049E + Not operational + + Draft + 2019-08-05 + + + Main + 435490000 + + CW + + RS38 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-39 (Chibis-M).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-39 (Chibis-M).xml new file mode 100644 index 00000000..11338498 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-39 (Chibis-M).xml @@ -0,0 +1,30 @@ + + + + RS-39 (Chibis-M) + 38051 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435315000 + + CW + + + + + + Beacon + 435215000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-4 (Radio Sputnik 4).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-4 (Radio Sputnik 4).xml new file mode 100644 index 00000000..253eb6a7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-4 (Radio Sputnik 4).xml @@ -0,0 +1,21 @@ + + + + RS-4 (Radio Sputnik 4) + 13000 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-40 (Yubileyny-2 MiR).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-40 (Yubileyny-2 MiR).xml new file mode 100644 index 00000000..ed295080 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-40 (Yubileyny-2 MiR).xml @@ -0,0 +1,21 @@ + + + + RS-40 (Yubileyny-2 MiR) + 38735 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435365000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-46 (COSMOS-2491).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-46 (COSMOS-2491).xml new file mode 100644 index 00000000..b35cca5f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-46 (COSMOS-2491).xml @@ -0,0 +1,30 @@ + + + + RS-46 (COSMOS-2491) + 39497 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435465000 + + CW + + + + + + Beacon + 435565000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-47 (COSMOS-2499).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-47 (COSMOS-2499).xml new file mode 100644 index 00000000..168447af --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-47 (COSMOS-2499).xml @@ -0,0 +1,30 @@ + + + + RS-47 (COSMOS-2499) + 39765 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon 1 + 435565000 + + CW + + + + + + Beacon 2 + 435465000 + + CW + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-5 (Radio Sputnik 5).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-5 (Radio Sputnik 5).xml new file mode 100644 index 00000000..77de2003 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-5 (Radio Sputnik 5).xml @@ -0,0 +1,21 @@ + + + + RS-5 (Radio Sputnik 5) + 12999 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-6 (Radio Sputnik 6).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-6 (Radio Sputnik 6).xml new file mode 100644 index 00000000..14651ba6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-6 (Radio Sputnik 6).xml @@ -0,0 +1,21 @@ + + + + RS-6 (Radio Sputnik 6) + 13002 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-7 (Radio Sputnik 7).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-7 (Radio Sputnik 7).xml new file mode 100644 index 00000000..c5a8d7fc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-7 (Radio Sputnik 7).xml @@ -0,0 +1,21 @@ + + + + RS-7 (Radio Sputnik 7) + 13001 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RS-8 (Radio Sputnik 8).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-8 (Radio Sputnik 8).xml new file mode 100644 index 00000000..675c8016 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RS-8 (Radio Sputnik 8).xml @@ -0,0 +1,21 @@ + + + + RS-8 (Radio Sputnik 8) + 12998 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RSP-00.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RSP-00.xml new file mode 100644 index 00000000..20e75d2a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RSP-00.xml @@ -0,0 +1,48 @@ + + + + RSP-00 + 43639 + Not operational + draft + 2020-05-24+02:00 + + project site + http://rymansat.com/en/2018/10/15/operational-status-of-rsp-00/ + + + + + + Beacon + 145890000 + + 38k4 pi/4QPSK CW + + + + AFSK + 1200 + + + FM + + + + CW + + + 8J1RSP + + + Beacon + 436930000 + + pi/4QPSK + 38400 Bps + + 8J1RSP + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Raavana 1 .xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Raavana 1 .xml new file mode 100644 index 00000000..0d668777 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Raavana 1 .xml @@ -0,0 +1,57 @@ + + + + Raavana 1 + 44329 + Operational + + true + + + 2019-04-17 + + + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=616 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + + + + Beacon + 435375000 + + CW + + + + GMSK + 9600 + + + + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_RadSat-u.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_RadSat-u.xml new file mode 100644 index 00000000..2af374f2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_RadSat-u.xml @@ -0,0 +1,56 @@ + + + + RadSat-u + 45262 + Not operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=551 + Larry Springer expérimental + 2017-03-08 + 2017-04-26 + Larry.springer@msu.edu.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2020-05-24+02:00 + + RadSat-U publication + https://scholarworks.montana.edu/xmlui/handle/1/12916 + Les chercheurs de MSU travaillent depuis huit ans sur un système informatique tolérant aux rayonnements ionisants pour les applications spatiales. Afin de quantifier la quantité de rayonnement ressentie par l'ordinateur, l'équipe RadSat-U développe un capteur de rayonnement photo-voltaïque. RadSat-U, un satellite 3U conçu pour transporter l'ordinateur tolérant aux radiations dans l'espace, est la plate-forme de test idéale. L'expérience consiste en une cellule solaire entièrement intégrée et un circuit de conditionnement de signaux conçus pour s'adapter à RadSat-U. RadSat-U transportera ensuite à la fois l'ordinateur tolérant aux radiations et l'expérience sur les cellules solaires en orbite où l'environnement de rayonnement spatial testera les limites des deux systèmes. Un test à grande échelle élèvera cette nouvelle technologie au plus haut niveau de la NASA pour les technologies émergentes, ce qui lui permettra d'être utilisé dans de futures missions. + + + An FPGA-based Radiation Tolerant SmallSat Computer System + http://www.montana.edu/blameres/vitae/publications/d_conference_full/conf_full_033_fpga_based_smallsat_computer.pdf + + + + + Beacon + 437425000 + + GMSK + 19200 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Range A.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Range A.xml new file mode 100644 index 00000000..c34e2399 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Range A.xml @@ -0,0 +1,58 @@ + + + + Range A + 43798 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 + RAnge A has been coordinated by IARU + RAnge A a été coordonné par l'IARU + + + + Telemetry 1 + 437150000 + + FSK + 0.1 kbps to 115.2 kbps + + + MSK + 0.1 kbps to 115.2 kbps + + + GFSK + 0.1 kbps to 115.2 kbps + + + GMSK + 0.1 kbps to 115.2 kbps + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Range B.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Range B.xml new file mode 100644 index 00000000..81e4f888 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Range B.xml @@ -0,0 +1,55 @@ + + + + Range B + 43773 + Not operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=497 + RAnge B has been coordinated by IARU + RAnge B a été coordonné par l'IARU + + + + Telemetry 1 + 437475000 + + FSK + 0.1 kbps to 115.2 kbps + + + MSK + 0.1 kbps to 115.2 kbps + + + GFSK + 0.1 kbps to 115.2 kbps + + + GMSK + 0.1 kbps to 115.2 kbps + + + + + + + n + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Reaktor Hello World.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Reaktor Hello World.xml new file mode 100644 index 00000000..a419e6d1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Reaktor Hello World.xml @@ -0,0 +1,73 @@ + + + + Reaktor Hello World + 43743 + Operational + + true + + + 2018-12-16 + India + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=503 + Reaktor Hello World has been coordinated by IARU + Reaktor Hello World a été coordonné par l'IARU + + + + Telemetry 1 + 437775000 + + CW + + + + 2GFSK + 9k6 + + + + + Telemetry corrected frequency + 437775270 + + CW + + + + 2GFSK + 9k6 + + + + + Telemetry 1 + 2410000000 + + MSK + 1Mbs + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Robusta-1B.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Robusta-1B.xml new file mode 100644 index 00000000..c71aa7cb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Robusta-1B.xml @@ -0,0 +1,29 @@ + + + + Robusta-1B + 42792 + 2017-036AD + Operational + + true + + Verified + 2020-05-24+02:00 + + + Main + 437325000 + + AFSK + 1200 + + + CW + + + FX6FR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Robusta.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Robusta.xml new file mode 100644 index 00000000..cbf91fb9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Robusta.xml @@ -0,0 +1,19 @@ + + + + Robusta + 38080 + Not operational + + + Main + 437325000 + + FM + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SACRED.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SACRED.xml new file mode 100644 index 00000000..2dd5dfe0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SACRED.xml @@ -0,0 +1,26 @@ + + + + SACRED + 0 + To be launch + Verified + 2020-05-24+02:00 + + Wiki page + https://en.wikipedia.org/wiki/SACRED + + + + + Main + 0 + + AFSK + 1200 + + WA4CEW + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SAFIR-S.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SAFIR-S.xml new file mode 100644 index 00000000..3cbf8c98 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SAFIR-S.xml @@ -0,0 +1,22 @@ + + + + SAFIR-S + 25399 + 1998-043F + Not operational + Verified + 2019-02-14 + + + Main + 2401900000 + + FSK + 9600 + + DP1AIS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SEAM-2.0.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SEAM-2.0.xml new file mode 100644 index 00000000..06df10d4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SEAM-2.0.xml @@ -0,0 +1,27 @@ + + + + SEAM-2.0 + 44411 + Unknown + Draft + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=584 + TBEx has been coordinated by IARU + TBEx a été coordonné par l'IARU + + + + Beacon + 437250000 + + GMSK + 9600 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SEEDS.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SEEDS.xml new file mode 100644 index 00000000..bc50c79a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SEEDS.xml @@ -0,0 +1,21 @@ + + + + SEEDS + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + JQ1YGU + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SERPENS.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SERPENS.xml new file mode 100644 index 00000000..02830b6e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SERPENS.xml @@ -0,0 +1,54 @@ + + + + SERPENS + 40897 + Decayed + + 2015-09-17 + International Space Station + + None + Verified + 2020-05-24+02:00 + + SERPENS Ham Radio Page + http://www.aerospace.unb.br/serpens_radioamateurs + SERPENS is a 3U CubeSat which was developed by students at the University of Brasilia and focuses on meteorological data collection. + + + + Sector A + 145980000 + + GFSK + 9600 + + PY0ESA + + + SECTOR B + 437365000 + + CW + + + MSK + 1200 + + PY0ESA + + + + + SERPEN HamRadio Home Page + http://www.aerospace.unb.br/serpens_radioamateurs + + + Report shall be sent by email + serpens.reports@aerospace.unb.br. + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SGSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SGSat.xml new file mode 100644 index 00000000..d20a3ef6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SGSat.xml @@ -0,0 +1,21 @@ + + + + SGSat + 42703 + Unknown + Draft + 2019-08-07 + + + Beacon + 437450000 + + FSK + 9600bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SHIN'EN2 (FO-82).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SHIN'EN2 (FO-82).xml new file mode 100644 index 00000000..c573bd3d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SHIN'EN2 (FO-82).xml @@ -0,0 +1,19 @@ + + + + SHIN'EN2 (FO-82) + 40320 + Deep Space + 2020-05-24+02:00 + + + Main + 437385000 + + Transponder WSJT/CW + + JG6YIG + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SIRIUSSAT-1 (SXC1-181 RS13S).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SIRIUSSAT-1 (SXC1-181 RS13S).xml new file mode 100644 index 00000000..a5e73bbc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SIRIUSSAT-1 (SXC1-181 RS13S).xml @@ -0,0 +1,54 @@ + + + + SIRIUSSAT-1 (SXC1-181 RS13S) + 43595 + 1998-067PG + Operational + + 2018-08-15 + ISS + + + Verified + 2019-02-14 + + Siriussat information page (Russian) + http://sputnix.ru/ru/nashi-sputniki/siriussat-1 + + + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + + + Siriussat hamradio information from Sputnix companie + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + hamradio information from Spunix Companie + + + + Main + 435570000 + + GMSK + 4800 + + RS13S + + + + + + + + + + + + siriussat@sputnix.ru + + Télécharger SPUTNIX Telemetry Viewer (Win ENG) + http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SMOG-P (MO-105) .xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SMOG-P (MO-105) .xml new file mode 100644 index 00000000..c1b0b475 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SMOG-P (MO-105) .xml @@ -0,0 +1,41 @@ + + + + SMOG-P (MO-105) + 44832 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=641 + Levente Dudas HA7WEN + 2018-08-13 + 2018-11-19 + dudas@hvt.bme.hu.nospam + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + Magyar-OSCAR 105 (MO-105) + Verified + 2019-11-26 + + Project information + http://gnd.bme.hu + + + + + + Beacon + 437150000 + + GMSK + 12500 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-1 (KR02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-1 (KR02).xml new file mode 100644 index 00000000..157ffceb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-1 (KR02).xml @@ -0,0 +1,21 @@ + + + + SNUSAT-1 (KR02) + 42733 + Decayed + Draft + 2019-08-07 + + + Beacon + 436090000 + + BPSK + 1200bps + + ON02KR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-1b (KR03).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-1b (KR03).xml new file mode 100644 index 00000000..4a80911f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-1b (KR03).xml @@ -0,0 +1,21 @@ + + + + SNUSAT-1b (KR03) + 42727 + Decayed + Draft + 2019-08-07 + + + Beacon + 435950000 + + BPSK + 1200bps + + ON03KR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-2.xml new file mode 100644 index 00000000..d33238b0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SNUSAT-2.xml @@ -0,0 +1,55 @@ + + + + SNUSAT-2 + 43782 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=509 + SNUSAT-2 has been coordinated by IARU + SNUSAT-2 a été coordonné par l'IARU + + + + Telemetry 1 + 437625000 + + BPSK + 9600 + + + + + Telemetry 2 + 2402000000 + + DQPSK + 1.06Mbit/s + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SO-33(SEDSAT-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-33(SEDSAT-1).xml new file mode 100644 index 00000000..f43a45ea --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-33(SEDSAT-1).xml @@ -0,0 +1,21 @@ + + + + SO-33(SEDSAT-1) + 25509 + 1998-061B + Not operational + SO-33 + + + Main + 437910000 + + FSK + 9600 + + SEDSAT-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SO-35(SUNSAT-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-35(SUNSAT-1).xml new file mode 100644 index 00000000..dfc9ebdc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-35(SUNSAT-1).xml @@ -0,0 +1,20 @@ + + + + SO-35(SUNSAT-1) + 25636 + 1999-008C + Not operational + SO-35 + + + Main + 145825000 + + 9600bpsFM + + SUNSAT-3 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SO-41(SaudiSat-1a).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-41(SaudiSat-1a).xml new file mode 100644 index 00000000..804c635c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-41(SaudiSat-1a).xml @@ -0,0 +1,21 @@ + + + + SO-41(SaudiSat-1a) + 26545 + 2000-057A + Not operational + SO-41 + + + Main + 436775000 + + FSK + 9600 + + SASAT1-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SO-42(SaudiSat-1b).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-42(SaudiSat-1b).xml new file mode 100644 index 00000000..95a618a8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-42(SaudiSat-1b).xml @@ -0,0 +1,21 @@ + + + + SO-42(SaudiSat-1b) + 26549 + 2000-057E + Not operational + SO-42 + + + Main + 436075000 + + FSK + 9600 + + SASAT2-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SO-43(Starshine).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-43(Starshine).xml new file mode 100644 index 00000000..d4109368 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-43(Starshine).xml @@ -0,0 +1,21 @@ + + + + SO-43(Starshine) + 26929 + Decayed + SO-43 + 2020-05-24+02:00 + + + Main + 145820000 + + FSK + 9600 + + STRSHN + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SO-50(SaudiSat-1c).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-50(SaudiSat-1c).xml new file mode 100644 index 00000000..e91cccfe --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-50(SaudiSat-1c).xml @@ -0,0 +1,20 @@ + + + + SO-50(SaudiSat-1c) + 27607 + 2002-058C + Operational + SO-50 + + + Main + 0 + + FM_tone670Hz + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SO-67(SumbandilaSat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-67(SumbandilaSat).xml new file mode 100644 index 00000000..eb9b4ca6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SO-67(SumbandilaSat).xml @@ -0,0 +1,19 @@ + + + + SO-67(SumbandilaSat) + 35870 + 2009-049F + Not operational + + + Main + 435300000 + + FM_tone2336Hz + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SOHLA-1(MAIDO-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SOHLA-1(MAIDO-1).xml new file mode 100644 index 00000000..f4d1570c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SOHLA-1(MAIDO-1).xml @@ -0,0 +1,23 @@ + + + + SOHLA-1(MAIDO-1) + 33496 + 2009-002E + Not operational + + + Main + 437505000 + + AFSK + 1200 + + + CW + + JL3YUS + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SOMP-2 (DE02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SOMP-2 (DE02).xml new file mode 100644 index 00000000..d0542ee2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SOMP-2 (DE02).xml @@ -0,0 +1,25 @@ + + + + SOMP-2 (DE02) + 42700 + Decayed + Draft + 2019-08-07 + + + Beacon + 437405000 + + GMSK + 9600 bps + + + CW + 0 + + ON02TR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SOMP.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SOMP.xml new file mode 100644 index 00000000..09e5f9dc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SOMP.xml @@ -0,0 +1,27 @@ + + + + SOMP + 39134 + 2013-015E + Operational + + true + + 2020-05-24+02:00 + + + Main + 437503000 + + AFSK + 1200 + + + CW + + DP0TUD + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SONATE.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SONATE.xml new file mode 100644 index 00000000..e2d69732 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SONATE.xml @@ -0,0 +1,46 @@ + + + + SONATE + 44400 + Unknown + INIT + 2019-08-07 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=572 + SONATE has been coordinated by IARU + SONATE a été coordonné par l'IARU + + + project information + http://www8.informatik.uni-wuerzburg.de/en/wissenschaftforschung/sonate/ + + + + + + Telemetry 1 + 145840000 + + SSTV + + + + + + Telemetry 2 + 437025000 + + GFSK + 9600 Bps + + + GMSK + 9600 Bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SPROUT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SPROUT.xml new file mode 100644 index 00000000..cc67cc57 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SPROUT.xml @@ -0,0 +1,70 @@ + + + + SPROUT + 39770 + 2014-029E + Operational + + true + + + 2014-05-24 + Tanegashima Space Center + + None + Verified + 2020-05-24+02:00 + + SPace Research On Unique Technology Web Page + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/ + There are 3 main missions in SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector + Trois missions sont allouées au satellite SPROUT : - Deployment demonstration of inflatable membrane structure. - Demonstration of attitude determination and control technology for several kilogram class nano-satellite. - Upbringing of human resources of a space sector + + + + CW - FM Packet + 437525000 + + AFSK + 1200 + + + GMSK + 9600 + + + CW + + JQ1ZJQ + + + SSTV + 437600000 + + SSTV + + + + Digipeater + + 437600000 + + + 437600000 + + + + + + Sprout telemetry format + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Formats%20of%20telemetry-e.html + + + Sprout team propose different types of Report + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Amateur%20satellite-e.html + + http://sat.aero.cst.nihon-u.ac.jp/sprout-e/2-Software-e.html + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SRMSAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SRMSAT.xml new file mode 100644 index 00000000..707d9268 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SRMSAT.xml @@ -0,0 +1,19 @@ + + + + SRMSAT + 37841 + 2011-058D + Operational + + + Main + 437425000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_STARS(KUKAI).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS(KUKAI).xml new file mode 100644 index 00000000..ec179fde --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS(KUKAI).xml @@ -0,0 +1,35 @@ + + + + STARS(KUKAI) + 33498 + 2009-002G + Operational + + + Main + 437305000 + + FM + 1200 + + + CW + + JR5YBN(mother + + + Main + 437275000 + + FM + 1200 + + + CW + + JR5YBO(daught + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-AO.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-AO.xml new file mode 100644 index 00000000..85992830 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-AO.xml @@ -0,0 +1,44 @@ + + + + STARS-AO + 43679 + Operational + Draft + 2019-08-07 + + Project information + https://stars-ao.info + + + + + Beacon + 437350000 + + CW + + + JJ2YSY + + + Beacon + 437400000 + + CW + + + JJ2YSY + + + Beacon + 437200000 + + GMSK + + + JJ2YSY + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-C (Daughter).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-C (Daughter).xml new file mode 100644 index 00000000..c8e8e710 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-C (Daughter).xml @@ -0,0 +1,34 @@ + + + + STARS-C (Daughter) + 41895 + Decayed + Draft + 2019-08-07 + + + Beacon + 437245000 + + AFSK + 1200bps + + + CW + 0 + + JJ2YPM + + + Beacon + 437405000 + + AFSK + 1200bps + + JJ2YPM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-II (Mother).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-II (Mother).xml new file mode 100644 index 00000000..618f0f4b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-II (Mother).xml @@ -0,0 +1,35 @@ + + + + STARS-II (Mother) + 39579 + Decayed + 2020-05-24+02:00 + + + Main + 437245000 + + AFSK + 1200 + + + CW + + JR5YDX + + + Main + 437255000 + + AFSK + 1200 + + + CW + + JR5YDY + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-Me (Mother).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-Me (Mother).xml new file mode 100644 index 00000000..df93a72b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_STARS-Me (Mother).xml @@ -0,0 +1,72 @@ + + + + STARS-Me (Mother) + 43640 + Operational + + true + + Draft + 2020-05-24+02:00 + + Project information + http://stars.eng.shizuoka.ac.jp/english.html + + + + + Mother - Beacon 1 + 437245000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + Mother - Beacon 2 + 437405000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + Daughter - Beacon 1 + 437255000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + Daughter - Beacon 2 + 437425000 + + CW + + + + AFSK + 1200 + + JJ2YPL + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_STEP Cube Lab (STEP-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_STEP Cube Lab (STEP-1).xml new file mode 100644 index 00000000..a8684b3a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_STEP Cube Lab (STEP-1).xml @@ -0,0 +1,25 @@ + + + + STEP Cube Lab (STEP-1) + 43138 + Operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + FSK + 9600 bps + + + CW + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_STMSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_STMSat-1.xml new file mode 100644 index 00000000..96608e93 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_STMSat-1.xml @@ -0,0 +1,25 @@ + + + + STMSat-1 + 41476 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437800000 + + SSTV + 0 + + + GMSK + 9600 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_STRaND-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_STRaND-1.xml new file mode 100644 index 00000000..a449024f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_STRaND-1.xml @@ -0,0 +1,23 @@ + + + + STRaND-1 + 39090 + 2013-009E + Operational + + true + + 2020-05-24+02:00 + + + Main + 437568000 + + GMSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SUCHAI.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SUCHAI.xml new file mode 100644 index 00000000..94202a58 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SUCHAI.xml @@ -0,0 +1,28 @@ + + + + SUCHAI + 42788 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437230000 + + CW + + + + FSK2k4 + 2400 Bps + + SUCHAI + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SUSat (AU01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SUSat (AU01).xml new file mode 100644 index 00000000..8005d4f6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SUSat (AU01).xml @@ -0,0 +1,21 @@ + + + + SUSat (AU01) + 42730 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 436775000 + + FSK + 9600bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SamSat-218D.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SamSat-218D.xml new file mode 100644 index 00000000..4a1c0f4b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SamSat-218D.xml @@ -0,0 +1,21 @@ + + + + SamSat-218D + 41466 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 145870000 + + CW + 0 + + SAMSAT-218D + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Sathyabamasat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Sathyabamasat.xml new file mode 100644 index 00000000..7a87abcd --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Sathyabamasat.xml @@ -0,0 +1,28 @@ + + + + Sathyabamasat + 41600 + Operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 145980000 + + CW + 0 + + + BPSK CW + 2400 bps + + SNSAT + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SaudiSat-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SaudiSat-4.xml new file mode 100644 index 00000000..c4555d07 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SaudiSat-4.xml @@ -0,0 +1,21 @@ + + + + SaudiSat-4 + 40016 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + Ka-band SSB + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SeeMe.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SeeMe.xml new file mode 100644 index 00000000..05040113 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SeeMe.xml @@ -0,0 +1,61 @@ + + + + SeeMe + 0 + To be launch + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=457 + SeeMehas been coordinated by IARU + SeeMe a été coordonné par l'IARU + + + + Telemetry 1 + 437425000 + + + + + + + + Telemetry 2 + 437450000 + + + + + + + + Telemetry 3 + 2424250000 + + BPSK + 1.6Mbps + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ShindaiSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ShindaiSat.xml new file mode 100644 index 00000000..ecbb9642 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ShindaiSat.xml @@ -0,0 +1,23 @@ + + + + ShindaiSat + 39572 + Decayed + 2020-05-24+02:00 + + + Main + 437485000 + + AFSK + 1200 + + + CW + + JR0ZST + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SiriusSat-2(SXC1-182 RS14S).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SiriusSat-2(SXC1-182 RS14S).xml new file mode 100644 index 00000000..86a18c58 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SiriusSat-2(SXC1-182 RS14S).xml @@ -0,0 +1,54 @@ + + + + SiriusSat-2(SXC1-182 RS14S) + 43596 + 1998-067PH + Operational + + 2018-08-15 + ISS + + + Verified + 2019-02-14 + + Siriussat information page (Russian) + http://sputnix.ru/ru/nashi-sputniki/siriussat-1 + + + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + + + Siriussat hamradio information from Sputnix companie + http://sputnix.ru/en/about/news/siriussat-12-satellites-amateur-radio-information + hamradio information from Spunix Companie + + + + Main + 435670000 + + GMSK + 4800 + + RS14S + + + + + + + + + + + + siriussat@sputnix.ru + + Télécharger SPUTNIX Telemetry Viewer (Win ENG) + http://sputnix.ru/tpl/docs/SX-TLM-Viewer-0.0.0-win32-en.zip + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Snuglite.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Snuglite.xml new file mode 100644 index 00000000..1d34bfc3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Snuglite.xml @@ -0,0 +1,43 @@ + + + + Snuglite + 43784 + Operational + + Vandenberg Air Force Base, California + + + Verified + 2018-11-04 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=529 + Snuglite has been coordinated by IARU + Snuglite a été coordonné par l'IARU + + + + Telemetry 1 + 437275000 + + GMSK + 9600 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Socrat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Socrat.xml new file mode 100644 index 00000000..114ea731 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Socrat.xml @@ -0,0 +1,21 @@ + + + + Socrat + 44405 + Operational + Draft + 2019-08-07 + + + Beacon + 436000000 + + mobitex + 4800 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SpaceCube (FR05).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SpaceCube (FR05).xml new file mode 100644 index 00000000..3cdd6c2d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SpaceCube (FR05).xml @@ -0,0 +1,31 @@ + + + + SpaceCube (FR05) + 42717 + Decayed + INIT + 2019-08-07 + + + Beacon + 436880000 + + 1200bps AFSK FM + 0 + + ON05FR + + + FM voice repeater + + 436880000 + + + 145860000 + + FM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SpinSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SpinSat.xml new file mode 100644 index 00000000..00d86168 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SpinSat.xml @@ -0,0 +1,18 @@ + + + + SpinSat + 40314 + Not operational + + + Main + 437230000 + + GFSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SpooQy-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SpooQy-1.xml new file mode 100644 index 00000000..ff61be8f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SpooQy-1.xml @@ -0,0 +1,33 @@ + + + + SpooQy-1 + 44332 + Operational + Draft + 2019-08-07 + + project information + https://sites.google.com/site/phylej/projects-1/spooqy-1 + + + + + IARU Coordination declined + + + + + + + Beacon + 436200000 + + GMSK + 9600bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SporeSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SporeSat.xml new file mode 100644 index 00000000..91538b3e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SporeSat.xml @@ -0,0 +1,19 @@ + + + + SporeSat + 39681 + Unknown + 2020-05-24+02:00 + + + Main + 437100000 + + AFSK + 1200 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_StudSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_StudSat.xml new file mode 100644 index 00000000..fbe82245 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_StudSat.xml @@ -0,0 +1,23 @@ + + + + StudSat + 36796 + 2010-035B + Not operational + + + Main + 437861000 + + FSK + 9600 + + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Suomi 100.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Suomi 100.xml new file mode 100644 index 00000000..c95b5e55 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Suomi 100.xml @@ -0,0 +1,61 @@ + + + + Suomi 100 + 43804 + Operational + + true + + + Vandenberg Air Force Base, California + + + Verified + 2020-05-24+02:00 + + Project + http://www.suomi100satelliitti.fi/eng + + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=507 + Suomi 100 has been coordinated by IARU + Suomi 100 a été coordonné par l'IARU + + + + Telemetry 1 + 437775000 + + + + + + + + Telemetry 2 + 2410000000 + + + + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SurfSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SurfSat.xml new file mode 100644 index 00000000..6771ec3a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SurfSat.xml @@ -0,0 +1,26 @@ + + + + SurfSat + 43614 + Not operational + Draft + 2020-05-24+02:00 + + Project information + https://icubesat.files.wordpress.com/2015/06/icubesat-2015_org_b-3-5_surfsatweb_dove.pdf + + + + + Beacon + 437275000 + + FSK + 9600bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SwampSat II.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SwampSat II.xml new file mode 100644 index 00000000..a9ab2999 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SwampSat II.xml @@ -0,0 +1,69 @@ + + + + SwampSat II + 45115 + Operational + + true + Coordinated + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=677 + Jay Garlitz AA4FL + 2019-06-26 + 2019-09-09 + jgarlitz@ufl.edu.nospam + + + Wallops Flight Facility, états unis + + + Draft + 2020-05-09 + + Large Square-Loop Antenna Deployment from CubeSats + http://digitalcommons.usu.edu/cgi/viewcontent.cgi?article=3510 + + + + + Beacon + 145875000 + + GMSK + 9600 + + + + + Beacon + 436350000 + + GMSK + 9600 + + + + + Beacon + 2432000000 + + QPSK + 3 Mbps + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SwampSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SwampSat.xml new file mode 100644 index 00000000..762f8c63 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SwampSat.xml @@ -0,0 +1,18 @@ + + + + SwampSat + 39402 + Not operational + + + Main + 437385000 + + FSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Swayam COEP.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Swayam COEP.xml new file mode 100644 index 00000000..d064ea15 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Swayam COEP.xml @@ -0,0 +1,25 @@ + + + + Swayam COEP + 41607 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437025000 + + CW + 0 + + + BPSK + 1200 bps + + SWAYAM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Swiatowid .xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Swiatowid .xml new file mode 100644 index 00000000..85fe3d16 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Swiatowid .xml @@ -0,0 +1,63 @@ + + + + Swiatowid + 44426 + Operational + + true + + + 2019-04-17 + + + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=609 + coordinated by IARU + coordonné par l'IARU + + + project site + https://satrevolution.com/projects/swiatowid/ + + + + + + Beacon + 435500000 + + AFSK + 1200 + + + + + APRS + + 435500000 + + + 435500000 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_SwissCube-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_SwissCube-1.xml new file mode 100644 index 00000000..5bbc4e91 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_SwissCube-1.xml @@ -0,0 +1,27 @@ + + + + SwissCube-1 + 35932 + 2009-051B + Operational + + true + + 2020-05-24+02:00 + + + Main + 437505000 + + BFSK + 1200 + + + CW + + HB9EG1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TBEx-a.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TBEx-a.xml new file mode 100644 index 00000000..5eae75a3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TBEx-a.xml @@ -0,0 +1,54 @@ + + + + TBEx-a + 44356 + Unknown + + 2019-06-25 + + + + DRAFT + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 + has been coordinated by IARU + a été coordonné par l'IARU + + + project information + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + Telemetry 1 + 437535000 + + GMSK + 9k6 + + + + + + + TBEx – Tandem Beacon Experiment + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + SATNOGS : Kaitai Struct for Telemetry + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + jwcutler@umich.edu + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TBEx-b.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TBEx-b.xml new file mode 100644 index 00000000..7d8450a6 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TBEx-b.xml @@ -0,0 +1,54 @@ + + + + TBEx-b + 44359 + To be launch + + 2019-06-25 + + + + DRAFT + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=502 + TBEx has been coordinated by IARU + TBEx a été coordonné par l'IARU + + + project information + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + + + + Telemetry 1 + 437535000 + + GMSK + 9k6 + + + + + + + TBEx – Tandem Beacon Experiment + https://exploration.engin.umich.edu/blog/?page_id=3257 + + + SATNOGS : Kaitai Struct for Telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/tbex.ksy + + + + + + jwcutler@umich.edu + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TIsat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TIsat-1.xml new file mode 100644 index 00000000..3196e9c1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TIsat-1.xml @@ -0,0 +1,28 @@ + + + + TIsat-1 + 36799 + 2010-035E + Not operational + + Draft + 2019-08-05 + + + Main + 145980000 + + PSK + + + AFSK + + + CW + + HB9DE + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TJ3Sat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TJ3Sat.xml new file mode 100644 index 00000000..48deeec5 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TJ3Sat.xml @@ -0,0 +1,17 @@ + + + + TJ3Sat + 39385 + Not operational + + + Main + 437320000 + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TO-31(TMSAT-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TO-31(TMSAT-1).xml new file mode 100644 index 00000000..ea11bd85 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TO-31(TMSAT-1).xml @@ -0,0 +1,21 @@ + + + + TO-31(TMSAT-1) + 25396 + 1998-043C + Not operational + TO-31 + + + Main + 436925000 + + FSK + 9600 + + TMSAT1-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TRSI-Sat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TRSI-Sat.xml new file mode 100644 index 00000000..d8d8e789 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TRSI-Sat.xml @@ -0,0 +1,63 @@ + + + + TRSI-Sat + 44831 + Not operational + + true + + + 2019-12-06 + Rocket Lab Launch Complex 1 - Mahia Peninsula, New Zealand + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=649 + + + + + + Beacon (IARU) Deprecated + 437150000 + + GMSK + 12500 + + + CW + 12500 + + + + + Beacon (IARU) Deprecated + 437075000 + + GMSK + 12500 + + + CW + 12500 + + + + + + + TRSI Sat telemetry information Center frequency: 437.075 MHz + http://www.kocyla.de/spaceblog/?page_id=292 + + + + + + radio@satrevolution.com + https://github.com/daniestevez/gr-satellites. + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TSAT (TestSat-Lite).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TSAT (TestSat-Lite).xml new file mode 100644 index 00000000..32f20a96 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TSAT (TestSat-Lite).xml @@ -0,0 +1,21 @@ + + + + TSAT (TestSat-Lite) + 39682 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TSUBAME.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TSUBAME.xml new file mode 100644 index 00000000..2a3f85e9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TSUBAME.xml @@ -0,0 +1,23 @@ + + + + TSUBAME + 40302 + 2014-070E + Not operational + + + Main + 437275000 + + AFSK + 1200 + + + CW + + JQ1ZHX + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TURKSAT-3USAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TURKSAT-3USAT.xml new file mode 100644 index 00000000..e2d2f1d7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TURKSAT-3USAT.xml @@ -0,0 +1,18 @@ + + + + TURKSAT-3USAT + 39152 + 2013-018C + Not operational + + + Main + 437225000 + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TY-3 (Tianyi-3 Xiaoxiang-3).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TY-3 (Tianyi-3 Xiaoxiang-3).xml new file mode 100644 index 00000000..a8ee6d81 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TY-3 (Tianyi-3 Xiaoxiang-3).xml @@ -0,0 +1,21 @@ + + + + TY-3 (Tianyi-3 Xiaoxiang-3) + 43664 + Unknown + INIT + 2019-08-07 + + + Beacon + + + 9k6 GMSK/5Mbps OFDM + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TY-5 (Tianyi-5 Xiaoxiang-5).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TY-5 (Tianyi-5 Xiaoxiang-5).xml new file mode 100644 index 00000000..f0e58d7e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TY-5 (Tianyi-5 Xiaoxiang-5).xml @@ -0,0 +1,21 @@ + + + + TY-5 (Tianyi-5 Xiaoxiang-5) + 43553 + Unknown + INIT + 2019-08-07 + + + Beacon + + + 9k6 GMSK/5Mbps OFDM + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TabletSat-Aurora.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TabletSat-Aurora.xml new file mode 100644 index 00000000..de0d62f2 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TabletSat-Aurora.xml @@ -0,0 +1,18 @@ + + + + TabletSat-Aurora + 40017 + 2014-033H + Not operational + + + Main + 437050000 + + 9600bps GMSK D-STAR + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Tancredo-1 (UbatubaSat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Tancredo-1 (UbatubaSat).xml new file mode 100644 index 00000000..97c907ef --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Tancredo-1 (UbatubaSat).xml @@ -0,0 +1,25 @@ + + + + Tancredo-1 (UbatubaSat) + 41391 + Decayed + Draft + 2019-08-07 + + + Beacon + 437200000 + + AFSK + 1200 bps + + + CW + + + PY0ETA + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-1 (RS-6S).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-1 (RS-6S).xml new file mode 100644 index 00000000..20ec91e7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-1 (RS-6S).xml @@ -0,0 +1,25 @@ + + + + Tanusha-SWSU-1 (RS-6S) + 42911 + Not operational + draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS6S + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-2 (RS-7S).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-2 (RS-7S).xml new file mode 100644 index 00000000..0fec3421 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-2 (RS-7S).xml @@ -0,0 +1,25 @@ + + + + Tanusha-SWSU-2 (RS-7S) + 42912 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS7S + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-3 (RS-8S).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-3 (RS-8S).xml new file mode 100644 index 00000000..e1478dbf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-3 (RS-8S).xml @@ -0,0 +1,25 @@ + + + + Tanusha-SWSU-3 (RS-8S) + 43597 + Operational + Draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS8S + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-4 (RS-9S).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-4 (RS-9S).xml new file mode 100644 index 00000000..05dc28bc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Tanusha-SWSU-4 (RS-9S).xml @@ -0,0 +1,25 @@ + + + + Tanusha-SWSU-4 (RS-9S) + 43598 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS9S + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Taurus-1 (Jinniuzuo-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Taurus-1 (Jinniuzuo-1).xml new file mode 100644 index 00000000..dc9ea3e9 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Taurus-1 (Jinniuzuo-1).xml @@ -0,0 +1,54 @@ + + + + Taurus-1 (Jinniuzuo-1) + 44530 + Operational + + 2013-09-12 + Taiyuan Satellite Launch Center, Chine + + + Draft + 2019-09-14 + + Digital FM to Codec 2 transpondeur + https://www.amsat.org/wordpress/wp-content/uploads/2019/03/N8HM_LilacSat_LO-90.pdf + + + + + Beacon + 435840000 + + + + + + + + FM to Codec-2 + + 145820000 + + + 436760000 + + FM to Codec-2 + 67 + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-3.xml new file mode 100644 index 00000000..8d7c6d92 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-3.xml @@ -0,0 +1,21 @@ + + + + TechEdSat-3 + 39415 + Not operational + + + Main + 437465000 + + AFSK + 9600 + + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-4.xml new file mode 100644 index 00000000..50e2317b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-4.xml @@ -0,0 +1,21 @@ + + + + TechEdSat-4 + 40455 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-5.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-5.xml new file mode 100644 index 00000000..a7ab977c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat-5.xml @@ -0,0 +1,21 @@ + + + + TechEdSat-5 + 42066 + Decayed + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat.xml new file mode 100644 index 00000000..d8b602b0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TechEdSat.xml @@ -0,0 +1,23 @@ + + + + TechEdSat + 38854 + Decayed + 2020-05-24+02:00 + + + Main + 437465000 + + FM + 1200 + + + CW + + KJ6TVO + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TechnoSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TechnoSat.xml new file mode 100644 index 00000000..ac41558c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TechnoSat.xml @@ -0,0 +1,32 @@ + + + + TechnoSat + 42829 + Operational + + true + + draft + 2020-05-24+02:00 + + + Beacon + 435950000 + + GMSK + 4800bps + + + GMSK + 9600bps + + + CW + + + DP0TBA + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TeikyoSat-3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TeikyoSat-3.xml new file mode 100644 index 00000000..24d9c16b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TeikyoSat-3.xml @@ -0,0 +1,23 @@ + + + + TeikyoSat-3 + 39576 + Decayed + 2020-05-24+02:00 + + + Main + 437450000 + + AFSK + 1200 + + + CW + + JQ1ZKM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Ten-Koh.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Ten-Koh.xml new file mode 100644 index 00000000..130c2ee1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Ten-Koh.xml @@ -0,0 +1,47 @@ + + + + Ten-Koh + 43677 + Operational + + true + + Draft + 2020-05-24+02:00 + + Project information + http://kit-okuyama-lab.com/en/ten-koh/ + + + + + Beacon + 437390000 + + AFSK + 1200bps + + + GMSK + 9600bps + + + CW + + + + WSJT + + + JG6YKY + + + + + amateur information + http://kit-okuyama-lab.com/en/ten-koh/for-amateur-radio-reception/ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TetherSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TetherSat.xml new file mode 100644 index 00000000..34d764ad --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TetherSat.xml @@ -0,0 +1,20 @@ + + + + TetherSat + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437100000 + + GFSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1A (TW-1A SECM-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1A (TW-1A SECM-1).xml new file mode 100644 index 00000000..c16c65dc --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1A (TW-1A SECM-1).xml @@ -0,0 +1,28 @@ + + + + Tianwang-1A (TW-1A SECM-1) + 40928 + Operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 435645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1B (TW-1B NJUST-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1B (TW-1B NJUST-2).xml new file mode 100644 index 00000000..cd5e15ad --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1B (TW-1B NJUST-2).xml @@ -0,0 +1,28 @@ + + + + Tianwang-1B (TW-1B NJUST-2) + 40927 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1C (TW-1C NJFA-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1C (TW-1C NJFA-1).xml new file mode 100644 index 00000000..7b187071 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Tianwang-1C (TW-1C NJFA-1).xml @@ -0,0 +1,28 @@ + + + + Tianwang-1C (TW-1C NJFA-1) + 40926 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 435645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TigriSat.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TigriSat.xml new file mode 100644 index 00000000..39e8b129 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TigriSat.xml @@ -0,0 +1,20 @@ + + + + TigriSat + 40043 + 2014-033AK + Operational + + + Main + 436000000 + + FSK + 9600 + + HNATIG + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Toki (BIRD-J).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Toki (BIRD-J).xml new file mode 100644 index 00000000..46fd39fe --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Toki (BIRD-J).xml @@ -0,0 +1,29 @@ + + + + Toki (BIRD-J) + 42820 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + AFSK + 1200bps + + + GMSK + 9600bps + + + CW + + + JG6YJO + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Tomsk-TPU-120 (RS04S).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Tomsk-TPU-120 (RS04S).xml new file mode 100644 index 00000000..dec4ae04 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Tomsk-TPU-120 (RS04S).xml @@ -0,0 +1,25 @@ + + + + Tomsk-TPU-120 (RS04S) + 42910 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 145800000 + + FSK + 9600bps + + + Voice + + + RS4S + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Trailblazer-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Trailblazer-1.xml new file mode 100644 index 00000000..7aab893e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Trailblazer-1.xml @@ -0,0 +1,18 @@ + + + + Trailblazer-1 + 39400 + Not operational + + + Main + 437425000 + + FSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Triton-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Triton-1.xml new file mode 100644 index 00000000..c588b39b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Triton-1.xml @@ -0,0 +1,22 @@ + + + + Triton-1 + 39427 + 2013-066M + Not operational + + + Main + 2408000000 + + 1200bps RC-BPSK CW + + + CW + + TRIV0 TRIV1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TuPOD.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TuPOD.xml new file mode 100644 index 00000000..ff1315b0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TuPOD.xml @@ -0,0 +1,25 @@ + + + + TuPOD + 41936 + Decayed + Draft + 2019-08-07 + + + Beacon + 437425000 + + GMSK CW + 1200bps + + + CW + + + TUPOD + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_TugSat-1 (CanX-3B).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_TugSat-1 (CanX-3B).xml new file mode 100644 index 00000000..53d14ff4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_TugSat-1 (CanX-3B).xml @@ -0,0 +1,18 @@ + + + + TugSat-1 (CanX-3B) + 39091 + 2013-009F + Not operational + + + Main + 2234400000 + + 32Kbps-256Kbps BPSK + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UAPSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UAPSat-1.xml new file mode 100644 index 00000000..58bac656 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UAPSat-1.xml @@ -0,0 +1,19 @@ + + + + UAPSat-1 + 39571 + Not operational + + + Main + 437385000 + + AFSK + 1200 + + OA0UAP-1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UBAKUSAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UBAKUSAT.xml new file mode 100644 index 00000000..2bc9b813 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UBAKUSAT.xml @@ -0,0 +1,45 @@ + + + + UBAKUSAT + 43467 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437225000 + + CW + 0 + + YM1RAS + + + Beacon + 437325000 + + GMSK + 9600bps + + YM1RAS + + + Repeater + + 145935000 + 145960000 + + + 435200000 + 435250000 + + SSB linear + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UCLSat (GB03).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UCLSat (GB03).xml new file mode 100644 index 00000000..e75f926c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UCLSat (GB03).xml @@ -0,0 +1,24 @@ + + + + UCLSat (GB03) + 42765 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 435975000 + + GMSK + 9600bps + + ON03GB + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UKube-1-FUNcube-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UKube-1-FUNcube-2.xml new file mode 100644 index 00000000..e752510d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UKube-1-FUNcube-2.xml @@ -0,0 +1,35 @@ + + + + UKube-1-FUNcube-2 + 40074 + 2014-037F + Not operational + + true + + 2020-05-24+02:00 + + + Main + 145840000 + + BPSK + 1200 + + + CW + + UKUBE1 + + + Main + 145915000 + + BPSK + 1200 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UNICubeSAT.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UNICubeSAT.xml new file mode 100644 index 00000000..292e6632 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UNICubeSAT.xml @@ -0,0 +1,19 @@ + + + + UNICubeSAT + 38084 + Not operational + + + Main + 437305000 + + FSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UNITEC-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UNITEC-1.xml new file mode 100644 index 00000000..eba7628b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UNITEC-1.xml @@ -0,0 +1,24 @@ + + + + UNITEC-1 + 36578 + 2010-020F + Deep Space + 2020-05-24+02:00 + + + Main + 5840000000 + + AFSK + 1200 + + + CW + + JQ1ZUN + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UNSA-SAT1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UNSA-SAT1.xml new file mode 100644 index 00000000..0c634d4b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UNSA-SAT1.xml @@ -0,0 +1,20 @@ + + + + UNSA-SAT1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 34000000 + + BPSK + 230000 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UNSW-EC0 (AU02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UNSW-EC0 (AU02).xml new file mode 100644 index 00000000..aac92daf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UNSW-EC0 (AU02).xml @@ -0,0 +1,30 @@ + + + + UNSW-EC0 (AU02) + 42723 + Decayed + Draft + 2019-08-07 + + + Beacon + 436530000 + + 4800bps GMSK + 0 + + ON02AU + + + Beacon + 2400500000 + + + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UO-11(UoSAT-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-11(UoSAT-2).xml new file mode 100644 index 00000000..6693c04c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-11(UoSAT-2).xml @@ -0,0 +1,20 @@ + + + + UO-11(UoSAT-2) + 14781 + 1984-021B + Operational + UO-11 + + + Main + 2401500000 + + PSK + + UOSAT-2 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UO-14(UoSAT-3).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-14(UoSAT-3).xml new file mode 100644 index 00000000..baf5fe62 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-14(UoSAT-3).xml @@ -0,0 +1,20 @@ + + + + UO-14(UoSAT-3) + 20437 + 1990-005B + Not operational + UO-14 + + + Main + 0 + + FM + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UO-15 (UoSAT-4).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-15 (UoSAT-4).xml new file mode 100644 index 00000000..979dd47e --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-15 (UoSAT-4).xml @@ -0,0 +1,22 @@ + + + + UO-15 (UoSAT-4) + 20438 + Decayed + UO-15 + Draft + 2019-08-07 + + + Beacon + 435120000 + + CW + 0 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UO-22(UoSAT-5).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-22(UoSAT-5).xml new file mode 100644 index 00000000..2cfb6da1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-22(UoSAT-5).xml @@ -0,0 +1,21 @@ + + + + UO-22(UoSAT-5) + 21575 + 1991-050B + Not operational + UO-22 + + + Main + 435120000 + + FSK + 9600 + + UOSAT5-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UO-36(UoSAT-12).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-36(UoSAT-12).xml new file mode 100644 index 00000000..9f6f6ddb --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-36(UoSAT-12).xml @@ -0,0 +1,21 @@ + + + + UO-36(UoSAT-12) + 25693 + 1999-021A + Not operational + UO-36 + + + Main + 437400000 + + FSK + 38400 + + UO121-11-12 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UO-9 (UoSAT-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-9 (UoSAT-1).xml new file mode 100644 index 00000000..4ddc2935 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UO-9 (UoSAT-1).xml @@ -0,0 +1,24 @@ + + + + UO-9 (UoSAT-1) + 12888 + Decayed + + 1981-10-06 + Vandenberg + + UO-9 + 2020-05-24+02:00 + + + Main + 2401000000 + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UPSat (GR02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UPSat (GR02).xml new file mode 100644 index 00000000..9986b602 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UPSat (GR02).xml @@ -0,0 +1,24 @@ + + + + UPSat (GR02) + 42716 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 435765000 + + GMSK + 9600 Bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_URSA MAIOR (IT02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_URSA MAIOR (IT02).xml new file mode 100644 index 00000000..570a7914 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_URSA MAIOR (IT02).xml @@ -0,0 +1,24 @@ + + + + URSA MAIOR (IT02) + 42776 + Operational + + true + + draft + 2020-05-24+02:00 + + + Beacon + 435950000 + + FSK + 9600 Bps + + URSAMR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_USS Langley.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_USS Langley.xml new file mode 100644 index 00000000..44a89eac --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_USS Langley.xml @@ -0,0 +1,18 @@ + + + + USS Langley + 40652 + Not operational + + + Main + 437475000 + + AFSK + 1200 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-1.xml new file mode 100644 index 00000000..ff5a7275 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-1.xml @@ -0,0 +1,20 @@ + + + + UWE-1 + 28892 + 2005-043C + Not operational + + + Main + 437505000 + + AFSK + 1200 + + DP0UWE + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-2.xml new file mode 100644 index 00000000..3ad83c90 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-2.xml @@ -0,0 +1,23 @@ + + + + UWE-2 + 35934 + 2009-051D + Not operational + + + Main + 437385000 + + AFSK + 1200 + + + CW + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-3.xml new file mode 100644 index 00000000..c9cdfa7d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-3.xml @@ -0,0 +1,54 @@ + + + + UWE-3 + 39446 + 2013-066AG + Operational + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + project information page + http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-3/ + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=134 + + + + + Main + 437385000 + + FSK + 9600 + + + CW + + DP0UWG + + + + + Amateur Radio – PEØSAT - information on telemetry data + https://www.pe0sat.vgnet.nl/satellite/cube-nano-picosats/uwe-3/ + + + + + + + http://www.dk3wn.info/files/uwe3_online.zip + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-4.xml new file mode 100644 index 00000000..74c08861 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UWE-4.xml @@ -0,0 +1,62 @@ + + + + UWE-4 + 43880 + 2018-111E + Not operational + + true + + + 2018-12-27 + Vostochny + + + Verified + 2020-05-24+02:00 + + UWE-4 presentation + http://www7.informatik.uni-wuerzburg.de/forschung/space-exploration/projects/uwe-4/news/ + + + + IARU coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=627 + + + + + Telemetry + 437385000 + + FSK AX25 + 9600 bauds + + DP0UWH + + + Digieater + + 437385000 + + + 437385000 + + + + + + + Telemetry XL file descriptor + http://www7.informatik.uni-wuerzburg.de/fileadmin/10030700/user_upload/forschung/Space_Exploration_Group/UWE4/UWE-4_Beacon.xlsx + + + + + + uwe4@informatik.uni-wuerzburg.de + http://www.dk3wn.info/files/uwe4.zip + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UbatubaSat (Tancredo-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UbatubaSat (Tancredo-1).xml new file mode 100644 index 00000000..586127b7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UbatubaSat (Tancredo-1).xml @@ -0,0 +1,25 @@ + + + + UbatubaSat (Tancredo-1) + 41931 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437200000 + + AFSK + 1200 Bps + + + CW + 0 + + PY0ETA + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Uguisu (BIRD-JPN) .xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Uguisu (BIRD-JPN) .xml new file mode 100644 index 00000000..43514e9c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Uguisu (BIRD-JPN) .xml @@ -0,0 +1,57 @@ + + + + Uguisu (BIRD-JPN) + 44330 + Operational + + true + + + 2019-04-17 + + + + Draft + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=617 + coordinated by IARU + coordonné par l'IARU + + + Bird3 hamradio information + http://birds3.birds-project.com/document/amateur/ + Radio documents + documents radio + + + + Beacon + 435375000 + + CW + + + + GMSK + 9600 + + + + + + + + + + + BIRDS Project - JGMNB + https://www.formpl.us/form/6372043568185344 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UiTMSat-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UiTMSat-1.xml new file mode 100644 index 00000000..95fcc5ba --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UiTMSat-1.xml @@ -0,0 +1,59 @@ + + + + UiTMSat-1 + 43589 + 1998-067PD + Operational + + true + + + 2018-08-10 + ISS + + + Verified + 2020-05-24+02:00 + + BIRDS-2 Operation page + http://birds2.birds-project.com/operation/ + The second BIRDS Project, BIRDS-2, started in November, 2016. The participating countries are Bhutan, Malaysia, Philippines and Japan. 11 students will develop 3 identical 1U CubeSats which will have capability to perform same missions. The bus system for BIRDS-2 takes heritage from BIRDS-1 bus system and incorporates the lessons learned from BIRDS-1. + + + + IARU + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=563 + + + + + Main + 437375000 + + BPSK + 1200 + + + CW + + JG6YKN + + + + + Beacon Sequence and Format of BIRDS-2 CubeSats + http://birds2.birds-project.com/operation/ + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + BIRDS-2 Data Submission + http://birds2.birds-project.com/data-submission/ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UniBRITE (CanX-3A).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UniBRITE (CanX-3A).xml new file mode 100644 index 00000000..341a3ff1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UniBRITE (CanX-3A).xml @@ -0,0 +1,18 @@ + + + + UniBRITE (CanX-3A) + 39092 + 2013-009G + Not operational + + + Main + 145890000 + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UniSat-5.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UniSat-5.xml new file mode 100644 index 00000000..0e383f7f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UniSat-5.xml @@ -0,0 +1,19 @@ + + + + UniSat-5 + 39421 + 2013-066F + Not operational + + + Main + 437175000 + + GMSK + 9600 + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_UniSat-6.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_UniSat-6.xml new file mode 100644 index 00000000..6469385b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_UniSat-6.xml @@ -0,0 +1,28 @@ + + + + UniSat-6 + 40012 + 2014-033C + Operational + + true + + Verified + 2020-05-24+02:00 + + + Main + 437425000 + + GMSK + 9600 + + + CW + + II0US + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_VDNH-80.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_VDNH-80.xml new file mode 100644 index 00000000..bed54c8c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_VDNH-80.xml @@ -0,0 +1,21 @@ + + + + VDNH-80 + 44392 + Operational + draft + 2019-08-07 + + + Beacon + 436500000 + + mobitex + 4800 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-2.xml new file mode 100644 index 00000000..4ed8147c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-2.xml @@ -0,0 +1,25 @@ + + + + VELOX-2 + 41171 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 145930000 + + BPSK CW + 1200bps + + + CW + 0 + + VELOX2 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-I.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-I.xml new file mode 100644 index 00000000..5757830a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-I.xml @@ -0,0 +1,23 @@ + + + + VELOX-I + 40057 + 2014-034E + Not operational + + + Main + 145980000 + + FSK + 9600 + + + CW + + VELOXI + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-P2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-P2.xml new file mode 100644 index 00000000..cfb1881a --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_VELOX-P2.xml @@ -0,0 +1,22 @@ + + + + VELOX-P2 + 39438 + 2013-066Y + Not operational + + + Main + 145980000 + + BPSK + 1200 + + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_VO-52(Hamsat).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_VO-52(Hamsat).xml new file mode 100644 index 00000000..09e9f653 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_VO-52(Hamsat).xml @@ -0,0 +1,27 @@ + + + + VO-52(Hamsat) + 28650 + 2005-017B + Not operational + + + Main + 145936000 + + SSBCarrier + + Indian + + + Main + 145860000 + + CW + + Dutch + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_VO-96 (ExseedSat-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_VO-96 (ExseedSat-1).xml new file mode 100644 index 00000000..8dc25947 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_VO-96 (ExseedSat-1).xml @@ -0,0 +1,58 @@ + + + + VO-96 (ExseedSat-1) + 43758 + Not operational + + true + + + 2018-12-03 + Vandenberg Air Force Base, California + + VUsat-OSCAR 96 (VO-96) + Verified + 2020-05-24+02:00 + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=636 + ExseedSat 1 has been coordinated by IARU + ExseedSat 1 a été coordonné par l'IARU + + + + TLM 1 + 145900000 + + + + + + + + FM voice repeater and digipeater (APRS ) + + 435340000 + + + 145900000 + + FM + 67 + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_VZLUsat-1 (CZ02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_VZLUsat-1 (CZ02).xml new file mode 100644 index 00000000..62ac5fc0 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_VZLUsat-1 (CZ02).xml @@ -0,0 +1,39 @@ + + + + VZLUsat-1 (CZ02) + 42790 + Operational + + true + + INIT + 2020-05-24+02:00 + + Pilsen Ground Station + https://www.pilsencube.zcu.cz/vzlusat1/ + + + + + Beacon + 437240000 + + MSK + 4800 bps + + + CW + 20 Wpm + + VZLUSAT1 + + + + + information for amateur radio comunitie + https://www.pilsencube.zcu.cz/vzlusat1/static_radio_amateur.html + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Venta-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Venta-1.xml new file mode 100644 index 00000000..1e2698e8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Venta-1.xml @@ -0,0 +1,20 @@ + + + + Venta-1 + 42791 + 2017-036AC + Not operational + Verified + 2018-11-04 + + + Main + 437325000 + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Vermont Lunar.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Vermont Lunar.xml new file mode 100644 index 00000000..e578127d --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Vermont Lunar.xml @@ -0,0 +1,20 @@ + + + + Vermont Lunar + 39407 + Decayed + 2020-05-24+02:00 + + + Main + 437305000 + + FSK + 9600 + + W1VTC2 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_WASEDA-SAT3.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_WASEDA-SAT3.xml new file mode 100644 index 00000000..0676c393 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_WASEDA-SAT3.xml @@ -0,0 +1,25 @@ + + + + WASEDA-SAT3 + 41933 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437290000 + + CW + 0 + + + FSK + 1200 Bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_WE_WISH.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_WE_WISH.xml new file mode 100644 index 00000000..25fa890f --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_WE_WISH.xml @@ -0,0 +1,27 @@ + + + + WE_WISH + 38856 + Decayed + Verified + 2020-05-24+02:00 + + + Main + 437505000 + + CW + + + SSTV + + + AFSK + 2400 + + JQ1ZIJ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_WO-18(WEBERSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_WO-18(WEBERSAT).xml new file mode 100644 index 00000000..5cdc72c4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_WO-18(WEBERSAT).xml @@ -0,0 +1,21 @@ + + + + WO-18(WEBERSAT) + 20441 + 1990-005F + Not operational + WO-18 + + + Main + 0 + + PSK + 1200 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_WO-39(JAWSAT).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_WO-39(JAWSAT).xml new file mode 100644 index 00000000..4260c89c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_WO-39(JAWSAT).xml @@ -0,0 +1,21 @@ + + + + WO-39(JAWSAT) + 26061 + 2000-004A + Not operational + WO-39 + + + Main + 0 + + FSK + 9600 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Waseda-SAT2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Waseda-SAT2.xml new file mode 100644 index 00000000..410ea222 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Waseda-SAT2.xml @@ -0,0 +1,23 @@ + + + + Waseda-SAT2 + 36574 + Decayed + 2020-05-24+02:00 + + + Main + 437485000 + + FSK + 1200 + + + CW + + WASEDA + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Wren.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Wren.xml new file mode 100644 index 00000000..22b0fc59 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Wren.xml @@ -0,0 +1,22 @@ + + + + Wren + 39435 + 2013-066V + Not operational + + + Main + 437405000 + + FSK + 1200 + + + CW + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_X-CubeSat (FR01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_X-CubeSat (FR01).xml new file mode 100644 index 00000000..392e8418 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_X-CubeSat (FR01).xml @@ -0,0 +1,25 @@ + + + + X-CubeSat (FR01) + 42707 + Decayed + Draft + 2019-08-07 + + + Beacon + 437020000 + + GMSK + 9600 + + + AFSK1k2 + 1200 + + ON01FR + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_XO-53(SSETI).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_XO-53(SSETI).xml new file mode 100644 index 00000000..023de6e3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_XO-53(SSETI).xml @@ -0,0 +1,21 @@ + + + + XO-53(SSETI) + 28894 + 2005-043E + Not operational + XO-53 + + + Main + 437250000 + + FSK + 9600 + + SSETI1 + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2A (CAS 3).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2A (CAS 3).xml new file mode 100644 index 00000000..ff6e6b42 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2A (CAS 3).xml @@ -0,0 +1,78 @@ + + + + XW-2A (CAS 3) + 40903 + 2015-049E + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + Draft + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréquences exploitées par la XW-2 constellation + + + + CW Beacon + 145660000 + + CW + + BJ1SB + + + Digital Telemetry + 145660000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SB + + + Linear Transponder + + 435030000 + 435050000 + + + 145665000 + 145685000 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2B (CAS 3B).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2B (CAS 3B).xml new file mode 100644 index 00000000..9621c29b --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2B (CAS 3B).xml @@ -0,0 +1,78 @@ + + + + XW-2B (CAS 3B) + 40911 + 2015-049N + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + verified + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation + + + + CW Beacon + 145725000 + + CW + + BJ1SC + + + Digital Telemetry + 145705000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SC + + + Linear Transponder + + 435090000 + 435110000 + + + 145815000 + 145795000 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2C (CAS 3C).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2C (CAS 3C).xml new file mode 100644 index 00000000..69aee8fe --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2C (CAS 3C).xml @@ -0,0 +1,78 @@ + + + + XW-2C (CAS 3C) + 40906 + 2015-049H + Operational + + 2015-09-19 + Taiyuan Satellite Launch Center + + + Verified + 2015-11-02 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation + + + + CW Beacon + 145790000 + + CW + + BJ1SD + + + Digital Telemetry + 145770000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SD + + + Linear Transponder + + 435150000 + 435170000 + + + 145795000 + 14581500 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2D (CAS 3D).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2D (CAS 3D).xml new file mode 100644 index 00000000..096c4688 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2D (CAS 3D).xml @@ -0,0 +1,81 @@ + + + + XW-2D (CAS 3D) + 40907 + 2015-049J + Operational + + true + + + 2015-09-19 + Taiyuan Satellite Launch Center + + + Draft + 2020-05-24+02:00 + + XW-2/CAS-3 Frequency Information Chart + https://ukamsat.files.wordpress.com/2015/05/xw-2_cas-3_-satellites-frequency-allocation.pdf + Frequency information for all XW-2 constellation + Information sur les fréuence exploitées par la XW-2 constellation + + + + CW Beacon + 145855000 + + CW + + BJ1SE + + + Digital Telemetry + 145835000 + + GMSK + 9600 + + + GMSK + 19200 + + BJ1SE + + + Linear Transponder + + 435210000 + 435230000 + + + 14586000 + 14588000 + + FM + yes + + + + + XW-2 CW Telemetry Encoding Format + https://ukamsat.files.wordpress.com/2015/05/xw-2-cw-telemetry-encoding-format.pdf + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2F (CAS-3F).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2F (CAS-3F).xml new file mode 100644 index 00000000..dd2724c1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_XW-2F (CAS-3F).xml @@ -0,0 +1,42 @@ + + + + XW-2F (CAS-3F) + 40910 + Operational + INIT + 2019-08-07 + + + Beacon + 145975000 + + CW + 0 + + BJ1SG + + + Beacon + 145955000 + + GMSK + 9600 bps + + BJ1SG + + + Repeater + + 435330000 + 435350000 + + + 145980000 + 146000000 + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Xatcobeo.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Xatcobeo.xml new file mode 100644 index 00000000..9544e763 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Xatcobeo.xml @@ -0,0 +1,20 @@ + + + + Xatcobeo + 38082 + Decayed + 2020-05-24+02:00 + + + Main + 437365000 + + FFSKSSRC + 1200 + + W + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-1 (TY-1 Tianyi-1).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-1 (TY-1 Tianyi-1).xml new file mode 100644 index 00000000..83bbb9d4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-1 (TY-1 Tianyi-1).xml @@ -0,0 +1,39 @@ + + + + Xiaoxiang-1 (TY-1 Tianyi-1) + 41842 + Unknown + Drfaft + 2019-08-07 + + + Beacon + 2401600000 + + GMSK + 9600 bps + + + + + Beacon + 437500000 + + GMSK + 9600 bps + + + + + Beacon + 437525000 + + GMSK + 9600 bps + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-2 (TY-2 Tianyi-2).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-2 (TY-2 Tianyi-2).xml new file mode 100644 index 00000000..c48bd8bf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-2 (TY-2 Tianyi-2).xml @@ -0,0 +1,54 @@ + + + + Xiaoxiang-2 (TY-2 Tianyi-2) + 43155 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 435350000 + + FSK + 9600 Bds + + + + + T1 + + 435350000 + + + 435350000 + + 9k6 GMSK + + + T2 + + 2403000000 + + + 2403000000 + + 5Mbps OFDM + + + T3 + + 5653000000 + + + 5833000000 + + 5Mbps OFDM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-4 (TY-4 Tianyi-4).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-4 (TY-4 Tianyi-4).xml new file mode 100644 index 00000000..612b4102 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_Xiaoxiang-4 (TY-4 Tianyi-4).xml @@ -0,0 +1,51 @@ + + + + Xiaoxiang-4 (TY-4 Tianyi-4) + 43669 + Operational + draft + 2019-08-07 + + + Beacon + 435925000 + + GMSK + 9600 + + + + + T1 + + 435925000 + + + 435925000 + + 9k6 GMSK + + + T2 + + 2409000000 + + + 2409000000 + + 5Mbps OFDM + + + T3 + + 5659000000 + + + 5839000000 + + 5Mbps OFDM + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ZA-AeroSat(AZ01).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ZA-AeroSat(AZ01).xml new file mode 100644 index 00000000..d1de5625 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ZA-AeroSat(AZ01).xml @@ -0,0 +1,24 @@ + + + + ZA-AeroSat(AZ01) + 42713 + Operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 437200000 + + GMSK + 9600bps + + ON01AZ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ZACube-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ZACube-1.xml new file mode 100644 index 00000000..7c58c652 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ZACube-1.xml @@ -0,0 +1,73 @@ + + + + ZACube-1 + 39417 + 2013-066B + Operational + + true + + + 2013-11-21 + Orenburg, Russia + + Verified + 2020-05-24+02:00 + + F'SATI Web Page + http://www.cput.ac.za/blogs/fsati/zacube-1/ + Project page + + + Twitter + https://www.twitter.com/fsatispace + + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=204 + + + + + Main + 14099000 + + GMSK + 9600 + + + AFSK + 1200 + + + CW + + 123456 + + + Repeater + + 145860000 + + + 437245000 + + + + + + + AX.25 beacon content + http://www.isispace.nl/HAM/qb50p_ax25beacon.pdf + + + QB50 upload interface + https://upload.qb50.eu/ + + fsatispace@gmail.com + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_ZACube-2.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_ZACube-2.xml new file mode 100644 index 00000000..b048f23c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_ZACube-2.xml @@ -0,0 +1,77 @@ + + + + ZACube-2 + 43907 + 2013-066B + Unknown + + 2018-12-27 + Vostochny + + + Verified + 2018-12-27 + + Warning + + Hamradio paylaod not clear + Charge utile radioamateur pas clairement définie - The coordinated frequencies are beacon 14.099MHz, uplinks on 437.525 and 1260.25MHz and downlinks on 437.345 and 2405.00MHz + + + IARU Coordination + http://www.amsatuk.me.uk/iaru/finished_detail.php?serialnum=205 + IZACUBE 2 has been coordinated by IARU + IZACUBE 2 a été coordonné par l'IARU + + + Project Site + http://www.cput.ac.za/blogs/fsati/zacube-2/ + + + + + + Telemetry 1 + 14099000 + + BPSK + 9600 + + + + + repeater 1(TBC) + + 437525000 + + + 437345000 + + + + + repeater 2(TBC) + + 1260250000 + + + 2405000000 + + + + + + + + + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_e-st@r.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_e-st@r.xml new file mode 100644 index 00000000..525280fd --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_e-st@r.xml @@ -0,0 +1,19 @@ + + + + e-st@r + 38079 + Not operational + + + Main + 437445000 + + AFSK + 1200 + + E-STAR-I + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_i-INSPIRE II (AU03).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_i-INSPIRE II (AU03).xml new file mode 100644 index 00000000..06dbc7a1 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_i-INSPIRE II (AU03).xml @@ -0,0 +1,20 @@ + + + + i-INSPIRE II (AU03) + 42731 + Decayed + INIT + 2019-08-07 + + + + + GMSK + 4800 bps + + ON03AU + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_myPocketQub.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_myPocketQub.xml new file mode 100644 index 00000000..a0ba5e35 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_myPocketQub.xml @@ -0,0 +1,19 @@ + + + + myPocketQub + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437425000 + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_nCUBE-1.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_nCUBE-1.xml new file mode 100644 index 00000000..af4d2292 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_nCUBE-1.xml @@ -0,0 +1,21 @@ + + + + nCUBE-1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + GMSK + 9600 + + LA1CUB + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_nSight-1 (AZ02).xml b/ModuleSatelliteDatabase/src/test/data/in/AL_nSight-1 (AZ02).xml new file mode 100644 index 00000000..e3334c6c --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_nSight-1 (AZ02).xml @@ -0,0 +1,35 @@ + + + + nSight-1 (AZ02) + 42726 + Operational + Draft + 2019-08-07 + + DK3WN information + http://www.dk3wn.info/p/?page_id=29535 + + + + + Beacon + 435900000 + + GMSK + 9600bps + + ON02AZ + + + Beacon + 2405000000 + + GMSK + 9600b ps + + ON02AZ + + + + diff --git a/ModuleSatelliteDatabase/src/test/data/in/AL_skCUBE.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_skCUBE.xml new file mode 100644 index 00000000..7ffedea3 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_skCUBE.xml @@ -0,0 +1,49 @@ + + + + skCUBE + 42789 + Not operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 437100000 + + CW + + + + GMSK + 9600 Bps + + + + Digipeater + + 2401000000 + + + 437100000 + + + + + + + SATNOGS : Kaitai Struct for Telemetry + https://gitlab.com/librespacefoundation/satnogs/satnogs-decoders/blob/master/ksy/skcube.ksy + + + + + + + + + + diff --git a/ModuleSatelliteDatabase/src/test/java/org/josast/AmsatList/Commande/executeCommandeTest.java b/ModuleSatelliteDatabase/src/test/java/org/josast/AmsatList/Commande/executeCommandeTest.java new file mode 100644 index 00000000..3e24d0e4 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/java/org/josast/AmsatList/Commande/executeCommandeTest.java @@ -0,0 +1,48 @@ +package org.josast.AmsatList.Commande; + +import static org.junit.Assert.*; + +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +public class executeCommandeTest { + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + } + + @Before + public void setUp() throws Exception { + } + + @After + public void tearDown() throws Exception { + } + + @Test + public void testExecute() { + + String filecmd2 = "src\\test\\data\\FileIn\\StatusSatelliteCmdcommandeSave.csv"; + String inputDirectory = "src/test/data/in"; + String outputDirectory = "src/test/data/out"; + + CommandeList cl = new CommandeList(filecmd2); + System.out.println(cl.getListeCommande().size()); + executeCommande ex = new executeCommande(); + ex.execute(inputDirectory, outputDirectory, cl); + + + + assertTrue( true ); + } + + + +} -- GitLab From 1d4fdfb48231445fb4f61a66d8053a42bdafa498 Mon Sep 17 00:00:00 2001 From: xtof Date: Sun, 24 May 2020 15:03:47 +0200 Subject: [PATCH 10/10] Feat : add commande & diff function -- GitLab