diff --git a/ApplicationSatelliteDatabaseCli/README.md b/ApplicationSatelliteDatabaseCli/README.md new file mode 100644 index 0000000000000000000000000000000000000000..80ed778964dad905593f29e0556da07bee00988b --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/README.md @@ -0,0 +1,97 @@ +# 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 + +``` +``` +AppCli 0.72 +usage: -h [-C] [-h] [-i ] [-I ] [-M] [-O + ] [-o ] [-U] [-V] + -C,--Check verify AmsatList File data + -h,--help display help message + -i,--InputFile Input file + -I,--Input Directory Input directory with all input + xml files (*.xml) + -M,--Merge Merge all input folder to new + Directoy to ouput xml file + -O,--Output Directory Output directory with all input + xml files (*.xml) + -o,--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. + +Please make sure to update tests as appropriate. + +## License +[GNU Lesser General Public License v2.1](http://choosealicense.com/licenses/lgpl-2.1/) diff --git a/ApplicationSatelliteDatabaseCli/pom.xml b/ApplicationSatelliteDatabaseCli/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..f71e48b010093cd89592ea64518391221a2d88ce --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/pom.xml @@ -0,0 +1,114 @@ + + + + 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.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 0000000000000000000000000000000000000000..e1135ae38d70f4a9a73f4096011c1bad964c2278 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/AppCli.java @@ -0,0 +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 Christophe + * + */ + +/** + * @author christophe + * + */ +public class AppCli { + + /** + * vec list of command. + */ + private Vector 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 new file mode 100644 index 0000000000000000000000000000000000000000..85935c8ccc42ef6a987ec37d097232806a9a5866 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmd.java @@ -0,0 +1,35 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import java.util.logging.Logger; + +import org.josast.ModuleSatelliteDatabase.CheckAmsatListFile; + +public class CheckCmd implements Cmd { + + /** + * 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 new file mode 100644 index 0000000000000000000000000000000000000000..3a8e9989b9f31ec06771f66825a5c8c8320e1c7a --- /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 0000000000000000000000000000000000000000..f26ce67b954306857e4482c4f569dbcb2878f567 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/HelpCmd.java @@ -0,0 +1,18 @@ +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 0000000000000000000000000000000000000000..5725eb22b848588d50f77e8f88ee73d0e0bb7f9c --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/MergeCmd.java @@ -0,0 +1,27 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import java.util.logging.Logger; + +import org.josast.ModuleSatelliteDatabase.MergeAmsatListFile; + +public class MergeCmd implements Cmd { + /** + * 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 new file mode 100644 index 0000000000000000000000000000000000000000..19fe63935cf8f91a3705d8a17a0209f4b603f924 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/OptionsAnalysis.java @@ -0,0 +1,249 @@ +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 { + /** + * logger. + */ + private Logger log = Logger.getLogger(getClass().getName()); + /** + * List of command to execute. + */ + private Vector listeCmd = new Vector(); + /** + * 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 getCommandes() { + return listeCmd; + } + + /** + * @param listeCmds + */ + public void setListeCmd(final Vector listeCmds) { + this.listeCmd = listeCmds; + } + + 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 checkOption = Option.builder("C") + + .longOpt("Check") // + + .desc("verify AmsatList File data") + + .hasArg(false) + + .required(false) + + .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("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") + + .longOpt("OutputFile") // + + .desc("output file") + + .hasArg(true) + + .argName("OutputFile") + + .required(false) + + .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") + + .desc("display help message") + + .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); + + return options; + + } + + private Vector interprete(CommandLine line, String[] args) { + + Vector cmdList = new Vector(); + ParameterSingleton parameter = ParameterSingleton.getInstance(); + + parameter.setOutputFile(line.getOptionValue("o")); + log.info("Output file dir" + line.getOptionValue("o")); + parameter.setInputDirectory(line.getOptionValue("I")); + log.info("Input dir" + line.getOptionValue("I")); + parameter.setOutputDirectory(line.getOptionValue("O")); + log.info("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); + } + + 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 new file mode 100644 index 0000000000000000000000000000000000000000..b348883749fcef88e5d6749dd742c027f45e956c --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/ParameterSingleton.java @@ -0,0 +1,138 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import org.apache.commons.cli.Options; + +public class ParameterSingleton { + + /** + * 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 new file mode 100644 index 0000000000000000000000000000000000000000..bb35c9e5755d9cbb4f68a08a1f347b80317ec5f3 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/UpdateCmd.java @@ -0,0 +1,55 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import java.io.File; +import java.util.logging.Logger; + +import org.josast.ModuleSatelliteDatabase.UpdateAmsatListFile; + +public class UpdateCmd implements Cmd { + + /** + * 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 new file mode 100644 index 0000000000000000000000000000000000000000..1655078edc4116cdce1c94916cbeeba63a3df840 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/main/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/VersionCmd.java @@ -0,0 +1,20 @@ +package org.josast.ApplicationSatelliteDatabaseCli.cmd; + +import org.josast.ApplicationSatelliteDatabaseCli.AppCli; + +public class VersionCmd implements Cmd { + + /** + * software version. + */ + private String version = "0.72"; + + /** + * + */ + @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 0000000000000000000000000000000000000000..81f94589c73c8d1aa5a7a60727da8d902eb86541 --- /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 0000000000000000000000000000000000000000..cddab53028b785616962e77782c808937e923a73 --- /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 0000000000000000000000000000000000000000..112c2d567858eccd549a9e7a6b36e6d65cd02bb5 --- /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 0000000000000000000000000000000000000000..b7e18346707c4f3c052ae2c88919b74a86c1b059 --- /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 0000000000000000000000000000000000000000..2c9f304a378e64b783b00a49b08c8b2c4c6f8ea5 --- /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></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 0000000000000000000000000000000000000000..f6348ec7b92e0b59f35114ed503422f9c6a27ae8 --- /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 0000000000000000000000000000000000000000..7bee14a87857a3fb12d13724829c0b87997d5028 --- /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 0000000000000000000000000000000000000000..97704389dbdfbe9e1357f32836cf6fe09e98ecdf --- /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 0000000000000000000000000000000000000000..8f032330037f07659a34eaebdfcbee8ae7eef365 --- /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 0000000000000000000000000000000000000000..9474b7dcd5a3a58402540411f47de3ea2a69a50b --- /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 0000000000000000000000000000000000000000..d32b04b253dd039662fd3a2f3253b19ec119bd64 --- /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 0000000000000000000000000000000000000000..33bcf6cd68ea01074852009b5912832137884794 --- /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 0000000000000000000000000000000000000000..9da676ba57fa083b8f9379977c5b4ae5d1cdcb67 --- /dev/null +++ b/ApplicationSatelliteDatabaseCli/src/test/java/org/josast/ApplicationSatelliteDatabaseCli/cmd/CheckCmdTest.java @@ -0,0 +1,39 @@ +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(); + 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 0000000000000000000000000000000000000000..b34129f50af223a127b1ba1698b24af4edaf78ee --- /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 0000000000000000000000000000000000000000..3eb7085b9f6c0a234810d1da6ba5e4ac8cd2cda9 --- /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 cb8414d13a4f268adc56a8e81e751dda393c26dc..9a6a1bcf8fa412b00cc7f031ecfd6313edcfdf16 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,15 +101,17 @@ <version>20190722</version> </dependency> +<!-- read csv file --> <dependency> - <groupId>com.github.spotbugs</groupId> - <artifactId>spotbugs-maven-plugin</artifactId> - <version>4.0.0</version> + <groupId>com.opencsv</groupId> + <artifactId>opencsv</artifactId> + <version>4.5</version> </dependency> + </dependencies> <build> @@ -168,14 +179,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/AmsatList/Commande/Commande.java b/ModuleSatelliteDatabase/src/main/java/org/josast/AmsatList/Commande/Commande.java new file mode 100644 index 0000000000000000000000000000000000000000..3e745791e77429fb0b4353afc5899791b64928f5 --- /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 0000000000000000000000000000000000000000..b4b8fb028a9a68697e3298f8c6787cff858c50c3 --- /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 0000000000000000000000000000000000000000..4d97c6f616b9a1d3c4997d67f6716515fd3bcf8d --- /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 0000000000000000000000000000000000000000..bbc9779e58dfb0cc3bb8393d53a86156c68237ad --- /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 0000000000000000000000000000000000000000..e65e42130a01bfbc2d759f6e7b1e7f60b94a862e --- /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 new file mode 100644 index 0000000000000000000000000000000000000000..6866ae7c3f774f59cb7a5869e21616937d4382da --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AmsatListFile.java @@ -0,0 +1,140 @@ +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.josast.AmsatList.generated.AmsatList; +import org.josast.AmsatList.generated.Satellites; + +public class AmsatListFile { + + FlatSatList amsatListFlat = new FlatSatList(); + AmsatList amsatList = null; + + /** + * @param filein + * @return + */ + public AmsatList openAmsatList(String filein) { + File fileIn = new File(filein); + return openAmsatList(fileIn); + } + + /** + * @param filein + * @return + */ + public AmsatList openAmsatList(File filein) { + + + 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(); + } + + 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 + */ + 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(); + } + } + + } + + 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 0000000000000000000000000000000000000000..69cd59e2eb269d2b9e11c48871433136101459ff --- /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/AppCli.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/AppCli.java deleted file mode 100644 index f7718fe0d298ae71e9e28d48d8a4da7b5131c20b..0000000000000000000000000000000000000000 --- 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 0000000000000000000000000000000000000000..34f188784baf619da6b69a4a99ab01e9662783a7 --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/CheckAmsatListFile.java @@ -0,0 +1,112 @@ +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 { + /** + * 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/FlatSatList.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/FlatSatList.java new file mode 100644 index 0000000000000000000000000000000000000000..9790e62b5fda0919121e5fa4f45df08e74fbdbc8 --- /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 0000000000000000000000000000000000000000..b360670ce31aa74e82cc9459d8d188e47493fe7b --- /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/MergeAmsatListFile.java b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java index d2da2a6bc783c4069b240a5740f219286a259088..3c6067334f86e9d94123432fccfa0425dd7fd106 100644 --- a/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/MergeAmsatListFile.java @@ -19,153 +19,140 @@ 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 new file mode 100644 index 0000000000000000000000000000000000000000..28e2511f93ed70ccdb6592e3dd50ff587eeb767e --- /dev/null +++ b/ModuleSatelliteDatabase/src/main/java/org/josast/ModuleSatelliteDatabase/UpdateAmsatListFile.java @@ -0,0 +1,181 @@ +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>(); + /** + * + */ + private AmsatList al; + /** + * + */ + private AmsatListFile alf = null; + + /** + * @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); + } + + /** + * + */ + @Deprecated + public void updateStatus() { + + + + // 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); + + 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 :" + sat.getStatus()); + } + + } + + } + + } + + + 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 new file mode 100644 index 0000000000000000000000000000000000000000..155a3ae723c04ceec9f7f2dae5db0cc490e21409 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/FileIn/AmsatList.xml @@ -0,0 +1,16228 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<AmsatList> + <Satellites> + <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/ + + + + Beacon + 437300000 + + GMSK + 9600 + + + GMSK + 1200 + + + GMSK + 2400 + + + GMSK + 4800 + + + + + + + 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 + + + + + + + + + + + + + + + + + + + + 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 + + + + + + + 4M-LXS + 0 + To be launch + 2020-05-24+02:00 + + + Main + 145980000 + + WSJT-JT65B + + LX0OHB + + + + + 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 + + + + + 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 + + + + + AAUSAT + 27846 + 2003-031G + Not operational + + + Main + 437450000 + + GMSK + 9600 + + + + + + + AAUSat3 + 39087 + 2013-009B + Not operational + + + Main + 437425000 + + FSK + 400 + + + CW + + OZ3CUB + + + + + 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 + + + + + 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 + + + + + + + AAUSAT-II + 32788 + 2008-021F + Operational + + true + + 2020-05-24+02:00 + + + Main + 437432000 + + FFSK/MSK + 1200 + + + + + Main + 437432000 + + FSK + 9600 + + OZ2CUB + + + + + 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 + + + + + + + + + + + + + + + + + Aeneas + 38760 + 2012-048C + Operational + + true + + 2020-05-24+02:00 + + + Main + 437600000 + + AFSK + 1200 + + KE6YFA-1 + + + + + AeroCube1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + GFSK + 9600 + + + + + + + AeroCube-2 + 31122 + 2007-012F + Not operational + + + Main + 0 + + GFSK + 9600 + + + + + + + AESP14 + 40389 + Not operational + + + Main + 437600000 + + GFSK + 9600 + + + + + + AggieSat-4 + 41313 + Not operational + + + Main + 436250000 + + FSK + 9600 + + + + + + AISat + 40054 + 2014-034B + Not operational + + + Main + 437511000 + + CW + + DP0AIS + + + + + AIST-1 (RS-41) + 39492 + 2013-078C + Not operational + + + Main + 435265000 + + CW + + + + + + AIST-2 (RS-43) + 39133 + 2013-015D + Not operational + + + Main + 435265000 + + CW + + + + + + AISTECHSAT-2 + 43768 + Operational + Draft + 2019-08-07 + + + Beacon + 436730000 + + GMSK + 4800 + + + GMSK + 49600 + + + + + + + AISTECHSAT-3 + 44103 + Operational + Draft + 2019-08-07 + + + Beacon + 436730000 + + GFSK + 9600 + + + GFSK + 4800 + + + + + + + ALEXANDER (PhoneSat2) + 39146 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + + Al-Farabi-2 + 43805 + Operational + Draft + 2019-08-07 + + + Beacon + 436500000 + + GMSK + 4800bps + + + CW + + + UN1GWA + + + + + All-Star - THEIA + 39683 + Unknown + 2020-05-24+02:00 + + + Main + 2401700000 + + BPSK + 256000 + + COSGC1AS + + + + + ALMASat-1 + 38078 + 2012-006B + Not operational + + + Main + 437465000 + + FSK + 1200 + + ALMASAT + + + + + 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 + + + + + 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 + + + + + + + + + + + + + + + + + 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 + + + + + + + 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 + + + + + ANDE-2(Pollux) + 35693 + Decayed + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + POLLUX-1 + + + Main + 145825000 + + AFSK + 1200 + + KD4HBO-1 + + + + + ANTELSat + 40034 + 2014-033AA + Not operational + + + Main + 437280000 + + AFSK GFSK/MSK + 1200 + + + CW + + CX1SAT + + + + + ANUSAT + 34808 + Decayed + Draft + 2019-08-07 + + + Beacon + 137400000 + + AFSK + 1200 bps + + + + + + + AO-1(Oscar-1) + 214 + Decayed + AO-1 + Verified + 2020-05-24+02:00 + + + Main + 144983000 + + CW + + + + + + + AO-2(Oscar-2) + 305 + Decayed + AO-2 + Verified + 2020-05-24+02:00 + + + 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 + 2020-05-24+02:00 + + + 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 + + + + + + + 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 + + + + + + + AO-10(Phase-3B) + 14129 + 1983-058B + Not operational + AO-10 + + + Main + 145810000 + + CW + + + + + + + AO-13(Phase-3C) + 19216 + Decayed + AO-13 + 2020-05-24+02:00 + + + Main + 145812000 + + CW + + + + + + + AO-16(PACSAT) + 20439 + 1990-005D + Not operational + AO-16 + + + Main + 2401143000 + + PSK + + PACSAT-11-12 + + + + + AO-24 (ARSENE) + 22654 + Not operational + AO-24 + Draft + 2020-05-24+02:00 + + + Beacon + 2446540000 + + AFSK + 1200bps + + + + + Beacon + 145975000 + + AFSK + 1200bps + + + + + + + AO-27(EYESAT-A) + 22825 + 1993-061C + Not operational + AO-27 + + + Main + 436795000 + + AFSK + 1200 + + + + + + + AO-37(ASUSAT) + 26065 + 2000-004E + Not operational + AO-37 + + + Main + 0 + + FSK + 9600 + + + + + + + AO-40(Phase-3D) + 26609 + 2000-072B + Not operational + AO-40 + + + Main + 2401323000 + + PSK + 400 + + + + + + + AO-49(Rubin-2) + 27605 + 2002-058A + Not operational + AO-49 + + + Main + 145825000 + + U/1200D/9600 + + MSK + + + + + 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 + + + + + AO-54(SuitSat) + 28933 + Not operational + AO-54 + Draft + 2020-05-24+02:00 + + + Main + 0 + + FM + + + + + + + AO-71(AubieSat-1) + 37854 + 2011-061E + Not operational + + + Main + 437473000 + + AFSK + 1200 + + + CW + + + + + + + AO-85 (Fox-1A) + 40967 + 2015-058D + Operational + + true + + 2020-05-24+02:00 + + + Main + 145980000 + + FM CTCSS 670Hz + + + + + + 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 + + + + + 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/ + + + + 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 + + + + + Aoba-VELOX-III + 41935 + Decayed + Draft + 2019-08-07 + + + Beacon + 437375000 + + CW + 0 + + + AFSK + 1200 bps + + JG6YBW + + + + + 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 + + + + + ARC-1 + 40969 + 2015-058F + Not operational + + + Main + 437565000 + + CW + + + + + + ArduSat-1 + 39412 + Decayed + 2020-05-24+02:00 + + + Main + 437000000 + + MSK + 9600 + + + CW + + WG9XFC-1 + + + + + ArduSat-2 + 39570 + Decayed + 2020-05-24+02:00 + + + Main + 437000000 + + 9600bps MSK CCSDS + + + + + + ArduSat-X + 39414 + Decayed + 2020-05-24+02:00 + + + Main + 437007000 + + MSK + 9600 + + + CW + + WG9XFC-X + + + + + Argus + 0 + To be launch + 2020-05-24+02:00 + + + Main + 437290000 + + AFSK + 1200 + + + + + + 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 + + + + + + + + + + + + + + + + + + + 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 + + + + + + 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 + + + + + + + + + + + ARTSAT1-INVADER (CO-77) + 39577 + Decayed + 2020-05-24+02:00 + + + Main + 437325000 + + 1k2AFSK DigiTalker CW + + + CW + + JQ1ZKK + + + + + ARTSAT2-DESPATCH (FO-81) + 40321 + Deep Space + 2020-05-24+02:00 + + + Main + 437325000 + + CW + + JQ1ZNN + + + + + 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 + + + + + + + Athenoxat-1 + 41168 + Operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + CW + 0 + + + GMSK + 4800 bps + + ATX1 + + + + + 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 + + + + + + + Atlantis (US02) + 42737 + Decayed + INIT + 2019-08-07 + + + Beacon + 436390000 + + GMSK + 9600bps + + WD8DOX + + + + + 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 + + + + + + + + + + + + + + + + + + + BeEagleSat (TR01) + 42736 + Decayed + INIT + 2019-08-07 + + + Beacon + 437370000 + + GMSK + 9600bps + + ON01TR + + + + + BeeSat-1 + 35933 + 2009-051C + Not operational + + true + + + Draft + 2020-05-24+02:00 + + + Main + 436000000 + + GMSK + 4800 9600 + + DP0BEE + + + + + BEESAT-2 + 39136 + 2013-015G + Not operational + + true + + + Draft + 2020-05-24+02:00 + + + Main + 435950000 + + GMSK + 4800 + + + CW + + DP0BEF + + + + + BEESAT-3 + 39135 + 2013-015F + Not operational + + true + + + Draft + 2020-05-24+02:00 + + + Main + 435950000 + + GMSK + 4800 + + + CW + + DP0BEF + + + + + 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 + + + + + + + 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 + + + + + + + + + + + BELL (PhoneSat1) + 39143 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW-1 + + + + + Bevo-2 + 41314 + Not operational + + + Main + 437325000 + + FSK + 38400 + + + CW + + + + + + 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/ + + + + + BIRD-G (Ghana GhanaSat-1) + 42821 + Not operational + Draft + 2020-05-24+02:00 + + + 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 + + + + + BIROS + 41604 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437525000 + + GMSK + 4800 bps + + + + + + + BisonSat + 40968 + 2015-058E + Operational + + true + + 2020-05-24+02:00 + + + Main + 437375000 + + GMSK + 9600 + + + + + + Black Knight-1 + 39398 + Not operational + + + Main + 437345000 + + + + + + + + BO-47(IDEFIX)BO-48(IDEFIX) + 27422 + 2002-021B + Not operational + BO-47 + + + BO-47 + 145840000 + + BPSK + 400 + + + + + BO-48 + 435270000 + + BPSK + 400 + + + + + + + BRAC (BIRD-B) + 42823 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJS + + + + + 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 + + + + + + + + + + + + + + + + + BRITE-PL + 39431 + 2013-066R + Not operational + + + Main + 145890000 + + 32Kbps-256Kbps + + + + + + 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 + + + + BY70-1 + 41909 + Decayed + Draft + 2019-08-07 + + + Beacon + 436200000 + + BPSK + 9600 bps + + + + + Repeater + + 145920000 + + + 436200000 + + + + + + + CADRE + 41475 + Decayed + Draft + 2019-08-07 + + + Beacon + 437485000 + + GMSK 1Mbit OQPSK + 9600bps + + + + + Beacon + 3404000000 + + OQPSK + 1Mbit + + + + + + + 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 + + + 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 + + + + + + + + + + + + CANX-1 + 27847 + 2003-031H + Not operational + + + Main + 437880000 + + AFSK + 1200 + + VA3SFL + + + + + CANX-2 + 32790 + 2008-021H + Not operational + + + Main + 0 + + OverGSonly + + VA3SFL + + + Main + 0 + + 6KbpsGMSK + + VA3SFL + + + + + CanX-4 + 40055 + 2014-034C + Not operational + + + Main + 437365000 + + 32Kbps-256Kbps BPSK + + + + + + CanX-5 + 40056 + 2014-034D + Not operational + + + Main + 437365000 + + 32Kbps-256Kbps BPSK + + + + + + CAPE-1 + 31130 + 2007-012P + Not operational + + + Main + 435248000 + + AFSK + 1200 + + K5USL + + + + + CAPE-2 (LO-75) + 39382 + Decayed + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + + CW + + W5UL-15 + + + + + 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 + + + + + + + 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 + + + + + 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 + + + + + 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 + + + + + + + + + + + + + + + + + + + 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 + + + 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 + + + + + + + + + + + + + + + + + + + ChubuSat-1 + 40300 + 2014-070C + Not operational + + + Main + 437485000 + + 1200bps 9600bps CW + + + CW + + JJ2YJY + + + + + ChubuSat-2 + 41338 + Not operational + + true + + draft + 2020-05-24+02:00 + + + Beacon + 437102000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JJ2YPN + + + + + ChubuSat-3 + 41339 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437424000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JJ2YPO + + + + + CNUSail-1 + 43133 + Unknown + Draft + 2019-08-07 + + + Beacon + 437100000 + + GMSK + 9600 bps + + + + + + + CO-55(CUTE-I) + 27844 + 2003-031E + Operational + + true + + CO-55 + 2020-05-24+02:00 + + + Main + 4368375000 + + AFSK + 1200 + + JQ1YCY + + + + + CO-56(CUTE17) + 28941 + Decayed + CO-56 + 2020-05-24+02:00 + + + Main + 437382000 + + AFSK + 1200 + + JQ1YPC + + + Main + 437382000 + + GMSK + 9600 + + + + + + + CO-57(XI-IV) + 27848 + 2003-031J + Operational + + true + + CO-57 + 2020-05-24+02:00 + + + Main + 4368475000 + + AFSK + 1200 + + + CW + + JQ1YCW + + + + + CO-58(XI-V) + 28895 + 2005-043F + Operational + + true + + CO-58 + 2020-05-24+02:00 + + + Main + 437465000 + + AFSK + 1200 + + + CW + + JQ1YGW + + + + + CO-66(SEEDS-II) + 32791 + 2008-021J + Operational + + true + + CO-66 + 2020-05-24+02:00 + + + Main + 437485000 + + 1200bpsFMCWTalk + + erJQ1YGU + + + + + Columbia (US04) + 42702 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437055000 + + GMSK + 9600 bps + + KD8CJT + + + + + COMPASS-1 + 32787 + 2008-021E + Not operational + + + Main + 437275000 + + AFSK + 1200 + + + CW + + DP0COM + + + + + 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 + + + + COPPER + 39395 + Not operational + + + Main + 437290000 + + FSK + 9600 + + + + + + CP5 + 38763 + 2012-048F + Not operational + + + Main + 437405000 + + AFSK + 1200 + + CP5 + + + + + CP-6 + 35003 + Not operational + + + Main + 437365000 + + AFSK + 1200 + + + CW + + N6CP + + + + + 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 + + + + + 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 + + + + + + + + + + + + + + + + + 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 + + + + + + + + + + + + + + + + + + + CSSWE + 38761 + 2012-048D + Not operational + + + Main + 437349000 + + GMSK + 9600 + + CSSWE + + + + + CSTB-1 + 31133 + 2007-012R + Not operational + + + Main + 0 + + AFSK + 1200 + + + + + + + CSUNSat1 + 42715 + Decayed + Draft + 2019-08-07 + + + Beacon + 437400000 + + CW + 0 + + + GMSK + 9600 bps + + CSUNSAT1 + + + + + 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 + + + + + + + + + + + + + + + + + + + + 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 + + + + + + + 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 + + + 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/ + + + + + + + + + + + CubeSail 1 + 43851 + Unknown + + Launch Complex 1 - Māhia Peninsula, New Zealand + + + Draft + 2020-05-24+02:00 + + + + + + + + Telemetry + 437505000 + + GMSK + 9600 bauds + + + + + + + + + + + + + + + + + + + CUNYSAT-1 + 39470 + 2013-072J + Not operational + + + Main + 437505000 + + GMSK + 9600 + + + CW + + + + + + CUSat-1 + 39266 + 2013-055B + Not operational + + + Main + 437405000 + + AFSK + 1200 + + BOTTOM + + + + + CUSat-2 + 39271 + Not operational + + + Main + 437485000 + + AFSK + 1200 + + WG2XTI + + + + + 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 + + + + + CXBN + 38762 + 2012-048E + Not operational + + + Main + 437525000 + + GFSK + 9600 + + + + + + + CXBN-2 + 42704 + Decayed + Draft + 2019-08-07 + + + Beacon + 437525000 + + FSK + 9600 bps + + + + + + + DANDE + 39267 + 2013-055C + Not operational + + + Main + 436750000 + + GMSK + 9600 + + DANDE-2 + + + + + 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 + + + + + + + + + + + + + + + + + + + + Delfi-n3Xt + 39428 + 2013-066N + Not operational + + + Main + 2405000000 + + BPSK MSK + 2400 + + + + + + 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 + + + + + + + DeorbitSail + 40719 + Not operational + Drfat + 2020-05-24+02:00 + + + Beacon + 145975000 + + BPSK + 1200bps + + DOS + + + + + 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 + + + + + + + + + + + DO-17(DOVE) + 20440 + 1990-005E + Not operational + DO-17 + + + Main + 2401220000 + + AFSK + 1200 + + DOVE-1 + + + + + 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 + + + + + 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 + + + + + + + + + + + + + + + + + Dove-1 - 2 + 39144 + Decayed + 2020-05-24+02:00 + + + Main + 2420000000 + + AFSK + 1200 + + + + + + DRAGONSat(AggieSat-2) + 35690 + Decayed + Verified + 2020-05-24+02:00 + + + Main + 436250000 + + FSK + 19200 + + + + + Main + 437325000 + + FSK + 9600 + + + + + + + DragonSat-1 + 39383 + Not operational + + + Main + 0000 + + FSK + 9600 + + + + + + D-SAT + 42794 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437505000 + + 4800bps GMSK CW + + + + GMSK + 4800 bps + + + CW + + + U1-DSAT-U1 + + + + + D-Star ONE EXOCONNECT + 44413 + Operational + INIT + 2019-08-07 + + + Beacon + 435700000 + + mobitex GMSK + 4800 + + + mobitex GMSK + 9600 + + + + + + + D-Star ONE iSat + 43879 + Operational + Draft + 2019-08-07 + + + Beacon + 435700000 + + GMSK + 4800 + + + GMSK4k8 + 9600 + + DP2GOS + + + Repeater + + 437325000 + + + 435525000 + + FM + + + + + D-Star ONE Phoenix + 43188 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435525000 + + D-Star Telemetry + 0 + + DP1GOS + + + + + 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 + + + + + + + + + + + + + + + + + DTUSAT + 27842 + 2003-031C + Not operational + + + Main + 437475000 + + AFSK + 2400 + + OZ2DTU + + + + + 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 + + + + + + + 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 + + + + 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + DUTHSat (GR01) + 42724 + Decayed + Draft + 2019-08-07 + + + Beacon + 436420000 + + BPSK + 1200 bps + + SZ2DUT + + + + + DX-1 + 40071 + 2014-037C + Operational + + + Main + 438225000 + + GFSK + 9600 + + DAURIA + + + + + E1P-U2 + 37855 + 2011-061F + Operational + + true + + 2020-05-24+02:00 + + + Main + 437502000 + + AFSK + 1200 + + + + + + + Eagle-1 (BeakerSat-1) + 39437 + 2013-066X + Not operational + + + Main + 437465000 + + GFSK + 9600 + + + + + + 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 + + + + + + EagleSat-1 + 43018 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437645000 + + AFSK + 1200bps + + + + + + + EcAMSat + 43019 + Operational + Draft + 2019-08-07 + + + Beacon + 437095000 + + AFSK + 1200bps + + KE6QLL + + + + + EDSN + -29 + Unknown + 2020-05-24+02:00 + + + Main + 437100000 + + AFSK + 1200 + + + + + + EduSat-1 (BIRD-N) + 42824 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + GMSK + 9600 bps + + + AFSK + 1200 bps + + + CW + + + JG6YJR + + + + + 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 + + + + + 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 + + + + + EnduroSat One + 43551 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + GMSK + 9600bps + + LZ0AMS + + + + + 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/ + + + + 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/ + + + + 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 + + + + + + + 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 + + + + 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 + + + + + + + e-st@r + 38079 + Not operational + + + Main + 437445000 + + AFSK + 1200 + + E-STAR-I + + + + + 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 + + + + + + + EstCube-1 + 39161 + 2013-021C + Not operational + + Draft + 2019-08-05 + + + Main + 437254000 + + GMSK + 9600 + + + CW + + ES5E-11 ES5E/S + + + + + ESTELLE + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 580000000 + + 1Mbps-10Mbps GFSK BPSK + + + + + + 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 + + + + + ExoCube + 40380 + 2015-003E + Operational + + + Main + 437270000 + + FSK + 9600 + + + CW + + KK6HGC XO3 + + + + + F-1 + 38855 + Decayed + Verified + 2020-05-24+02:00 + + + Main + 437485000 + + AFSK + 1200 + + + CW + + XV1VN + + + + + 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 + + + + + + + + + + + + + + + + + + + FalconSAT-3 + 30776 + Operational + + true + + INIT + 2020-05-24+02:00 + + + Digipeater + + 145840000 + + + 435103000 + + 9600bps GMSK + + + + + FIREBIRD-II FU3 + 40377 + 2015-003B + Operational + + true + + 2020-05-24+02:00 + + + Main + 437395000 + + FSK + 19200 + + K7MSU + + + + + FIREBIRD-II FU4 + 40378 + 2015-003C + Operational + + true + + 2020-05-24+02:00 + + + Main + 437219000 + + FSK + 19200 + + K7MSU + + + + + FIREBIRD-U1 + 39463 + 2013-072B + Not operational + + + Main + 437405000 + + FSK + 19200 + + K7MSU + + + + + FIREBIRD-U2 + 39464 + 2013-072C + Not operational + + + Main + 437230000 + + FSK + 19200 + + K7MSU + + + + + 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 + + + + + + + FITSAT-1 + 38853 + Decayed + 2020-05-24+02:00 + + + Main + 437250000 + + 1200bps/1152kbps + + JG6YEW + + + + + 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 + + + + 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 + + + + + FO-12 (JAS-1) + 16909 + Not operational + FO-12 + Draft + 2020-05-24+02:00 + + + Beacon + 435795000 + + CW + + + + + + + + FO-20(JAS-1b) + 20480 + 1990-013C + Not operational + FO-20 + + + Main + 435795000 + + CW + + + + + + + FO-29(JAS-2) + 24278 + 1996-046B + Operational + FO-29 + Draft + 2019-08-05 + + + Main + 4357964000 + + CW + + 8J1JCS + + + + + FO-69(FASTRAC-1) + 37227 + 2010-062F + Not operational + + + Main + 437342000 + + AFSK + 1200 + + FAST1 + + + Main + 437342000 + + FSK + 9600 + + FAST1 + + + + + FO-70(FASTRAC-2) + 37380 + 2010-062M + Not operational + + + Main + 145825000 + + AFSK + 1200 + + FAST2 + + + Main + 145825000 + + FSK + 9600 + + FAST2 + + + + + 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 + + + + + + + + + + + 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 + + + + + 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 + + + + + + + Galassia + 41170 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 145800000 + + GMSK + 9600 bps + + + + + + + GEARRSat-1 + 40456 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + GeneSat-1 + 29655 + Decayed + 2020-05-24+02:00 + + + Main + 437065000 + + AFSK + 1200 + + KE7EGC + + + + + GO-32(TechSat) + 25397 + 1998-043D + Operational + GO-32 + + + Main + 435225000 + + FSK + 9600 + + 4XTECH-11-12 + + + + + Goliat + 38085 + Not operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + YO7MJF + + + + + 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 + + + + + + GOMX-3 + 40949 + Decayed + Draft + 2019-08-07 + + + Beacon + 437250000 + + GMSK + 19200 + + + GMSK + 4800 + + + + + + + GRAHAM (PhoneSat1) + 39142 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW-2 + + + + + GRIFEX + 40379 + 2015-003D + Operational + + true + + 2020-05-24+02:00 + + + Main + 438480000 + + GMSK + 1200 + + KD8SPS + + + + + 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 + + + + + HAUSAT-1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437465000 + + AFSK + 1200 + + D90HP + + + + + HAVELSAT (TR02) + 42701 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 436845000 + + GMSK + 9600 bps + + + + + Beacon + 436843500 + + CW + 0 + + + + + + + HawaiiSat1 (HiakaSat1) + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437270500 + + GFSK + 9600 + + + + Main + 145980500 + + GFSK + 9600 + + + + + + HawkSat-1 + 35004 + Not operational + + + Main + 437345000 + + AFSK + 1200 + + + + + + + HiNCube + 39445 + 2013-066AF + Not operational + + + Main + 438305000 + + + + + + + + HO-59(HITSAT) + 29484 + Decayed + 2020-05-24+02:00 + + + Main + 437275000 + + AFSK + 1200 + + JR8YJT + + + + + HO-68(XW-1) + 36122 + 2009-072B + Operational + + + Main + 435790000 + + SSBinvertingCW + + BJ1SA-11-12 + + + Main + 435790000 + + FM_tone67Hz + + + CW + + BJ1SA-11-12 + + + + + Hoopoe (IL01) + 42718 + Decayed + Draft + 2019-08-07 + + + Beacon + 437740000 + + BPSK + 9600 bps + + ON01IL + + + + + Ho'oponopono-2 + 39403 + 2013-064Z + Not operational + + + Main + 427220000 + + GMSK + 9600 + + + + + + Horyu-2 + 38340 + 2012-025D + Not operational + + true + + 2020-05-24+02:00 + + + Main + 437378000 + + FSK + 1200 + + + CW + + + + + + + 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 + + + + Beacon + 437375000 + + CW + + + + AFSK + 1200 + + + GFSK + 9600 + + JG6YBW + + + Beacon S + 2400300000 + + BPSK + 10000 + + + + + + + Humsat-D + 39433 + 2013-066T + Not operational + + + Main + 437325000 + + CW + + + + + + 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 + + + + IceCube + 42705 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + ICEcube1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + FSK + 9600 + + W2CXM + + + + + ICEcube2 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + FSK + 9600 + + N2VR + + + + + ICUBE-1 + 39432 + 2013-066S + Not operational + + + Main + 145947000 + + 1200bps BPSK/FM-DSB_Transponder + + + + + + i-INSPIRE II (AU03) + 42731 + Decayed + INIT + 2019-08-07 + + + + + GMSK + 4800 bps + + ON03AU + + + + + IiNUSat + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 436915000 + + 1k2 9k6 2FSK + + + + + + InflateSail (GB06) + 42770 + Decayed + Draft + 2019-08-07 + + + Beacon + 436060000 + + BPSK + 1200bps + + ON06GB + + + + + 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 + + + + + + + + + + + + + + + + + + + + + + INS-1C + 43116 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 435080000 + + FSK + 1200 bps + + INDUSR-10 + + + + + IO-26(ITAMSAT) + 22826 + 1993-061D + Not operational + IO-26 + + + Main + 435791000 + + PSK + 1200 + + ITMSAT-11-12 + + + + + 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 + + + + + ION + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437505000 + + AFSK + 1200 + + + + + + + IPEX + 39471 + 2013-072K + Not operational + + + Main + 437270000 + + GMSK + 9600 + + + CW + + KJ6KSL-1 + + + + + Irazu + 43468 + Operational + Draft + 2019-08-07 + + + Beacon + 436500000 + + FSK + 9600bps + + TI0IRA + + + + + 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 + + + + + + + + + + + + + + + + + + + Irvine + 43693 + 2018-088D + Operational + + true + + + + + + Verified + 2020-05-24+02:00 + + + Telemetry 1 + 437800000 + + FSK + 9600 + + + CW + + + WI2XPH + + + + + + + + + + + + + + + + + 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 + + + + + ISX (CP-11) + 43856 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 437150000 + + FSK + 9600 bps + + + CW + 0 + + + + + + + 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 + + + + + + + + + + + + + + + + + + + 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 + + + + Telemetry 1 + 145860000 + + BPSK + 1200 + + + + + Telemetry 1 + 2400150000 + + BPSK + 14400 + + + + + + + + + + + + + + + + + + + ITF-1 + 39573 + Decayed + 2020-05-24+02:00 + + + Main + 437525000 + + CW + + JQ1ZLO + + + + + ITF-2 (TO-89) + 41932 + Decayed + TO-89 + Draft + 2019-08-07 + + + Beacon + 437525000 + + FM CW + 1200 bps + + + CW + 0 + + JQ1ZTK + + + + + ITU-pSat1 + 35935 + 2009-051E + Operational + + true + + 2020-05-24+02:00 + + + Main + 437325000 + + GFSK + 19200 + + + CW + + + + + + + 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 + + + + Beacon + 4435325000 + + CW + + + + GMSK + 4800 + + + + + Transpondeur + + 145935000 + 145965000 + + + 435935000 + 435965000 + + + + + + + Jugnu + 37839 + 2011-058B + Operational + + + Main + 4372759000 + + CW + + + + + + + Juvenile-1F(Shaonian-Xing) + 43199 + Operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 436370000 + + BPSK + 9600 bps + + MXSAT-1 + + + + + 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 + + + + 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 + + + + + + + + + + + + + + + + + KAGAYAKI + 33495 + 2009-002D + Not operational + + + Main + 437375000 + + FSK + 9600 + + + CW + + + + + + + Kaidun-1 + 41915 + Operational + Draft + 2019-08-07 + + + Beacon + 437600000 + + G3RUH BPSK + 1200 bps + + AXNWPU-4 + + + + + 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 + + + + + + + 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 + + + + + + + + + + + + + + + + + + + KAUSAT-5 + 43135 + Unknown + INIT + 2019-08-07 + + + Beacon + 437465000 + + FSK + 9600 Bps + + + + + Beacon 2 + 2413000000 + + MSK + 115200 + + + + + + + KAZSCISAT-1 + 43787 + Operational + Draft + 2019-08-07 + + + Beacon + 435500000 + + GMSK + 9600bps + + + + + + + KickSat + 39685 + Decayed + 2020-05-24+02:00 + + + Main + 437505000 + + 1200bps AFSK + 1200 + + KD2BHC + + + + + KickSat-2 + 44046 + Decayed + Draft + 2019-08-07 + + + Beacon + 437505000 + + FSK + 1200bps + + KD2BHC + + + + + KKS-1(KISEKI) + 33499 + 2009-002H + Operational + + + Main + 437385000 + + AFSK + 1200 + + + CW + + JQ1YYY + + + + + 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 + + + + + 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 + + + + + KS-1Q + 41847 + Not operational + Drfat + 2020-05-24+02:00 + + + Beacon + 436500000 + + GMSK + 20000 bps + + + + + + + KUTESatPathfinder + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + KC0RMW + + + + + KySat-2 + 39384 + Not operational + + + Main + 437402000 + + FSK + 9600 + + KK4AJJ + + + + + Lambda-Sat + 40458 + Not operational + 2020-05-24+02:00 + + + Main + 437462000 + + AFSK + 1200 + + + + + + LIBERTAD-1 + 31129 + 2007-012N + Not operational + + + Main + 437399000 + + AFSK + 1200 + + 5K3L + + + + + LightSail-A + 40661 + Decayed + 2020-05-24+02:00 + + + Main + 437435000 + + FSK + 9600 + + + + + + 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 + + + + + + + + + + + + + + + + + + + LightSat (D-Star One) + 44393 + Operational + INIT + 2019-08-07 + + + Beacon + 435700000 + + mobitex GMSK + 4800 Bps + + + + + Beacon + 435700000 + + mobitex GMSK + 9600 Bps + + + + + + + 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 + + + + + + + LINK (KR01) + 42714 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 436030000 + + BPSK + 1200bps + + D80LW + + + + + LitSat-1 + 39568 + Decayed + 2020-05-24+02:00 + + + Main + 145965000 + + SSB + + + + Main + 435138000 + + FSK + 9600 + + + CW + + LY1LS + + + + + LituanicaSAT-1 (LO-78) + 39569 + Decayed + 2020-05-24+02:00 + + + Main + 435176000 + + FM_tone 670Hz + + + + Main + 437275000 + + FSK + 9600 + + + CW + + LY5N + + + + + LituanicaSAT-2 (LT01) + 42768 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437265000 + + FSK + 9600bps + + LY0LS + + + + + LO-19(LUSAT) + 20442 + 1990-005G + Not operational + LO-19 + + + Main + 437125000 + + CW + + LUSAT-11-12 + + + + + LO-90 (LilacSat-1 CN02) + 42725 + Operational + LO-90 + Draft + 2019-08-07 + + + Beacon + 436510000 + + BPSK + 9600bps + + ON02CN + + + FM Transpondeur + + 145985000 + + + 436510000 + + FM + + + + + 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 + + + + + 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 + + + + + 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 + + + + + + + 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 + + + + + + + LUME-1 + 43908 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437060000 + + GMSK + 4800bps + + + + + + + M6P + 44109 + Operational + Draft + 2019-08-07 + + + Beacon + 437265000 + + FSK + 9600 bps + + LY0LS + + + + + MakerSat-0 + 43016 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + + MaSat-1(MO-72) + 38081 + Decayed + 2020-05-24+02:00 + + + Main + 437345000 + + 625/1250bpsGFSKC + + WHA5MASAT + + + + + MAST + 31126 + 2007-012K + Not operational + + + Main + 0 + + FHSS + + + + + + + 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. + + + + + + + + + + + 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/ + + + + + M-Cubed + 37855 + 2011-061F + Operational + + true + + Verified + 2020-05-24+02:00 + + + Main + 437485000 + + GMSKKISS + 9600 + + + + + + + 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 + + + + + MeaHuaka'iVoyager + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + + + + + + MEROPE + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + K7MSU-1 + + + + + MicroMAS-1 + 40457 + Unknown + Draft + 2019-08-07 + + + Beacon + 468000000 + + OQPSK + 1.5Mbit/s + + + + + + + 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 + + + + Telemetry 1 + 437250000 + + GMSK + 9600 + + + + + + + Ham radio information + http://lasp.colorado.edu/home/minxss/data/ + + + + + + + https://github.com/jmason86/MinXSS_Beacon_Decoder/releases + + + + MIR + 16609 + Decayed + 2020-05-24+02:00 + + + Main + 145985000 + + PSK + + R0MIR-1 + + + + + MO-30 (UNAMSAT-B) + 24305 + Not operational + MO-30 + Draft + 2020-05-24+02:00 + + + Beacon + 435138000 + + BPSK + 1200bps + + + + + + + MO-46(TiungSat) + 26548 + 2000-057D + Not operational + MO-46 + + + Main + 437325000 + + FSK + 38400 + + MYSAT3-11-12 + + + + + 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/ + + + + + + + + + + + MOVE-IIb + 44398 + Unknown + Draft + 2019-08-07 + + Information page + https://www.move2space.de/MOVE-II/ + + + + Beacon + 145840000 + + QPSK + 12500 Bps + + + CW + + + + + + + + myPocketQub + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437425000 + + + + + + + + MYSAT-1 + 44045 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 435775000 + + BPSK + 1200 + + + BPSK + 4800 + + + BPSK + 9600 + + A68MY + + + + + NanoSail-D2 + 37361 + Decayed + 2020-05-24+02:00 + + + Main + 437270000 + + AFSK + 1200 + + KE7EGC + + + + + 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 + + + + + + + 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 + + + + + + + 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 + + + + nCUBE-1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + GMSK + 9600 + + LA1CUB + + + + + NCUBE2 + 28897 + 2005-043H + Not operational + + + Main + 437305000 + + FSK + 9600 + + LA1CUB + + + + + Negai + 36575 + Decayed + 2020-05-24+02:00 + + + Main + 437305000 + + AFSK + 1200 + + + CW + + JQ1ZEX + + + + + 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 + + + + + + + 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 + + + + + + + + + + + + + + + + + + NIUSAT + 42766 + Operational + INIT + 2019-08-07 + + + Beacon + 436000000 + + FSK + 1200 bps + + NIUOBT + + + Beacon + 2240000000 + + + 0 + + + + + + + NJUST-1 (CN03) + 42722 + Decayed + Draft + 2019-08-07 + + + Beacon + 436570000 + + BPSK + 1200bps + + BI4ST + + + + + NMARS + 29662 + Decayed + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + + + + + + 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 + + + + + NO-45(Sapphire) + 26932 + 2001-043D + Not operational + NO-45 + + + Main + 437100000 + + AFSK + 1200 + + KE6QMD + + + + + NO-60(RAFT) + 29661 + Decayed + NO-60 + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + RAFT + + + + + NO-61(ANDE) + 29664 + Decayed + NO-61 + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + ANDE-1 + + + + + NO-62(FCAL) + 29667 + Decayed + NO-62 + 2020-05-24+02:00 + + + Main + 437385000 + + AFSK + 1200 + + KD4HBO + + + + + 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 + + + + + Nodes-1 + 41478 + Decayed + INIT + 2019-08-07 + + + Beacon + 437100000 + + AFSK + 1200 + + KE6QLL + + + + + Nodes-2 + 41477 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 437100000 + + AFSK + 1200 + + KE6QLL + + + + + NPS-SCAT + 39389 + Not operational + + + Main + 437525000 + + AFSK + 1200 + + + CW + + K6NPS + + + + + 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 + + + + + NUDT-PhoneSat (CAS-3I) + 40900 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 437300000 + + GFSK + 96000 + + BJ1SJ + + + + + NUDTSat (CN06) + 42787 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 436270000 + + BPSK + 9600 Bps + + BG7AKF + + + + + 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 + + + + + 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-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 + + + + OPUSAT + 39575 + Decayed + 2020-05-24+02:00 + + + Main + 437154000 + + AFSK + 1200 + + + GFSK + 9600 + + + CW + + JL3ZCA + + + + + 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 + + + + + + + + + + + + + + + + + + + OrigamiSat-1 + 43933 + 2019-003B + Unknown + + 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 + + + + + + + + + + + + + + + + + + + ORS-Squared + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437325000 + + GMSK + 9600 + + + + + + OSIRIS-3U + 43027 + Decayed + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437505000 + + GMSK + 9600 Bps + + + GMSK + 38400 Bps + + + + + + + OSSI-1 + 39131 + Unknown + + Draft + 2019-08-05 + + + Main + 145980000 + + AFSK + 1200 + + + CW + + + + + + OUFTI-1 + 41458 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 145980000 + + FSK + 9600 bps + + + CW + 0 + + OUFTI-1 + + + DSTAR + + 435045000 + + + 145950000 + + DSTAR + + + + + PACE + 40022 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437485000 + + CW + 0 + + + AFSK + 1200bps + + + + + + + ParkinsonSAT (PSAT) + 40654 + 2015-025D + Not 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 + + + + + PCSat2 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437975000 + + FSK + 9600 + + PC2TLM + + + + + Pegasus (AT03) + 42784 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 436670000 + + GMSK + 9600 bps + + ON03AT + + + + + PharmaSat-1 + 35002 + Not operational + + + Main + 437465000 + + AFSK + 1200 + + KE7EGC + + + + + PHOENIX (TW01) + 42706 + Decayed + Draft + 2019-08-07 + + + Beacon + 436915000 + + GMSK + 9600bps + + ON01TW + + + + + 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 + + + + PhoneSat24 + 39381 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + + PhoneSat25 + 39684 + Decayed + 2020-05-24+02:00 + + + Main + 437425000 + + AFSK + 1200 + + KJ6KRW + + + + + PicoDragon + 39413 + Decayed + 2020-05-24+02:00 + + + Main + 437250000 + + AFSK + 1200 + + + CW + + XV9PID + + + + + PICPOT + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + FSK + 9600 + + + + + Main + 0 + + 10kbitGFSK + + + + + + + PicSat + 43132 + Not operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 435525000 + + BPSK + 1200 + + + BPSK + 9600 + + PICSAT + + + Repeater + + 145910000 + + + 435525000 + + FM + + + + + PO-28(POSAT) + 22829 + 1993-061G + Not operational + PO-28 + + + Main + 0 + + FSK + 9600 + + POSAT1-11-12 + + + + + PO-34(PANSAT) + 25520 + 1998-064B + Not operational + PO-34 + + + Main + 0 + + Spectrum + + + + + + + PO-63 (PehuenSat) + 29712 + Not operational + PO-63 + Draft + 2020-05-24+02:00 + + + Beacon + 145825000 + + AFSK + 1200bps + + LU1YUC + + + + + PO-63(PehuenSat) + 29709 + Unknown + PO-63 + 2020-05-24+02:00 + + + Main + 145825000 + + AFSK + 1200 + + LU1YUC + + + + + Pocket-PUCP + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437200000 + + AFSK + 1200 + + + CW + + + + + + PolyITAN-1 + 40042 + 2014-033AJ + Operational + + + Main + 437675000 + + FSK + 9600 + + + CW + + EM0UKP + + + + + PolyITAN-2-SAU (UA01) + 42732 + Decayed + Draft + 2019-08-07 + + + Beacon + 436600000 + + BPSK + 9600bps + + QBUA01 + + + + + PolySatCP1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + 15bpsDTMFCW + + N6CP + + + + + PolySatCP2 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437325000 + + AFSK + 1200 + + + + + + + PolySatCP3 + 31128 + 2007-012M + Not operational + + + Main + 0 + + AFSK + 1200 + + + + + + + PolySatCP4 + 31132 + 2007-012Q + Not operational + + + Main + 437323000 + + SSB + 1200 + + N6CP + + + + + POPSAT-HIP1 + 40028 + 2014-033U + Not operational + + + Main + 437405000 + + 1k2 9k6 CCSDS CW + + + CW + + POPSAT + + + + + Pratham + 41783 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 145980000 + + AFSK + 1200bps + + + CW + 0 + + PRATHAM + + + + + PrintSat + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437325000 + + GMSK + 9600 + + + + + + PRISM(HITOMI) + 33493 + 2009-002B + Operational + + true + + 2020-05-24+02:00 + + + Main + 437250000 + + AFSK + + + GMSK + + + CW + + JQ1YCX + + + + + PROITERES + 38756 + 2012-047B + Not operational + + + Main + 437485000 + + AFSK + 1200 + + + CW + + 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 + + + + SSTV + 435350000 + + SSTV + + + + + + APRS + + 145825000 + + + 145825000 + + AFSK + 1200 + + + PSK31 + + 294815000 + + + 435350000 + + AFSK + 1200 + + + + + + + + + + + + + + + + + PTecSat + 0 + To be launch + 2020-05-24+02:00 + + + Main + 436000000 + + AFSK + 1200 + + + + + + PUCP-SAT-1 + 39442 + 2013-066AC + Not operational + + + Main + 145840000 + + AFSK + 1200 + + + + + + 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 + + + + PW-Sat1 + 38083 + Not operational + + + Main + 145902000 + + BPSK + 1200 + + + CW + + VOID + + + + + 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 + + + + + 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 + + + + + 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 + + + + + QBEE (SE01) + 42708 + Decayed + Draft + 2019-08-07 + + + Beacon + 435800000 + + GFSK + 9600bps + + ON01SE + + + + + QBITO (ES01) + 42728 + Decayed + INIT + 2019-08-07 + + + Beacon + 436810000 + + GFSK + 9600bps + + + + + + + QUAKESAT + 27845 + 2003-031F + Not operational + + + Main + 436682000 + + FSK + 9600 + + KD7OVB + + + + + 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 + + + + + Qubescout-S1 + 39443 + 2013-066AD + Not operational + + + Main + 437525000 + + GMSK + 9600 + + + + + + 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 + + + + 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 + + + + + + + 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 + + + + + + + + + + + + + + + + + + + RAIKO + 38852 + Not amateur satellite + + Draft + 2020-05-24+02:00 + + + Main + 1300000000000 + + 384-500kbps + + + + + + + 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 + + + + + + + + + + + + + + + + + + + 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 + + + + + + + + + + + + RANGE-A + 43772 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437150000 + + 0.1kbps-115.2kbps FSK/MSK/GFSK/GMSK + 0 + + + + + + + RASAT + 37791 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 437400000 + + FSK + 9600 bps + + RASAT0-11 -12 + + + + + RAX-1 + 37223 + 2010-062B + Not operational + + + Main + 437505000 + + GMSKKISS + 9600 + + RAX-1 + + + + + RAX-2 + 37853 + 2011-061D + Not operational + + + Main + 437345000 + + GMSK + 9600 + + + + + + + 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 + + + + + + + + + + + + + + + + + + + RINCON + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437345000 + + AFSK + 1200 + + WA4CEW + + + + + Robusta + 38080 + Not operational + + + Main + 437325000 + + FM + 1200 + + + + + + + Robusta-1B + 42792 + 2017-036AD + Operational + + true + + Verified + 2020-05-24+02:00 + + + Main + 437325000 + + AFSK + 1200 + + + CW + + + FX6FR + + + + + RS-1 (Radio Sputnik 1) + 11085 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + + RS-2 (Radio Sputnik 2) + 11086 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + + RS-3 (Radio Sputnik 3) + 12997 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + + RS-4 (Radio Sputnik 4) + 13000 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + + RS-5 (Radio Sputnik 5) + 12999 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + + RS-6 (Radio Sputnik 6) + 13002 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + + RS-7 (Radio Sputnik 7) + 13001 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + + RS-8 (Radio Sputnik 8) + 12998 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + + + + + + + + + RS-10 (COSMOS 1861) + 18129 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 29357000 + + CW + + + + + + Beacon + 29403000 + + CW + + + + + + + + RS-12(Sputnik) + 21089 + 1991-007A + Not operational + + + Main + 29408000 + + CW + + + + + Main + 145862000 + + CW + + + + + + + RS-14 (Informator-1) + 21087 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 145822000 + + CW + + + + + + Beacon + 145948000 + + CW + + + + + + + + RS-15(Sputnik) + 23439 + 1994-085A + Operational + + + Main + 29352000 + + CW + + + + + + + RS-16 (Mozhayets-2) + 24744 + Decayed + Draft + 2019-08-07 + + + Beacon + 435510000 + + CW + 0 + + + + + + + RS-17 (Sputnik 40) + 24958 + Decayed + INIT + 2019-08-07 + + + Beacon + 145820000 + + CW + + + + + + + + RS-18 (Sputnik 41) + 25533 + Decayed + Draft + 2019-08-07 + + + Beacon + 145812000 + + CW + 0 + + + + + + + RS-19 (Sputnik 99) + 25685 + Decayed + INIT + 2019-08-07 + + + Beacon + 145815000 + + CW + + + + + + + + RS-20 (Mozhayets-3) + 27560 + Decayed + INIT + 2019-08-07 + + + Beacon + 145828000 + + CW + + + + + + Beacon + 435319000 + + CW + + + + + + + + RS-21(Sputnik) + 27394 + Decayed + + + Main + 145825000 + + CW + + + + + + + RS-22(Mozhayets) + 27939 + 2003-042A + Operational + + + Main + 435352000 + + CW + + + + + + + RS-23 (Tatyana) + 28523 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 435215000 + + CW + 0 + + + + + Beacon + 435315000 + + CW + 0 + + + + + + + RS-25 + 28898 + 2005-043G + Unknown + + + Main + 435325000 + + CW + + + + + + + RS-28(UgatuSat) + 35869 + 2009-049D + Not operational + + Draft + 2019-08-05 + + + Main + 435264000 + + CW + + RS28 + + + + + RS-30(Yubileiniy) + 32953 + 2008-025A + Not operational + + Draft + 2019-08-05 + + + Main + 435315000 + + CW + + RS30 + + + + + RS-38(Tatiana-2) + 35868 + 2009-049E + Not operational + + Draft + 2019-08-05 + + + Main + 435490000 + + CW + + RS38 + + + + + RS-39 (Chibis-M) + 38051 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435315000 + + CW + + + + + + Beacon + 435215000 + + CW + + + + + + + + RS-40 (Yubileyny-2 MiR) + 38735 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435365000 + + CW + + + + + + + + RS-46 (COSMOS-2491) + 39497 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 435465000 + + CW + + + + + + Beacon + 435565000 + + CW + + + + + + + + RS-47 (COSMOS-2499) + 39765 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon 1 + 435565000 + + CW + + + + + + Beacon 2 + 435465000 + + CW + + + + + + + + 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 + + + + + SACRED + 0 + To be launch + Verified + 2020-05-24+02:00 + + Wiki page + https://en.wikipedia.org/wiki/SACRED + + + + + Main + 0 + + AFSK + 1200 + + WA4CEW + + + + + SAFIR-S + 25399 + 1998-043F + Not operational + Verified + 2019-02-14 + + + Main + 2401900000 + + FSK + 9600 + + DP1AIS + + + + + SamSat-218D + 41466 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 145870000 + + CW + 0 + + SAMSAT-218D + + + + + Sathyabamasat + 41600 + Not operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 145980000 + + CW + 0 + + + BPSK CW + 2400 bps + + SNSAT + + + + + SaudiSat-4 + 40016 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + + + Ka-band SSB + 0 + + + + + + + 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 + + + + + + + SEEDS + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 0 + + AFSK + 1200 + + JQ1YGU + + + + + 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 + + + + + + + + + + + + + + + + + + + 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. + + + + + + SGSat + 42703 + Unknown + Draft + 2019-08-07 + + + Beacon + 437450000 + + FSK + 9600bps + + + + + + + ShindaiSat + 39572 + Decayed + 2020-05-24+02:00 + + + Main + 437485000 + + AFSK + 1200 + + + CW + + JR0ZST + + + + + SHIN'EN2 (FO-82) + 40320 + Deep Space + 2020-05-24+02:00 + + + Main + 437385000 + + 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 + + + + 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 + + + + + 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 + + + + + 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 + + + + + + + + + + + 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 + + + + + + + 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 + + + + + + + + + + + + + + + + + + + SNUSAT-1 (KR02) + 42733 + Decayed + Draft + 2019-08-07 + + + Beacon + 436090000 + + BPSK + 1200bps + + ON02KR + + + + + SNUSAT-1b (KR03) + 42727 + Decayed + Draft + 2019-08-07 + + + Beacon + 435950000 + + BPSK + 1200bps + + ON03KR + + + + + 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 + + + + + + + + + + + + + + + + + + + SO-33(SEDSAT-1) + 25509 + 1998-061B + Not operational + SO-33 + + + Main + 437910000 + + FSK + 9600 + + SEDSAT-1 + + + + + SO-35(SUNSAT-1) + 25636 + 1999-008C + Not operational + SO-35 + + + Main + 145825000 + + 9600bpsFM + + SUNSAT-3 + + + + + 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 + 2020-05-24+02:00 + + + Main + 145820000 + + FSK + 9600 + + STRSHN + + + + + SO-50(SaudiSat-1c) + 27607 + 2002-058C + Operational + SO-50 + + + Main + 0 + + FM_tone670Hz + + + + + + + SO-67(SumbandilaSat) + 35870 + 2009-049F + Not operational + + + Main + 435300000 + + FM_tone2336Hz + + + + + + + Socrat + 44405 + Operational + Draft + 2019-08-07 + + + Beacon + 436000000 + + mobitex + 4800 bps + + + + + + + SOHLA-1(MAIDO-1) + 33496 + 2009-002E + Not operational + + + Main + 437505000 + + AFSK + 1200 + + + CW + + JL3YUS + + + + + SOMP + 39134 + 2013-015E + Operational + + true + + 2020-05-24+02:00 + + + Main + 437503000 + + AFSK + 1200 + + + CW + + DP0TUD + + + + + SOMP-2 (DE02) + 42700 + Decayed + Draft + 2019-08-07 + + + Beacon + 437405000 + + GMSK + 9600 bps + + + CW + 0 + + ON02TR + + + + + 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 + + + + + + + SpaceCube (FR05) + 42717 + Decayed + INIT + 2019-08-07 + + + Beacon + 436880000 + + 1200bps AFSK FM + 0 + + ON05FR + + + FM voice repeater + + 436880000 + + + 145860000 + + FM + + + + + SpinSat + 40314 + Not operational + + + Main + 437230000 + + GFSK + 9600 + + + + + + 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 + + + + + + + SporeSat + 39681 + Unknown + 2020-05-24+02:00 + + + Main + 437100000 + + AFSK + 1200 + + + + + + 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 + + + + SRMSAT + 37841 + 2011-058D + Operational + + + Main + 437425000 + + CW + + + + + + + STARS(KUKAI) + 33498 + 2009-002G + Operational + + + Main + 437305000 + + FM + 1200 + + + CW + + JR5YBN(mother + + + Main + 437275000 + + FM + 1200 + + + CW + + JR5YBO(daught + + + + + 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-C (Daughter) + 41895 + Decayed + Draft + 2019-08-07 + + + Beacon + 437245000 + + AFSK + 1200bps + + + CW + 0 + + JJ2YPM + + + Beacon + 437405000 + + AFSK + 1200bps + + JJ2YPM + + + + + STARS-II (Mother) + 39579 + Decayed + 2020-05-24+02:00 + + + Main + 437245000 + + AFSK + 1200 + + + CW + + JR5YDX + + + Main + 437255000 + + AFSK + 1200 + + + CW + + JR5YDY + + + + + STARS-Me (Mother) + 43640 + Not 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 + + + + + STEP Cube Lab (STEP-1) + 43138 + Operational + Draft + 2019-08-07 + + + Beacon + 437485000 + + FSK + 9600 bps + + + CW + 0 + + + + + + + STMSat-1 + 41476 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437800000 + + SSTV + 0 + + + GMSK + 9600 bps + + + + + + + STRaND-1 + 39090 + 2013-009E + Operational + + true + + 2020-05-24+02:00 + + + Main + 437568000 + + GMSK + 9600 + + + + + + StudSat + 36796 + 2010-035B + Not operational + + + Main + 437861000 + + FSK + 9600 + + + CW + + + + + + + SUCHAI + 42788 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437230000 + + CW + + + + FSK2k4 + 2400 Bps + + SUCHAI + + + + + 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 + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + + + SUSat (AU01) + 42730 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 436775000 + + FSK + 9600bps + + + + + + + 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 + + + + + + + + + + + + + + + + + + + SwampSat + 39402 + Not operational + + + Main + 437385000 + + FSK + 9600 + + + + + + Swayam COEP + 41607 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437025000 + + CW + 0 + + + BPSK + 1200 bps + + 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 + 435500000 + + AFSK + 1200 + + + + + APRS + + 435500000 + + + 435500000 + + + + + + + + + + + + + + + + + + + SwissCube-1 + 35932 + 2009-051B + Operational + + true + + 2020-05-24+02:00 + + + Main + 437505000 + + BFSK + 1200 + + + CW + + HB9EG1 + + + + + TabletSat-Aurora + 40017 + 2014-033H + Not operational + + + Main + 437050000 + + 9600bps GMSK D-STAR + + + + + + Tancredo-1 (UbatubaSat) + 41391 + Decayed + Draft + 2019-08-07 + + + Beacon + 437200000 + + AFSK + 1200 bps + + + CW + + + PY0ETA + + + + + Tanusha-SWSU-1 (RS-6S) + 42911 + Not operational + draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS6S + + + + + Tanusha-SWSU-2 (RS-7S) + 42912 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS7S + + + + + Tanusha-SWSU-3 (RS-8S) + 43597 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS8S + + + + + Tanusha-SWSU-4 (RS-9S) + 43598 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437050000 + + AFSK + 1200 bps + + + Voice + + + RS9S + + + + + 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 + + + + + + + + + + + + + + + + + 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 + + + + + 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 + + + + + TechEdSat + 38854 + Decayed + 2020-05-24+02:00 + + + Main + 437465000 + + FM + 1200 + + + CW + + KJ6TVO + + + + + TechEdSat-3 + 39415 + Not operational + + + Main + 437465000 + + AFSK + 9600 + + + CW + + + + + + TechEdSat-4 + 40455 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + TechEdSat-5 + 42066 + Decayed + INIT + 2019-08-07 + + + Beacon + + + + + + + + + + + TechnoSat + 42829 + Operational + + true + + draft + 2020-05-24+02:00 + + + Beacon + 435950000 + + GMSK + 4800bps + + + GMSK + 9600bps + + + CW + + + DP0TBA + + + + + TeikyoSat-3 + 39576 + Decayed + 2020-05-24+02:00 + + + Main + 437450000 + + AFSK + 1200 + + + CW + + JQ1ZKM + + + + + 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/ + + + + + TetherSat + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 437100000 + + GFSK + 9600 + + + + + + Tianwang-1A (TW-1A SECM-1) + 40928 + Operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 435645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + + Tianwang-1B (TW-1B NJUST-2) + 40927 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 437645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + + Tianwang-1C (TW-1C NJFA-1) + 40926 + Operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 435645000 + + GMSK + 4800 + + + GMSK + 9600 + + + + + + + TigriSat + 40043 + 2014-033AK + Operational + + + Main + 436000000 + + FSK + 9600 + + HNATIG + + + + + TIsat-1 + 36799 + 2010-035E + Not operational + + Draft + 2019-08-05 + + + Main + 145980000 + + PSK + + + AFSK + + + CW + + HB9DE + + + + + TJ3Sat + 39385 + Not operational + + + Main + 437320000 + + CW + + + + + + TO-31(TMSAT-1) + 25396 + 1998-043C + Not operational + TO-31 + + + Main + 436925000 + + FSK + 9600 + + TMSAT1-11-12 + + + + + Toki (BIRD-J) + 42820 + Decayed + Draft + 2019-08-07 + + + Beacon + 437372000 + + AFSK + 1200bps + + + GMSK + 9600bps + + + CW + + + JG6YJO + + + + + Tomsk-TPU-120 (RS04S) + 42910 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 145800000 + + FSK + 9600bps + + + Voice + + + RS4S + + + + + Trailblazer-1 + 39400 + Not operational + + + Main + 437425000 + + FSK + 9600 + + + + + + Triton-1 + 39427 + 2013-066M + Not operational + + + Main + 2408000000 + + 1200bps RC-BPSK CW + + + CW + + TRIV0 TRIV1 + + + + + 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. + + + + TSAT (TestSat-Lite) + 39682 + Unknown + INIT + 2019-08-07 + + + Beacon + + + + 0 + + + + + + + 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 + 437425000 + + GMSK CW + 1200bps + + + CW + + + TUPOD + + + + + TURKSAT-3USAT + 39152 + 2013-018C + Not operational + + + Main + 437225000 + + CW + + + + + + TY-3 (Tianyi-3 Xiaoxiang-3) + 43664 + Unknown + INIT + 2019-08-07 + + + Beacon + + + 9k6 GMSK/5Mbps OFDM + + + + + + + + TY-5 (Tianyi-5 Xiaoxiang-5) + 43553 + Unknown + INIT + 2019-08-07 + + + Beacon + + + 9k6 GMSK/5Mbps OFDM + + + + + + + + UAPSat-1 + 39571 + Not operational + + + Main + 437385000 + + AFSK + 1200 + + OA0UAP-1 + + + + + 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 + + + + + UbatubaSat (Tancredo-1) + 41931 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437200000 + + AFSK + 1200 Bps + + + CW + 0 + + PY0ETA + + + + + UCLSat (GB03) + 42765 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 435975000 + + GMSK + 9600bps + + ON03GB + + + + + 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 + + + + + + + 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/ + + + + + UKube-1-FUNcube-2 + 40074 + 2014-037F + Operational + + true + + 2020-05-24+02:00 + + + Main + 145840000 + + BPSK + 1200 + + + CW + + UKUBE1 + + + Main + 145915000 + + BPSK + 1200 + + + + + + UniBRITE (CanX-3A) + 39092 + 2013-009G + Not operational + + + Main + 145890000 + + CW + + + + + + UNICubeSAT + 38084 + Not operational + + + Main + 437305000 + + FSK + 9600 + + + + + + + UniSat-5 + 39421 + 2013-066F + Not operational + + + Main + 437175000 + + GMSK + 9600 + + + + + + UniSat-6 + 40012 + 2014-033C + Operational + + true + + Verified + 2020-05-24+02:00 + + + Main + 437425000 + + GMSK + 9600 + + + CW + + II0US + + + + + UNITEC-1 + 36578 + 2010-020F + Deep Space + 2020-05-24+02:00 + + + Main + 5840000000 + + AFSK + 1200 + + + CW + + JQ1ZUN + + + + + UNSA-SAT1 + 0 + To be launch + Verified + 2020-05-24+02:00 + + + Main + 34000000 + + BPSK + 230000 + + + + + + UNSW-EC0 (AU02) + 42723 + Decayed + Draft + 2019-08-07 + + + Beacon + 436530000 + + 4800bps GMSK + 0 + + ON02AU + + + Beacon + 2400500000 + + + 0 + + + + + + + UO-9 (UoSAT-1) + 12888 + Decayed + + 1981-10-06 + Vandenberg + + UO-9 + 2020-05-24+02:00 + + + Main + 2401000000 + + CW + + + + + + + UO-11(UoSAT-2) + 14781 + 1984-021B + Operational + UO-11 + + + Main + 2401500000 + + PSK + + UOSAT-2 + + + + + UO-14(UoSAT-3) + 20437 + 1990-005B + Not operational + UO-14 + + + Main + 0 + + FM + + + + + + + UO-15 (UoSAT-4) + 20438 + Decayed + UO-15 + Draft + 2019-08-07 + + + Beacon + 435120000 + + CW + 0 + + + + + + + UO-22(UoSAT-5) + 21575 + 1991-050B + Not operational + UO-22 + + + Main + 435120000 + + FSK + 9600 + + UOSAT5-11-12 + + + + + UO-36(UoSAT-12) + 25693 + 1999-021A + Not operational + UO-36 + + + Main + 437400000 + + FSK + 38400 + + UO121-11-12 + + + + + UPSat (GR02) + 42716 + Not operational + + true + + Draft + 2020-05-24+02:00 + + + Beacon + 435765000 + + GMSK + 9600 Bps + + + + + + + URSA MAIOR (IT02) + 42776 + Operational + + true + + draft + 2020-05-24+02:00 + + + Beacon + 435950000 + + FSK + 9600 Bps + + URSAMR + + + + + USS Langley + 40652 + Not operational + + + Main + 437475000 + + AFSK + 1200 + + + + + + UWE-1 + 28892 + 2005-043C + Not operational + + + Main + 437505000 + + AFSK + 1200 + + DP0UWE + + + + + UWE-2 + 35934 + 2009-051D + Not operational + + + Main + 437385000 + + AFSK + 1200 + + + CW + + + + + + + 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 + + + + 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 + + + + + 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 + + + + VDNH-80 + 44392 + Operational + draft + 2019-08-07 + + + Beacon + 436500000 + + mobitex + 4800 bps + + + + + + + VELOX-2 + 41171 + Not operational + INIT + 2020-05-24+02:00 + + + Beacon + 145930000 + + BPSK CW + 1200bps + + + CW + 0 + + VELOX2 + + + + + VELOX-I + 40057 + 2014-034E + Not operational + + + Main + 145980000 + + FSK + 9600 + + + CW + + VELOXI + + + + + VELOX-P2 + 39438 + 2013-066Y + Not operational + + + Main + 145980000 + + BPSK + 1200 + + + CW + + + + + + Venta-1 + 42791 + 2017-036AC + Not operational + Verified + 2018-11-04 + + + Main + 437325000 + + + + + + + + Vermont Lunar + 39407 + Decayed + 2020-05-24+02:00 + + + Main + 437305000 + + FSK + 9600 + + W1VTC2 + + + + + VO-52(Hamsat) + 28650 + 2005-017B + Not operational + + + Main + 145936000 + + SSBCarrier + + Indian + + + Main + 145860000 + + CW + + Dutch + + + + + 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 + + + + + + + + + + + + + + + + + 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 + + + + + Waseda-SAT2 + 36574 + Decayed + 2020-05-24+02:00 + + + Main + 437485000 + + FSK + 1200 + + + CW + + WASEDA + + + + + WASEDA-SAT3 + 41933 + Not operational + Draft + 2020-05-24+02:00 + + + Beacon + 437290000 + + CW + 0 + + + FSK + 1200 Bps + + + + + + + WE_WISH + 38856 + Decayed + Verified + 2020-05-24+02:00 + + + Main + 437505000 + + CW + + + SSTV + + + AFSK + 2400 + + JQ1ZIJ + + + + + WO-18(WEBERSAT) + 20441 + 1990-005F + Not operational + WO-18 + + + Main + 0 + + PSK + 1200 + + + + + + + WO-39(JAWSAT) + 26061 + 2000-004A + Not operational + WO-39 + + + Main + 0 + + FSK + 9600 + + + + + + + Wren + 39435 + 2013-066V + Not operational + + + Main + 437405000 + + FSK + 1200 + + + CW + + + + + + Xatcobeo + 38082 + Decayed + 2020-05-24+02:00 + + + Main + 437365000 + + FFSKSSRC + 1200 + + W + + + + + X-CubeSat (FR01) + 42707 + Decayed + Draft + 2019-08-07 + + + Beacon + 437020000 + + GMSK + 9600 + + + AFSK1k2 + 1200 + + ON01FR + + + + + 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 + + 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 + + + + + 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 + + + + + XO-53(SSETI) + 28894 + 2005-043E + Not operational + XO-53 + + + Main + 437250000 + + FSK + 9600 + + SSETI1 + + + + + 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 + + + + + + + + + + + + + + + + + + + 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 + + + + + + + + + + + + + + + + + + + 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 + + + + + + + ZA-AeroSat(AZ01) + 42713 + Not operational + + true + + INIT + 2020-05-24+02:00 + + + Beacon + 437200000 + + GMSK + 9600bps + + ON01AZ + + + + + 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 + + + + + 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/FileIn/testcommandeSave.txt b/ModuleSatelliteDatabase/src/test/data/FileIn/testcommandeSave.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a44991dce44da618b68345c6de5070e7598447c --- /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/AAUSAT-4.xml b/ModuleSatelliteDatabase/src/test/data/in/AAUSAT-4.xml new file mode 100644 index 0000000000000000000000000000000000000000..cddab53028b785616962e77782c808937e923a73 --- /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 0000000000000000000000000000000000000000..112c2d567858eccd549a9e7a6b36e6d65cd02bb5 --- /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 0000000000000000000000000000000000000000..b7e18346707c4f3c052ae2c88919b74a86c1b059 --- /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/AL_1KUNS-PF.xml b/ModuleSatelliteDatabase/src/test/data/in/AL_1KUNS-PF.xml new file mode 100644 index 0000000000000000000000000000000000000000..3ed55733b66fd3549635a08548f579f53d23a177 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AL_1KUNS-PF.xml @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<AmsatList> + <Satellites> + <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/ + + + + 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 0000000000000000000000000000000000000000..f3c31b5a76e332b883bfee77ebd0979916eb73cd --- /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 0000000000000000000000000000000000000000..440a608d6e82ad962b1fdc6e5962ccedbd9123d7 --- /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 0000000000000000000000000000000000000000..7f356f416b056cd08fda41ebca7244235a068410 --- /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 0000000000000000000000000000000000000000..d5ee351dd3315a724844a481002a675e8ae20d73 --- /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 0000000000000000000000000000000000000000..18708c5656b4e3f7df7188aac490bb8a49a30299 --- /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 0000000000000000000000000000000000000000..6f8ca98facce979d91b13f742103918d0ce6bc40 --- /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 0000000000000000000000000000000000000000..9c7e6602bca32e750dec76b198326584bc9f2866 --- /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 0000000000000000000000000000000000000000..456de6bde4d95e3d8c283d1de3a7b451b8940181 --- /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 0000000000000000000000000000000000000000..2382a9272266f28540992fd84756066ebdd54e4b --- /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 0000000000000000000000000000000000000000..1e3901d09a66da74ad696451fc254a30d178b72d --- /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 0000000000000000000000000000000000000000..0c7c3ac627bc0adb54eed6e7d92787ea92d61296 --- /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 0000000000000000000000000000000000000000..f56d427b1bdabfa24d462dea9241cdd05b50e598 --- /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 0000000000000000000000000000000000000000..451e3d72c8ef16240be92d863719ca6c3f79e4bd --- /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 0000000000000000000000000000000000000000..5b3a0a6b32d3178b5f9394f5f75f0a953ae3cb8f --- /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 0000000000000000000000000000000000000000..8c67e96b6d09477d18466a8d7b6385e638a93eb0 --- /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 0000000000000000000000000000000000000000..bf5270181bd019b29dcd0ff1ac60a43eb25dcd10 --- /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 0000000000000000000000000000000000000000..0ead8c12fdcb361708e7bbdeec283aaee2b79494 --- /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 0000000000000000000000000000000000000000..4fa7a8e68ea641b28bfda52e7e8339395098b372 --- /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 0000000000000000000000000000000000000000..e11c323acef172e2550c01bd3892311360ef1b33 --- /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 0000000000000000000000000000000000000000..bdec15f26382afdb3d7d6d8784b71b308ae24db7 --- /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 0000000000000000000000000000000000000000..a0f4ba5d82b65ae01d28e1b746f8c3b61038959f --- /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 0000000000000000000000000000000000000000..e57d6a054fe88dd0b07bb2e9f4d220a1e64356a5 --- /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 0000000000000000000000000000000000000000..60f6380849d395a068de587a2933e435b4d7e20c --- /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 0000000000000000000000000000000000000000..316250ee0d6976c93b206a21170594ea4bbe9218 --- /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 0000000000000000000000000000000000000000..e3dbb3528ac864c7c7e8ce7115e51a43c3dd8957 --- /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 0000000000000000000000000000000000000000..036b88f1249d4d365459e7ac681f77b6ba3079bd --- /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 0000000000000000000000000000000000000000..626412de3739d7b01b9e322834abb18480bc82a8 --- /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 0000000000000000000000000000000000000000..7c88f27cd5df053036b99d68d232f11a164a9752 --- /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 0000000000000000000000000000000000000000..74217edbf6192f067650a6092c1dc628e588fe58 --- /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 0000000000000000000000000000000000000000..7391afde41a56f9d2d30b6f7c3ea9164bcd17f96 --- /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 0000000000000000000000000000000000000000..be0d7025f68d2b5aef5242823826a1cf83bd9114 --- /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 0000000000000000000000000000000000000000..f43f8b6603fcb890aef24dbdc3eb3266bb1fd40f --- /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 0000000000000000000000000000000000000000..730c05ed99a4cdbfba628fb2ae42eb07a684df47 --- /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 0000000000000000000000000000000000000000..f37a7fcfb09a3bc1b8125bc19fb28c4144cdddf4 --- /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 0000000000000000000000000000000000000000..f8940063037833a428e01481e6c7c455d07b5cbb --- /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 0000000000000000000000000000000000000000..931af42e5f06d7ee626876dcaef1ee8fbded720e --- /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 0000000000000000000000000000000000000000..cab3e46c4e46bb1e2ac4dd3824f187a1a015b9e8 --- /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 0000000000000000000000000000000000000000..ead196b4ff8a0562510c1f550dc5dc984f28c68b --- /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 0000000000000000000000000000000000000000..31327f506c9301d3008205a5fff900222c07dcd1 --- /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 0000000000000000000000000000000000000000..cebd0b7b26d87af19998eae6a085f35a8704d08f --- /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 0000000000000000000000000000000000000000..d30b71053ba226aadf29e13b4a36d60d0891db25 --- /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 0000000000000000000000000000000000000000..176c95cbec6cd661ece59e80d7c80689ba163950 --- /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 0000000000000000000000000000000000000000..727348ede4d11594f5da2b1176f5da026a9be8c1 --- /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 0000000000000000000000000000000000000000..548110c3b07fe7ad6d5eea9bca253edcec69e905 --- /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 0000000000000000000000000000000000000000..d48168600f6d2ba9ddd01b94de187abea891fdbf --- /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 0000000000000000000000000000000000000000..dfde8aac55acf1299442109e82b19ba41b13d6ef --- /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 0000000000000000000000000000000000000000..2ae42b9ae8317ea73c3d9eefb4b11f1e094fdddc --- /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 0000000000000000000000000000000000000000..0c57e789def40e356ce770998afb73e7dde4cbef --- /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 0000000000000000000000000000000000000000..fe6c75c11393610d9ad8ee91ba47ce7d5a85d798 --- /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 0000000000000000000000000000000000000000..7182c980bb2ce6ceb7c19f7ce15afe08690208d8 --- /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 0000000000000000000000000000000000000000..8e5d96542171e7dad4ce0b9b912129a917b5a5ff --- /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 0000000000000000000000000000000000000000..30909e8f784b7494e1a8f3ecfe7542daa55b37a1 --- /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 0000000000000000000000000000000000000000..e76130bb86ace69b5bd31df5040a06143e794419 --- /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 0000000000000000000000000000000000000000..ac28374c9aa1934f18ac284220cdeffb06ddf1a5 --- /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 0000000000000000000000000000000000000000..4db10a03f6c8d71f5b1e6f0f20658e8401ecb490 --- /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 0000000000000000000000000000000000000000..5c9946b082d10456c71491fee3f99207a4db4171 --- /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 0000000000000000000000000000000000000000..8d789f8254ca596e4e99214ee2b87b114af77d77 --- /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 0000000000000000000000000000000000000000..812431f6e4156fa0869ba25d94c017146e4d0b72 --- /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 0000000000000000000000000000000000000000..0b1521ea500d2719c2d846e0b75203681ab1d5ad --- /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 0000000000000000000000000000000000000000..f0f5f6a2923d1e6db4c065fe91ea02d64f2b321d --- /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 0000000000000000000000000000000000000000..95bfd54ff7263f204e188620cf8430532293dc2b --- /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 0000000000000000000000000000000000000000..deca1547a21b246268242ea5574eb7b7fa8bbf22 --- /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 0000000000000000000000000000000000000000..c0afaa16340ae46d23fff119f7092a8e7feecbef --- /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 0000000000000000000000000000000000000000..0e2badbbb3e2c5246a4a376da5b217168608858d --- /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 0000000000000000000000000000000000000000..8ccfe5ac248ac9277d3dac8ece5d71766be75092 --- /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 0000000000000000000000000000000000000000..f8c9e489568a427bb25e34563243918bdd4a42d1 --- /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 0000000000000000000000000000000000000000..525fd3046c40e9de162d883cb401925c800ec9f4 --- /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 0000000000000000000000000000000000000000..c98529826138b237ce83357ec71e48b41302b19e --- /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 0000000000000000000000000000000000000000..60a0c7764b204d1432699fea1192dd2c833ef978 --- /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 0000000000000000000000000000000000000000..d3f5ebb5016120d3b8f1a99268ac46f91db74661 --- /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 0000000000000000000000000000000000000000..f195bcdb8ff48c633e272d98446f520cdf58b03f --- /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 0000000000000000000000000000000000000000..b667372752c45d09e0f86049aca9365f0d173054 --- /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 0000000000000000000000000000000000000000..18304e9c28283575d18c3225bcfd28a7b5e5187e --- /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 0000000000000000000000000000000000000000..2b6944b379e8605510a3c3667119e7e0e7d31b4a --- /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 0000000000000000000000000000000000000000..64a00e0a1b72e71c6fbc2c8d6041c5ae96959d0a --- /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 0000000000000000000000000000000000000000..8212eb7ffaebf36ad41c511400e277fab4e78bee --- /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 0000000000000000000000000000000000000000..27cfa3693c78b534b89ab596ce90324d3ab3a4bf --- /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 0000000000000000000000000000000000000000..95ebe10535a1faebeed5a5d08e3270d79d918f20 --- /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 0000000000000000000000000000000000000000..6a650ea7719fc703ec43e0efaf9188dd63f21049 --- /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 0000000000000000000000000000000000000000..ebe2d95f89ee75e47a02b4e17fc4dd708c39fb3f --- /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 0000000000000000000000000000000000000000..fc9b3f14af72804a36b3f0e48eced1bc725bffdd --- /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 0000000000000000000000000000000000000000..45f27076fa6a011eabed5e02e6808028d2b40f61 --- /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 0000000000000000000000000000000000000000..408d58ad0097d1a36a0e6cdb4a09c6b66149a014 --- /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 0000000000000000000000000000000000000000..e4d0995519cdcee04d1f3235fa67ac3db7afc7db --- /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 0000000000000000000000000000000000000000..e0ab9fda968135da6516e86800ba4f42ae958cac --- /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 0000000000000000000000000000000000000000..b8ba157d65a4650ac64b7d7e88870ccc5560c3db --- /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 0000000000000000000000000000000000000000..3a36be46d4aadd2fbc5ec994b1210e30b2383c14 --- /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 0000000000000000000000000000000000000000..4f42e1e4c344a24f70f0845414bc566fda2349e2 --- /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 0000000000000000000000000000000000000000..e237e2388cc3fea880f9de3dc65e958d396b8cff --- /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 0000000000000000000000000000000000000000..2c9d38fec95bf12030c63d35bca73fbf9e8bf2ca --- /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 0000000000000000000000000000000000000000..d6657d5bf6783464ccc94e808c5a560cac685757 --- /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 0000000000000000000000000000000000000000..22f32cf7cc02e40f2e48faea5cf8d7c2b1ab92f9 --- /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 0000000000000000000000000000000000000000..e3ff7cdcd47d1fb6ce5c52126c48517413f928d1 --- /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 0000000000000000000000000000000000000000..c15df79a0d80987ff759d3e6240cd1ee20177949 --- /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 0000000000000000000000000000000000000000..032bf9ef00697d2fd06238683667baec1bb0166c --- /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 0000000000000000000000000000000000000000..c133b4203dc805c50080f7daf24983352e9eddb7 --- /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 0000000000000000000000000000000000000000..76a7fd30374390efd07735aef5d8ca7a81007b3d --- /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 0000000000000000000000000000000000000000..b2af8e386c04434bfe6c40be42c005b583ecfcc6 --- /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 0000000000000000000000000000000000000000..ba23bf009a60323a56d10d7cbbfd39db1b97cc41 --- /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 0000000000000000000000000000000000000000..ae7efc6dbbf83de31d3515147da66322382a9ea6 --- /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 0000000000000000000000000000000000000000..00257e64db44b332e4f798416ddeb46b6a3a4b67 --- /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 0000000000000000000000000000000000000000..e71466c9ac0ed87ee2d86da22c1d63a155085dc0 --- /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 0000000000000000000000000000000000000000..1610895ab8282333a84de6e0912967f5a080b445 --- /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 0000000000000000000000000000000000000000..c6a0a4c32af87724fea0caa8d7d0688f721989ff --- /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 0000000000000000000000000000000000000000..e90bce4b6a4baef63fee2060a1b16c23089f2820 --- /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 0000000000000000000000000000000000000000..d1886c6e57bf55f96a4f99c7eecce3cb123fba68 --- /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 0000000000000000000000000000000000000000..322d6ff4df4bc7828ee28c7e1011d78adc72fe4f --- /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 0000000000000000000000000000000000000000..774d53a5482d2b921be304b3c92cbdef49b0f64e --- /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 0000000000000000000000000000000000000000..f95a811e626879dd49e1050d0617d63db6075ae9 --- /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 0000000000000000000000000000000000000000..ee5f17353ded81e976f4f419a929076c20bc6dd4 --- /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 0000000000000000000000000000000000000000..4f9b6eb5f39280209d44886191c914e2b11c1a25 --- /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 0000000000000000000000000000000000000000..45c419a0ac33c4a57223d7b83f73bbfd8746f712 --- /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 0000000000000000000000000000000000000000..de8c43ab8f7c74d30179101eda9c07f2e3f78cf4 --- /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 0000000000000000000000000000000000000000..c414801f55a25a0852fd400b12872cef33844ddb --- /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 0000000000000000000000000000000000000000..38eea5a32cca65447ab2ae73bb3aa8315e5b664d --- /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 0000000000000000000000000000000000000000..1dbaa66a38e16e5f1eb830c680254276a44ea73d --- /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 0000000000000000000000000000000000000000..976b0107df29ce10de4a55ad689a0752b032904a --- /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 0000000000000000000000000000000000000000..340b9c00bff67525a5bd5dfef417e9a9953e4a87 --- /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 0000000000000000000000000000000000000000..1516483606df999f1dfcd53e540f852885892555 --- /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 0000000000000000000000000000000000000000..742ce3e5e43696bf2bfd7b2f017db8255fa22874 --- /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 0000000000000000000000000000000000000000..43a5d38c78ae0a4dff9ee6c316cac717254d98a2 --- /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 0000000000000000000000000000000000000000..5d4d1d23d77a35236c18e6229915a37e1927fcc0 --- /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 0000000000000000000000000000000000000000..b511cbb0b4284e54ce3e53ec5401993ce9d690d6 --- /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 0000000000000000000000000000000000000000..d096d54b8b9e358bbe4806b0213217ac6fa53d7d --- /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 0000000000000000000000000000000000000000..118c1ab2e94d71634575e8401c540588874e3d8f --- /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 0000000000000000000000000000000000000000..526db66c0e819d3bd49413c5fe8be20dee258a29 --- /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 0000000000000000000000000000000000000000..7132617240bdd6b39e176c84de2e38797ec47b82 --- /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 0000000000000000000000000000000000000000..d57bd321170e68ff31a9c54b494b57c424211a7e --- /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 0000000000000000000000000000000000000000..1c3eed5d32738f5dbd0bbdc60cb8d40449c46937 --- /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 0000000000000000000000000000000000000000..32675cc39618058ff79231988587d7dc75a13e7a --- /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 0000000000000000000000000000000000000000..d454d8b406e45745f1548069d99dcb7094c9340b --- /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 0000000000000000000000000000000000000000..3645113ea773abb4dcd101ac890c7fb1647635fb --- /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 0000000000000000000000000000000000000000..d33da0cf7a66f4a0b3dd9ddab1648cd3f524f34b --- /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 0000000000000000000000000000000000000000..84bf076a5259d6a995a546058ccd06a9c3362f35 --- /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 0000000000000000000000000000000000000000..7f28b47ff884d17062169a64e7433c74b1360b16 --- /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 0000000000000000000000000000000000000000..779cdf5e8153cd0af5a62c141c6dc84d2b6b24ef --- /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 0000000000000000000000000000000000000000..e9deb3c73704720af9ae0c3bc3c83d02a54a48b2 --- /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 0000000000000000000000000000000000000000..b435870722edd09f4c49c46cae403483dbea73f5 --- /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 0000000000000000000000000000000000000000..2487ff34361698f66e314a49304efefb1c09b7d2 --- /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 0000000000000000000000000000000000000000..2be772f035b97c7264d84e208fb34946634a7439 --- /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 0000000000000000000000000000000000000000..96b9576fc8a2974076f9017485d5e6e74783be2b --- /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 0000000000000000000000000000000000000000..faa70405fa4d0cc304c49bd4e04c258a9e66dd80 --- /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 0000000000000000000000000000000000000000..7eee13c1c2b4d658f48570711af59244a91add61 --- /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 0000000000000000000000000000000000000000..923b9318da49920ce4593807d443023a1f7af186 --- /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 0000000000000000000000000000000000000000..94c0010ab37b289131727fca0b3a55e1f684491f --- /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 0000000000000000000000000000000000000000..51112c0270da15c9c1a48bce07c2b1ce00f37fe4 --- /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 0000000000000000000000000000000000000000..725822157c3ab3eefb890f119aac138fb5131ee4 --- /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 0000000000000000000000000000000000000000..dd63e7015cc14c756e3e2bb482f8fc10093f5c89 --- /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 0000000000000000000000000000000000000000..31931735469cadb701f87fac8c77915e474a93f5 --- /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 0000000000000000000000000000000000000000..0f7c2313a19c67b5e4eab27110993193b0382ae7 --- /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 0000000000000000000000000000000000000000..bc5551552fbd627ba63e8ddde20ce0e052c942ff --- /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 0000000000000000000000000000000000000000..e96c8b809ae9ce47504bde087e24ebf2d241172a --- /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 0000000000000000000000000000000000000000..1575c9ff78dc53349cc6ff48da272a2a1caabcae --- /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 0000000000000000000000000000000000000000..9cb1ce8c974f14f5b3edba1f64bac35bddb79410 --- /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 0000000000000000000000000000000000000000..1f7ecf78d8c32072cd6e2416389d6382b9e84a0f --- /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 0000000000000000000000000000000000000000..9ba54e09ba3dd7ee0cfe27ca485baa8fedd4e81f --- /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 0000000000000000000000000000000000000000..929b08402952725bd0a1d4bf7521c5e723fa0775 --- /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 0000000000000000000000000000000000000000..dbd43bc94c877c0edb26b533d3d8dcfc5a8e06d8 --- /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 0000000000000000000000000000000000000000..1d7eee6115c427c11169f991423520c4d66813c0 --- /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 0000000000000000000000000000000000000000..cb81163b6814c6d742ef5cb393f8d9cb74a859e7 --- /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 0000000000000000000000000000000000000000..3a865b170aab5c750a538b5ca13d75cfd2ee5a5a --- /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 0000000000000000000000000000000000000000..86eba30c3678739d4ce85a94a7fa87fe3269a3e5 --- /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 0000000000000000000000000000000000000000..14fad731866041b1eed1611d324dc8942d44c766 --- /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 0000000000000000000000000000000000000000..5dc4a28a7328c6cbd42f3a5eb9d51046c52a85f3 --- /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 0000000000000000000000000000000000000000..dd47e7e09e42ee9304c1c82073e1e968048f8b87 --- /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 0000000000000000000000000000000000000000..a172a8febaaefebab7c20005ef183ec9a67dce60 --- /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 0000000000000000000000000000000000000000..df35c0a98a9ee983c8acf88ee331e02c06a704f9 --- /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 0000000000000000000000000000000000000000..0cd9b95f6f9a3889f23cb814892d4de18f847adb --- /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 0000000000000000000000000000000000000000..70f55bede4f1327f1194fcd9a82c311be58a96af --- /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 0000000000000000000000000000000000000000..72b98db3b729485d4cb3f677ec1869cc4efbfdb7 --- /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 0000000000000000000000000000000000000000..300fcbda61624aa2254f1c90b78c5cffc6d1bf0a --- /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 0000000000000000000000000000000000000000..3ed849b00f4a5633e8bc0b05e8c387653d889afe --- /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 0000000000000000000000000000000000000000..32cca3dd2762bc4f9fbfcc897de87c1a75d329dd --- /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 0000000000000000000000000000000000000000..b68ec69a9ca8019b5af58f43742c230f2d03634a --- /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 0000000000000000000000000000000000000000..bedeb9a2c74cdd620fbfa71333ce1b45fa22ad4b --- /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 0000000000000000000000000000000000000000..07008ffb2397ca78b9e28a270646fd8211fc04ce --- /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 0000000000000000000000000000000000000000..29b4017bddb9c78264f29b6a8c09911bb11458b1 --- /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 0000000000000000000000000000000000000000..bf0dbbf5283fda670ada95e286a552d5dbe67803 --- /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 0000000000000000000000000000000000000000..4f09e89bf8ff356608bb9cac758f739820be7593 --- /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 0000000000000000000000000000000000000000..18bf291e6bf638a9d0cd506bf8bcfce8782626f8 --- /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 0000000000000000000000000000000000000000..948193cfab9cdf3e2b734095e35c5bd70d69fa9f --- /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 0000000000000000000000000000000000000000..080548378404a57d9213de65fb7cbf7aaf0b01ff --- /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 0000000000000000000000000000000000000000..508b5443898112436e72441e51cc3d3144f8ad15 --- /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 0000000000000000000000000000000000000000..e9138f895cf4002566f040aeff80f40071c51c21 --- /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 0000000000000000000000000000000000000000..689ce89a4a77af0b21a855a1715490516a4627ad --- /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 0000000000000000000000000000000000000000..21c1632ac4a31c9625db2039fa0bf7d59d948cd1 --- /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 0000000000000000000000000000000000000000..11fb36b556d0d73207bec2e81df8468508428c0d --- /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 0000000000000000000000000000000000000000..d87a4df452c38a11eaed6d492a01852dba5e0217 --- /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 0000000000000000000000000000000000000000..9351bc823a04dba10c4bbec09028b77f134bef80 --- /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 0000000000000000000000000000000000000000..d2d3aaa4ecfd8f5de856ab63fe5d807ec426efba --- /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 0000000000000000000000000000000000000000..fc7d9d06d4252ab356c7b7ebd506858723f3dc8a --- /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 0000000000000000000000000000000000000000..7bdf63bc52ed3394bad37188a025ad40b3c3e5fc --- /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 0000000000000000000000000000000000000000..0093c600eff6996de34c62fa0dccdcc13155cee8 --- /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 0000000000000000000000000000000000000000..6b8f0e59979964dfd5d9ab892c0a5aa5130ca8c2 --- /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 0000000000000000000000000000000000000000..81643231dc6c2bda5ad70b5afe63436a9ecd1be0 --- /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 0000000000000000000000000000000000000000..a2abf0e0496b1fc08c7f21a203f2da2554874caa --- /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 0000000000000000000000000000000000000000..04636d9437f5bc83c584854a25610b85e5b5b338 --- /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 0000000000000000000000000000000000000000..1c8f54f012fee7ba54bd7e6abd92049aff29e28b --- /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 0000000000000000000000000000000000000000..40ebf2f4f425534f70155170beadfee117c219b2 --- /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 0000000000000000000000000000000000000000..f1376e98ce19ae68ea435eababacefaca3c9b5f1 --- /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 0000000000000000000000000000000000000000..6732a8d2ce6b6161a0d58d21d75b2c23a2f69a96 --- /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 0000000000000000000000000000000000000000..ff5849c6984064c2aca6a22d212c5293d41ec4fb --- /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 0000000000000000000000000000000000000000..73ed3fc3dab6fff5e63b24ff3c590ec907a85589 --- /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 0000000000000000000000000000000000000000..ae2f381f0a5da5eae10c3d8ddadcc5da35ebe6d3 --- /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 0000000000000000000000000000000000000000..e957d90d64643ed29add8b98b2e6840466b56840 --- /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 0000000000000000000000000000000000000000..aee156d98e413f3208f32e1f5cdfae9fc30213eb --- /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 0000000000000000000000000000000000000000..fa0f8f872ba68fb7b36dd3587f15e549bcb31111 --- /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 0000000000000000000000000000000000000000..94fe66ebc545c8d24fa3cfa8d60308f1863e444b --- /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 0000000000000000000000000000000000000000..9ea43a731d0e1b4681e8f85aa33239acfbbcbf1e --- /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 0000000000000000000000000000000000000000..f707bc50c4a34715d6e155cef80fde612294b9c1 --- /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 0000000000000000000000000000000000000000..555dbaa7e884a4a2edf59d9ecd0f53e0e5a763db --- /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 0000000000000000000000000000000000000000..cbc4d5962fbe64b753aa5e62f6896197cfc259b2 --- /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 0000000000000000000000000000000000000000..7fc21a366cb1091a2a4aa9d62ab5272622a82d2a --- /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 0000000000000000000000000000000000000000..fa2d28369d0e7b6ac772efa8a65680a54bbed5ab --- /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 0000000000000000000000000000000000000000..c5b2f6044514280fd2a7b98f241b6da12cb42a8f --- /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 0000000000000000000000000000000000000000..32aaa741dbb8a58f1c23268aab4cbfd5c4ce86a8 --- /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 0000000000000000000000000000000000000000..cafad13fc2c6598f85c9a48ebe5d852d81c7792c --- /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 0000000000000000000000000000000000000000..14bb3481b57da213b0b8566d6bf93fc1cdb4e0f5 --- /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 0000000000000000000000000000000000000000..35af8d12171043091b3bca47c8df91a342730b2e --- /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 0000000000000000000000000000000000000000..ad8a41fc95c4bd5d4a16e8b3ae1c93fdead92fc8 --- /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 0000000000000000000000000000000000000000..4ca6b60060177b3c07efc86ed9689f57cf7a66dd --- /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 0000000000000000000000000000000000000000..7efe9e26c111affc84f9ebb2e0a0da472f80b076 --- /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 0000000000000000000000000000000000000000..8289d1cfecd4be64545d746cc42481523f918a71 --- /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 0000000000000000000000000000000000000000..fc5e148e5437e1af3d3b0120ab57e95539faa0ca --- /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 0000000000000000000000000000000000000000..c269db56deaf7e050daa84fb0e99370a0b794255 --- /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 0000000000000000000000000000000000000000..b3fc77f2e234832822b09029f3539a0354aba3b1 --- /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 0000000000000000000000000000000000000000..77548136eaad432a3050e5fa72356adc4dad9387 --- /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 0000000000000000000000000000000000000000..5c8f1ea8c973a5209dcb0eeb6ae670e7e2b9804b --- /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 0000000000000000000000000000000000000000..4e00483d284867a83690e5563c01c0bff8ca2e91 --- /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 0000000000000000000000000000000000000000..8f52fa09eee301020b40c31e32579e33eb50183a --- /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 0000000000000000000000000000000000000000..c30e8934f2de1a07925b1f24e8fd0a189b03afe9 --- /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 0000000000000000000000000000000000000000..5b45324bb6336734463cf1bd769a92f4647a3368 --- /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 0000000000000000000000000000000000000000..d3121f2a5146c6eec76618191027f2f50b83797a --- /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 0000000000000000000000000000000000000000..20c8a79f4719bb0ed7f8c9b6c732e68b3429eb43 --- /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 0000000000000000000000000000000000000000..127b9b9859b5c30e7ff641b82ee787c6cbde01db --- /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 0000000000000000000000000000000000000000..ebbf425dfe50859e37d16135917230f27d6ce028 --- /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 0000000000000000000000000000000000000000..4531dd3a7e65ad6ae96d26226a06eb8421c4b44f --- /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 0000000000000000000000000000000000000000..6a0e43e8d0f2ebe7b5e347cb92415df0dd448ab1 --- /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 0000000000000000000000000000000000000000..99f7ef81060a94ccd7fd14cc8850e63be4b6d600 --- /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 0000000000000000000000000000000000000000..0f17f1bc62a490f80aa8b0391f50715eaa1150dd --- /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 0000000000000000000000000000000000000000..1ac6fda9d4de9c39f646fcd08b23ba519fd641df --- /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 0000000000000000000000000000000000000000..2b212e1e22ee5e3b47ca3f6231e73a93074badfe --- /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 0000000000000000000000000000000000000000..d76413e38e52a26aa8eaa9e97ac976b6bd574a00 --- /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 0000000000000000000000000000000000000000..1fd9ebf18f3484f904b83d1184fd047ddbaac8ba --- /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 0000000000000000000000000000000000000000..640f731c6d9546a0ea61d04315f30add59053674 --- /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 0000000000000000000000000000000000000000..c070c290f5a9510495c74b4343e28c6e4c17c23c --- /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 0000000000000000000000000000000000000000..9483a557c7d4423bd52408572ff11c7ea2e66eb8 --- /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 0000000000000000000000000000000000000000..a372343f4f1e7a360e3377be4a0b55f04b7f1d59 --- /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 0000000000000000000000000000000000000000..2847d6dbd6887ec81666a468976366993df0da10 --- /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 0000000000000000000000000000000000000000..8aed8c40e0077623c8d9b3dfcb71e0a154a30c4b --- /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 0000000000000000000000000000000000000000..ccac9e1ef80aee7fe55da4871c0f23edccc79402 --- /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 0000000000000000000000000000000000000000..f43f688494d3a8165f157b76ba93252a742c9b8f --- /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 0000000000000000000000000000000000000000..e85ff68414cfb1490cb38f45e7bdfa6f27cf73a3 --- /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 0000000000000000000000000000000000000000..c3a7abcb56baf3af6645004770f4579e568d5c64 --- /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 0000000000000000000000000000000000000000..a7dad0a550667fe2ea68424a8e90ee37e857df71 --- /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 0000000000000000000000000000000000000000..a630ecb22653af4d1fcabf2ad42a1bd732f1f7d1 --- /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 0000000000000000000000000000000000000000..9fb2aca007df8dad69133286155baef399ef85ed --- /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 0000000000000000000000000000000000000000..6b486a363e83cc5ec0e8f0f868628dffe734292f --- /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 0000000000000000000000000000000000000000..a061cd1162dfd40365d60dd15087471049611f09 --- /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 0000000000000000000000000000000000000000..a36356fbf892077213144713730e0433e8815e26 --- /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 0000000000000000000000000000000000000000..2d3383f0f32f8a83b334a8a6a91288f0994d5571 --- /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 0000000000000000000000000000000000000000..c2021ff13f46cd9edc7e1bfbdb5725c543db2524 --- /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 0000000000000000000000000000000000000000..9f1a6ba976943ac35c696c561586d7937e1d6589 --- /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 0000000000000000000000000000000000000000..542784a17a3d2c4e4622a93a21ad459e49a600cb --- /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 0000000000000000000000000000000000000000..174573b0b11abb3a0c7a9dae8fe6bfcd2d863e99 --- /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 0000000000000000000000000000000000000000..df7b02e4cb95c2e4b91f2c0602b55e8cd2f76015 --- /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 0000000000000000000000000000000000000000..c773ee85fd2ab5dd99ebc44559c6e56a24639dd6 --- /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 0000000000000000000000000000000000000000..679021db948d82a5aaf1d55effe319cf6ba8a971 --- /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 0000000000000000000000000000000000000000..d06aefcc5581f5162f479ec6dc072e0993690228 --- /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 0000000000000000000000000000000000000000..b605b4d1ba50c23ddb05e6b61a0440f506bba60b --- /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 0000000000000000000000000000000000000000..8df6238fc3674fb8578ace3d42558a9748785c63 --- /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 0000000000000000000000000000000000000000..30f3c272c567529be492728344fccd6e4d4e999a --- /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 0000000000000000000000000000000000000000..058065f7d4dc4da400ff175f1b11a5d33d50936d --- /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 0000000000000000000000000000000000000000..007884faecbc906726cbec598044cf39ce6f5ae4 --- /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 0000000000000000000000000000000000000000..52eaae33a220b72ee36f148454f5d333e19a7a83 --- /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 0000000000000000000000000000000000000000..a0d86692be8810d01f364ffdd8c097482b097950 --- /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 0000000000000000000000000000000000000000..63ff5e6a4738aabb438b3b3a4fa5584938932c71 --- /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 0000000000000000000000000000000000000000..9a77935609510b8b7f0b71bd2e85f41aae96f540 --- /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 0000000000000000000000000000000000000000..1911363594ac8f6ba0078e319771be3efa53e12d --- /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 0000000000000000000000000000000000000000..e6bf55933ae6762eaf87e02b6537c956c50de8bc --- /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 0000000000000000000000000000000000000000..dacc8253704d477cdbeceaac17e90a2dceb6bb65 --- /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 0000000000000000000000000000000000000000..e788263c24450277f752adc42fd005f6796bebe7 --- /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 0000000000000000000000000000000000000000..25805a29cfde6ece01ce30ed292c915ee1f6b9bb --- /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 0000000000000000000000000000000000000000..7ae4339190b3b732cbb99aa547d5aa7116439834 --- /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 0000000000000000000000000000000000000000..6e02003253c20c01c6619cda35d964d5cc484b94 --- /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 0000000000000000000000000000000000000000..4d05de295cce47820a4fa4d314aebd0468735183 --- /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 0000000000000000000000000000000000000000..b8452094a717e428a21bed60c3c8d45a451215a6 --- /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 0000000000000000000000000000000000000000..be9e34a2001859b2e62a77b05f01b5a937320dc3 --- /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 0000000000000000000000000000000000000000..fdd86159dcc19c90d2f2b10fe7c08a10d71470e2 --- /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 0000000000000000000000000000000000000000..68baf30d4d56bed8a37507c1089fca55da8da751 --- /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 0000000000000000000000000000000000000000..0537900410eff28279b5206a44ec9ffd2e67a93b --- /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 0000000000000000000000000000000000000000..8cec85108fb8de1fd00891b823a159df3b66877d --- /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 0000000000000000000000000000000000000000..ba5c5c24ede5893bbf911ea1877ccd3c3338b3b2 --- /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 0000000000000000000000000000000000000000..794108955b2fc019e8fc9ac15b41dcf51717756d --- /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 0000000000000000000000000000000000000000..29d56994fb51f1fe592025e1903e521016dd552b --- /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 0000000000000000000000000000000000000000..8bd08b212758fbd3fc6337c483e1de6454d55529 --- /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 0000000000000000000000000000000000000000..d190714d7d4450846e6a8d2ae2baaa6ce81f6fe4 --- /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 0000000000000000000000000000000000000000..c4b348cbee4ce79c3650d88c685b979cbf4233b1 --- /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 0000000000000000000000000000000000000000..ad66a373ce6d2d883eda92d0f37a90985fb25c7b --- /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 0000000000000000000000000000000000000000..07a8d0c5cc5ccd267e4432d8c327b5761ccd8f71 --- /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 0000000000000000000000000000000000000000..7b91b25643caba7a43ff0aec536482c40850d9c0 --- /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 0000000000000000000000000000000000000000..84c5778f4a3e6c3aa078f1657a338203ed6e4e92 --- /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 0000000000000000000000000000000000000000..e8e428b8c6a98362bf57374954b692625050a5b2 --- /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 0000000000000000000000000000000000000000..0899242a0ac992166d62b27896f45e908c495818 --- /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 0000000000000000000000000000000000000000..983046d27bda7644f9882e4c553bf38bacc596fc --- /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 0000000000000000000000000000000000000000..ab7d0932edd4767045f420c298b4108d2bb6f9e7 --- /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 0000000000000000000000000000000000000000..63b565fc34568a819ec7fc2f934a58696c64061a --- /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 0000000000000000000000000000000000000000..342871c9269c76a6df23f6cc2284bada90bbad65 --- /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 0000000000000000000000000000000000000000..320532182132122410af9361bd1136fec61e78ac --- /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 0000000000000000000000000000000000000000..1f44fe71dc17942eef87dc63324d52ed5a180874 --- /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 0000000000000000000000000000000000000000..a463ef72e5db96025119f981ff42d52bf217d7c9 --- /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 0000000000000000000000000000000000000000..3eb63de1cadcf28177689ad255e22449e3e38b5c --- /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 0000000000000000000000000000000000000000..a447f6e74215dd235ea15607963f4b1cb3c8f19a --- /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 0000000000000000000000000000000000000000..f3f007915014d333eb6641a0a20a3e31a01a943f --- /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 0000000000000000000000000000000000000000..0fd36692aa4ad2481a574179be8be49e8f488766 --- /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 0000000000000000000000000000000000000000..cf101ebc0e8083117b19d95ad24ae1a12550f008 --- /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 0000000000000000000000000000000000000000..9df1f735e5dced56f8f16848255a91286e3c0e09 --- /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 0000000000000000000000000000000000000000..b20176bb358f1599691c9dc9a384044d5e83a401 --- /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 0000000000000000000000000000000000000000..35b1ab68f375e1ccedea927226d88f0f57e2265d --- /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 0000000000000000000000000000000000000000..e66f352e6ef233cdbe93b7e4b98a64d2dfbd6dea --- /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 0000000000000000000000000000000000000000..b9004a935d6186dff05ba8a9b15946fa8aa29701 --- /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 0000000000000000000000000000000000000000..b775ac031b20bc430aeae26d60ea5f146f7a3314 --- /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 0000000000000000000000000000000000000000..c7581a490b070d2831294409cadbb924d1900dcf --- /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 0000000000000000000000000000000000000000..35e8e937c618258a7abbd49e339dc5b77f9c2ae3 --- /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 0000000000000000000000000000000000000000..6dd575fd2f6c599439e16199e84c05c04daecb6d --- /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 0000000000000000000000000000000000000000..b2fe17f663b6245abb10c453e968d94a3d02d865 --- /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 0000000000000000000000000000000000000000..46c2c98332799c498fca1b15597f2868470b5270 --- /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 0000000000000000000000000000000000000000..1234aa507613f5db06be381c972774323d698d22 --- /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 0000000000000000000000000000000000000000..5001d1e8395dfba20ae6ca36e51641d809806c12 --- /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 0000000000000000000000000000000000000000..a6b64c6eb6e883dcd5d3819cdd294b8afcdf2e00 --- /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 0000000000000000000000000000000000000000..f4aa266414790122b44610d72e1a1efff2d591a0 --- /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 0000000000000000000000000000000000000000..e82e3424e39e18cad473db0a6b0dd9f11fd2ff80 --- /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 0000000000000000000000000000000000000000..562ed2cf381759f0d0bcf1d875df1947f58f539a --- /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 0000000000000000000000000000000000000000..54c9a62a5620413a240ae5ae9a4623be21ba40d8 --- /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 0000000000000000000000000000000000000000..ea9f94ec6a7dabcde258e57f23602e6a7c9a452b --- /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 0000000000000000000000000000000000000000..1392b1d9bc6cec16a6524e37dc66dfcc3b44c12a --- /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 0000000000000000000000000000000000000000..0a92e55cb82429ce4f86901e6048815c754d6bc4 --- /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 0000000000000000000000000000000000000000..e1b6c11ceca1b46d904ed1b6f71539250d94643f --- /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 0000000000000000000000000000000000000000..e5e79bc84a19882a4bbfec9a1addeaabe6ab477e --- /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 0000000000000000000000000000000000000000..a6690aacd9b0c1c2440649bb5e4e15e1889a2186 --- /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 0000000000000000000000000000000000000000..537d3da52bb6129203dc893071bb8cd39db7e16b --- /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 0000000000000000000000000000000000000000..369a54cb8b8d7dceab9af081358f2e3716a0e12d --- /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 0000000000000000000000000000000000000000..6e71ea2e012f6800dcd93dfa1649d3005c53bfc5 --- /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 0000000000000000000000000000000000000000..4cabed8049a9c4380904244773220d86a3224c18 --- /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 0000000000000000000000000000000000000000..904715bbc79465f62cd438fc73b08c7a64d42623 --- /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 0000000000000000000000000000000000000000..db171691920dee44dff1bbd9aa56d6d3d42538df --- /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 0000000000000000000000000000000000000000..79cd5caec3c91ef0e4fb5531bfe269fbe534f4ba --- /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 0000000000000000000000000000000000000000..587ca45e73c761cc932dcf104ccd9e331c21e588 --- /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 0000000000000000000000000000000000000000..25d52f8f784c2f6f0ebc45920affeb609c700ead --- /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 0000000000000000000000000000000000000000..ca06b2c64ef505e2a639ab9c6691ae722f76ebb3 --- /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 0000000000000000000000000000000000000000..2b218ac7f37397fbb74113d9f04be3b55a4e5dba --- /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 0000000000000000000000000000000000000000..6c1bef2a0eecff7bc6c20118b3102bee42aa5c96 --- /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 0000000000000000000000000000000000000000..2d5e0e9ff36bd7593a474aac3be6f1a96ed0a43a --- /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 0000000000000000000000000000000000000000..e6dbedc7ec6cda50a668124dbfe096e5b2c5e0bd --- /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 0000000000000000000000000000000000000000..a5512d85aec58c092172f5518c2336a969a0b9c1 --- /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 0000000000000000000000000000000000000000..2e4095c129099eae07e9d0db7674d1bd7130bbba --- /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 0000000000000000000000000000000000000000..b0e158e6174ce73672df16f2ae7331576cf7726c --- /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 0000000000000000000000000000000000000000..7533133b13665c8433540d9b33a87832ac5b37fc --- /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 0000000000000000000000000000000000000000..a432cb8162e380fef5c205b407724381516975b1 --- /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 0000000000000000000000000000000000000000..bd184aa5e9924c66340fa3cabc0e38364484b2fb --- /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 0000000000000000000000000000000000000000..ae24534f56be5bd3fbb5f439bf6f59240e2c47c1 --- /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 0000000000000000000000000000000000000000..9c3d997500f090991baea8a74174acbbc0628322 --- /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 0000000000000000000000000000000000000000..2736b3daca0b5b5436622471a28535559c3585e4 --- /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 0000000000000000000000000000000000000000..5386cde1b8a171a67421043e32f07e1bf3b42635 --- /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 0000000000000000000000000000000000000000..41dbf2274845e6f6e6689365a80f9b88365f6447 --- /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 0000000000000000000000000000000000000000..6ca6414719598819da86c11a10f21d51ca424f88 --- /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 0000000000000000000000000000000000000000..52f1a4e0a023c97d1ad77fc0054fe71869605dee --- /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 0000000000000000000000000000000000000000..ca4c799b05fa890b83d143c006f31926aad7f1f4 --- /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 0000000000000000000000000000000000000000..f21a47a58a6e257475ef943cc9c66c1119ccbb31 --- /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 0000000000000000000000000000000000000000..a012eb14cb56247f731e31a99b98c48396bb6f28 --- /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 0000000000000000000000000000000000000000..967bb52fd8bae17685434f1c875befbbb96cb93e --- /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 0000000000000000000000000000000000000000..9fc9f1a7aa868ffddc94aa76c4e277ab31dd6f28 --- /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 0000000000000000000000000000000000000000..302e3c2b8be987749b8b4304a94219ab5cbd8a5b --- /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 0000000000000000000000000000000000000000..765aead7db21c53f4090ee3b1e9a6aef1e2010ea --- /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 0000000000000000000000000000000000000000..7aa8152fb5d2c61cfb587656c6337765dd1b431c --- /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 0000000000000000000000000000000000000000..f48e5ed09ff37fc30d17f8926eb88479775fc9d2 --- /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 0000000000000000000000000000000000000000..8334f1f3cc409f2f826d2a7678b79b4f22c580b6 --- /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 0000000000000000000000000000000000000000..c7f5fae9baf2be2a6a360ad478fc5a40b9601f50 --- /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 0000000000000000000000000000000000000000..c58fa6bf6b349c82f7694f91421ae6eb165b51cb --- /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 0000000000000000000000000000000000000000..2144e22d26958465d7759a4bbf476098936e60b5 --- /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 0000000000000000000000000000000000000000..c87a870106a522d225cb9c13af81a626ee6c9aaf --- /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 0000000000000000000000000000000000000000..717c5d048128d19c1fd31c1e6eda3837e7b9971c --- /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 0000000000000000000000000000000000000000..f4d80f7ba34aa661625c817021f66f966b989208 --- /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 0000000000000000000000000000000000000000..88e9a270ff7f4e720479d17a4eb4e7ac482980be --- /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 0000000000000000000000000000000000000000..7d20964fd78293096b0746c32ac7bcc0e1e597c6 --- /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 0000000000000000000000000000000000000000..9c776dbf7d957a41dfff50863de5f21c9079010b --- /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 0000000000000000000000000000000000000000..f2fa18b527f91c89ea20c57c57f0845f486abdbe --- /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 0000000000000000000000000000000000000000..315c89d930684b04d78d1223afbaf703ad659ca2 --- /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 0000000000000000000000000000000000000000..109dc0e36b200ad185971278e6a35169c12d4dac --- /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 0000000000000000000000000000000000000000..1966678fde0ac2173d52cde29ef5b01fba05a6c4 --- /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 0000000000000000000000000000000000000000..432f49f6618128a4eca78084485d579273fdb6cb --- /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 0000000000000000000000000000000000000000..36f92a72ad36c3e589b4e61b9e843a51d5d453c1 --- /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 0000000000000000000000000000000000000000..37755ffa66f408cf95c2f232e9729faacd93613a --- /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 0000000000000000000000000000000000000000..f43a156a79d41567d2eaf04e2eee70f4e2f21509 --- /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 0000000000000000000000000000000000000000..2441efbfece209657e412a0d0bffeb8419f23a9f --- /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 0000000000000000000000000000000000000000..b4d6c5ff085ee1b138a26171a68e5469cd8d0635 --- /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 0000000000000000000000000000000000000000..a573d0d885b39de747838c6956129bb4f1da98d3 --- /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 0000000000000000000000000000000000000000..0b0595108d6f5756e08d3742fe0338aebfe497ef --- /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 0000000000000000000000000000000000000000..8c27a8e761df2472f828dcd20cba773e8bd0e4b1 --- /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 0000000000000000000000000000000000000000..e0fa5f90223f7be65860bcc732ab0553c7a3d92c --- /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 0000000000000000000000000000000000000000..1acc3eb37640b14db7442b329ef9d3351ceec9fc --- /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 0000000000000000000000000000000000000000..5d797e0c2b35cec123be7b5243c7fe53f3daaa57 --- /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 0000000000000000000000000000000000000000..77420b7c0556b766ebcd9f796d8b9da6ecc6ea0c --- /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 0000000000000000000000000000000000000000..78814abc87a5434471d5bd925bef489c2e4e32e0 --- /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 0000000000000000000000000000000000000000..11338498ec5fa75b6dd37f547d65ddc3742a135e --- /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 0000000000000000000000000000000000000000..253eb6a7b0d0247ee738cb0094c778c128cdde1b --- /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 0000000000000000000000000000000000000000..ed295080579d6ca1afeab2ccfc3b793a921e5733 --- /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 0000000000000000000000000000000000000000..b35cca5f04edec72798503910c1162a0247af559 --- /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 0000000000000000000000000000000000000000..168447af96a4e630946f163be039bd589ce7c8e8 --- /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 0000000000000000000000000000000000000000..77de2003fa0ad97196dedebc7549de6cfc9152f7 --- /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 0000000000000000000000000000000000000000..14651ba6a656ce8582033f7e22d0b5a58afa5f51 --- /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 0000000000000000000000000000000000000000..c5a8d7fce584603ddeceacfb26c1feb1b379413c --- /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 0000000000000000000000000000000000000000..675c8016ef25c826dc6b9c3c5cf74b4e04180a52 --- /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 0000000000000000000000000000000000000000..20e75d2ada1eaa70ebe310eeb6e186df41fe3711 --- /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 0000000000000000000000000000000000000000..0d6687771db6ade576b62ea4cd84317db2285143 --- /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 0000000000000000000000000000000000000000..2af374f20e1129d7aebef027acc90a65f677577d --- /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 0000000000000000000000000000000000000000..c34e23998219d4630fcf94d38cd9fbe8c805de97 --- /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 0000000000000000000000000000000000000000..81e4f888845da208476aecf510596d9a0029979e --- /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 0000000000000000000000000000000000000000..a419e6d1c97b756582d1a135b06c873cac498603 --- /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 0000000000000000000000000000000000000000..c71aa7cb5fbfa7a1537237ccf2900238b8a72008 --- /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 0000000000000000000000000000000000000000..cbf91fb94f2d5e8f4189d1c764291acbe912ee29 --- /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 0000000000000000000000000000000000000000..2dd5dfe07b04d83a05108a66862c07374c18765d --- /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 0000000000000000000000000000000000000000..3cbf8c98ae2cf83d10dee37cb88228b4d4409969 --- /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 0000000000000000000000000000000000000000..06df10d4329b27f3cc7c7e28b607ba8d2bf26efd --- /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 0000000000000000000000000000000000000000..bc50c79a625470f64f6ef6f1ef16d6e69a371574 --- /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 0000000000000000000000000000000000000000..02830b6e46b6f790f47949bf8320a9dc432fcae6 --- /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 0000000000000000000000000000000000000000..d20a3ef6963cb08eef041a20fff2b755848fef71 --- /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 0000000000000000000000000000000000000000..c573bd3d977536dea960b91076117859a1a05ffd --- /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 0000000000000000000000000000000000000000..a5e73bbc5a075fd26bf380481357b65b0cd731f9 --- /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 0000000000000000000000000000000000000000..c1b0b475a3dd11ee3bc89f1c80eed839ab32a30b --- /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 0000000000000000000000000000000000000000..157ffceb295a5a7876797da319d65c1c54fc4ea4 --- /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 0000000000000000000000000000000000000000..4a80911f67c7d4739405f92eda37ea10aacde3f0 --- /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 0000000000000000000000000000000000000000..d33238b0f765055b4ad0eb67dcb2bfe4ccb52c51 --- /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 0000000000000000000000000000000000000000..f43a45ea6448c52641b05d4ea1acb512c600702f --- /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 0000000000000000000000000000000000000000..dfc9ebdc3c98fea476569685ba318fa80cf135aa --- /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 0000000000000000000000000000000000000000..804c635ce9e6c5c66a589b4fd5610c673133565f --- /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 0000000000000000000000000000000000000000..95a618a85a32231a518ac51a527206b306f87b3d --- /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 0000000000000000000000000000000000000000..d4109368172cb6efad80ff87e434a8b743e63467 --- /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 0000000000000000000000000000000000000000..e91cccfed83127984dfdcace623c150f678cb42f --- /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 0000000000000000000000000000000000000000..eb9b4ca62a2c7e90bfa888c3066adcb7761d3f0f --- /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 0000000000000000000000000000000000000000..f4d1570cce17d0e62e484c7845c2e26234cad739 --- /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 0000000000000000000000000000000000000000..d0542ee24fecd73223cc2253d12aed4b3dd5269d --- /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 0000000000000000000000000000000000000000..09e5f9dc75229d9cd16f0de15d6eb6bae0ba1f2c --- /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 0000000000000000000000000000000000000000..e2d69732aca6e04cb34414853c094b960cd162e5 --- /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 0000000000000000000000000000000000000000..cc67cc57f4b1f61f90e363dee8ad14a76cdf3332 --- /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 0000000000000000000000000000000000000000..707d92687775a2cc135d3d338738ced667464335 --- /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 0000000000000000000000000000000000000000..ec179fded7090cd1fb74b3644027921529030e0a --- /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 0000000000000000000000000000000000000000..859928309f82a1f1bb9095763f993550643a8ec8 --- /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 0000000000000000000000000000000000000000..c8e8e7107d7ce2eb6f2dd58c71f453d0b785c21e --- /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 0000000000000000000000000000000000000000..618f0f4b754c25723b55ba3e8de740a583d00b93 --- /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 0000000000000000000000000000000000000000..df93a72b1a6ed98dcca7e97c4bf15d7a76675615 --- /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 0000000000000000000000000000000000000000..a8684b3ab3c8210d898ce80fa3c836b736efe52c --- /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 0000000000000000000000000000000000000000..96608e930169fbed5ef5bde545571f2e4abe7f2f --- /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 0000000000000000000000000000000000000000..a449024f734b5e615e522566e6e674e613b61f39 --- /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 0000000000000000000000000000000000000000..94202a58cb22a94f3e5566ba5a98da14a497698b --- /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 0000000000000000000000000000000000000000..8005d4f6b3f02893dbf9fc6825c186c0602edfb3 --- /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 0000000000000000000000000000000000000000..4a1c0f4bd93f3d90bc8ec2d449d4df4142c5afe9 --- /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 0000000000000000000000000000000000000000..7a87abcdfaeca3e499583fb0e828cd2a95a48515 --- /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 0000000000000000000000000000000000000000..c4555d0721235e9f8d5bd242edfb30f6d58cf06a --- /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 0000000000000000000000000000000000000000..0504011307fffb6c179e28003f62a6999a6e1b99 --- /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 0000000000000000000000000000000000000000..ecbb9642c2ed91a16ab09fe5333611c801e16c55 --- /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 0000000000000000000000000000000000000000..86a18c584c2235590f2dedab191f6fc71a2e289e --- /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 0000000000000000000000000000000000000000..1d34bfc3af53cd1b42b8539e6246c326c9648a07 --- /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 0000000000000000000000000000000000000000..114ea7319d8d404219caca78c0b3057c3babe060 --- /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 0000000000000000000000000000000000000000..3cdd6c2d02212f010399f8fe8e56cde7f15a654a --- /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 0000000000000000000000000000000000000000..00d86168d9c72d9f00549c35a5eaeb5ec5fc58cf --- /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 0000000000000000000000000000000000000000..ff61be8f2cfbba151743a554fcf97ebb4675623c --- /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 0000000000000000000000000000000000000000..91538b3eae707bf98e2883660338ece785a170e1 --- /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 0000000000000000000000000000000000000000..fbe822451026487d4b3f70b9d6002b75c3a2c3bf --- /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 0000000000000000000000000000000000000000..c95b5e55969300854a470095ff087db872f9be65 --- /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 0000000000000000000000000000000000000000..6771ec3add64eef4209f9025c4dd96866e92d9d2 --- /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 0000000000000000000000000000000000000000..a9ab2999d111f7dde81a455f6625d12558fe3f84 --- /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 0000000000000000000000000000000000000000..762f8c63e874596ff9608806899beb11c7ba248d --- /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 0000000000000000000000000000000000000000..d064ea15a9e07ca73fcde2dbecd63933d7ff9c73 --- /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 0000000000000000000000000000000000000000..85fe3d169d07db6dfb3213cf5330df7b39ca5fae --- /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 0000000000000000000000000000000000000000..5bbc4e91efa31e3a9268f0587da8f7485ab66509 --- /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 0000000000000000000000000000000000000000..5eae75a352b15f8055cc33cbe75d0b9c5ba5e7b8 --- /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 0000000000000000000000000000000000000000..7d8450a6fab764b5a649b846289a00b4691f6200 --- /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 0000000000000000000000000000000000000000..3196e9c1046903b2d90f3599e53d76a6ada2c45a --- /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 0000000000000000000000000000000000000000..48deeec5795e404e7b1c54330a431e97f1f5a79b --- /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 0000000000000000000000000000000000000000..ea11bd8504acb21c97f630634483b6ad3a2da846 --- /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 0000000000000000000000000000000000000000..d8d8e789cfc81a01fe8471c6b656ad9725c59fff --- /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 0000000000000000000000000000000000000000..32f20a965b0c77c92b984db32ffa56d9cc250271 --- /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 0000000000000000000000000000000000000000..2a3f85e99f944080da820d5622bbb1eeefeab46c --- /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 0000000000000000000000000000000000000000..e2d2f1d7912063c1a3dfb6e807c2ca0558130a26 --- /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 0000000000000000000000000000000000000000..a8ee6d81bb60f5b88ea80bc269d0fb9e57d0c227 --- /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 0000000000000000000000000000000000000000..f0e58d7e1705833e93923276fb012cfb5628198c --- /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 0000000000000000000000000000000000000000..de0d62f29ae40bdd7a8a726bd98e20a3372b0292 --- /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 0000000000000000000000000000000000000000..97c907ef382103a8d69ac2e51d5c012df3f9eb0f --- /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 0000000000000000000000000000000000000000..20ec91e759d7817f05c3364744abf5058456982a --- /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 0000000000000000000000000000000000000000..0fec3421915319691f15bb6e260ab319c1db40ac --- /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 0000000000000000000000000000000000000000..e1478dbf1fd97162da0660ce734292c559bb5791 --- /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 0000000000000000000000000000000000000000..05dc28bc2a22b3df01054f2d76441c7fa84f955f --- /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 0000000000000000000000000000000000000000..dc9ea3e9c06be3e1c2cdf052d0df5dc92a5d54fd --- /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 0000000000000000000000000000000000000000..8d7c6d92d9537d471c51d819d3f28c01d982d4c9 --- /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 0000000000000000000000000000000000000000..50e2317bfbbf1d68f79cc206434bedc77fbbf378 --- /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 0000000000000000000000000000000000000000..a7ab977cf33c23568bd064b529fff9d2deae5d7f --- /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 0000000000000000000000000000000000000000..d8b602b021f39136ec6e4175d3028eae73047cf9 --- /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 0000000000000000000000000000000000000000..ac41558c246584a758b08edb11eefca8bf52ce1c --- /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 0000000000000000000000000000000000000000..24d9c16ba0d936d4079718c2d1b0e68debcbff06 --- /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 0000000000000000000000000000000000000000..130c2ee182bf5b56aaa99d7028b6f2a6a4cc74b7 --- /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 0000000000000000000000000000000000000000..34d764ad64d289b57cbf72d82b875d64b5f29f13 --- /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 0000000000000000000000000000000000000000..c16c65dc94f19d8b0309434276a7a640a9c62745 --- /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 0000000000000000000000000000000000000000..cd5e15ad633c3c52d795904bb1d8aa9e589c31e2 --- /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 0000000000000000000000000000000000000000..7b187071d1346135703a24711e372f445bb12b00 --- /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 0000000000000000000000000000000000000000..39e8b129170d92fb42923a046dbdbdaa4044b3a1 --- /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 0000000000000000000000000000000000000000..46fd39feb8cd9a2d84538d0905a271983d7df97f --- /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 0000000000000000000000000000000000000000..dec4ae04eeb6e18e031dcc52768b4cd7552d1f84 --- /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 0000000000000000000000000000000000000000..7aab893e8ec40c277a60d2a94812fd70a779242b --- /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 0000000000000000000000000000000000000000..c588b39bc98b868a60beb13d2ee870aad67433d4 --- /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 0000000000000000000000000000000000000000..ff1315b001963a4ce6189c29f01b3ec19a42a8a3 --- /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 0000000000000000000000000000000000000000..53d14ff4bc645c6b0b89e0f5efd65018d237596b --- /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 0000000000000000000000000000000000000000..58bac656e7ca40d112d1cccca993ee2aef24bbac --- /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 0000000000000000000000000000000000000000..2bc9b813f4fad340fe27a2692569e1d68b8b34ec --- /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 0000000000000000000000000000000000000000..e75f926ce54a61faa2b5253fce220a80f3c78271 --- /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 0000000000000000000000000000000000000000..e752510d6a09dc9f8010c647f9ac1bdbe4687af4 --- /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 0000000000000000000000000000000000000000..292e66325787094bc583d2d8970d0cb1b9e9906a --- /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 0000000000000000000000000000000000000000..eba7628b653da411fab9b3d2415a901685df65a1 --- /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 0000000000000000000000000000000000000000..0c634d4b861076595d926ab2b76a4982e8af4338 --- /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 0000000000000000000000000000000000000000..aac92daf23fd5cd3d8edc8fbac89b80ec12309e2 --- /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 0000000000000000000000000000000000000000..6693c04c9c63aad15bc835d0b9623457c0a05ece --- /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 0000000000000000000000000000000000000000..baf5fe62ddc537c8b5fc34cbce3d24f32a416caf --- /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 0000000000000000000000000000000000000000..979dd47ea0a74932da9c4f702758cd5111a0329d --- /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 0000000000000000000000000000000000000000..2cfb6da1157eff31424b43717878716a788df99e --- /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 0000000000000000000000000000000000000000..9f6f6ddb0be3788770bc7a117a57d51028a2ea6f --- /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 0000000000000000000000000000000000000000..4ddc293542c8c4475491a1b4aa0c72bd63f14c7a --- /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 0000000000000000000000000000000000000000..9986b6027dbb102521c1a2eebc88972dee1fbc70 --- /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 0000000000000000000000000000000000000000..570a7914c132da266b182fc87f579d5a18ac1a6d --- /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 0000000000000000000000000000000000000000..44a89eac659ba8ed780162ed3cc54fd3ca63e3b8 --- /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 0000000000000000000000000000000000000000..ff5a7275078734d70ade27a56a285133aca73e2b --- /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 0000000000000000000000000000000000000000..3ad83c9053dafde4440aab778fb1721847a128ae --- /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 0000000000000000000000000000000000000000..c9cdfa7d5cf76d687131ace364b2ba8244cfb7d0 --- /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 0000000000000000000000000000000000000000..74c088612689c29ced6ee5873cf0050b96ddd496 --- /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 0000000000000000000000000000000000000000..586127b7e258d29558b5089f5fa1e1564aa2be09 --- /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 0000000000000000000000000000000000000000..43514e9cefc79af5da05362a7873d40abbe8342f --- /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 0000000000000000000000000000000000000000..95fcc5ba878a1234fde835da9afbb36c6bb0a0d7 --- /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 0000000000000000000000000000000000000000..341a3ff1016de82f030e0887788cf3308a78ca59 --- /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 0000000000000000000000000000000000000000..0e383f7f70e51cba1853174be5dae25f3f439ff3 --- /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 0000000000000000000000000000000000000000..6469385b33a1b01688e60adf9193384246dae472 --- /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 0000000000000000000000000000000000000000..bed54c8c3b1b081dc300723bde65bc6a7108861c --- /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 0000000000000000000000000000000000000000..4ed8147c4f8a36fcbfd5ac2ec8b7892854908255 --- /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 0000000000000000000000000000000000000000..5757830afb2281b46db1c48c5d8e6e3088805b32 --- /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 0000000000000000000000000000000000000000..cfb1881aac38d30b964c08b36ec584525f3a9939 --- /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 0000000000000000000000000000000000000000..09e9f6539eaa00449bdb88e666fe832d28557fac --- /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 0000000000000000000000000000000000000000..8dc25947564f20a70970030cb288476920f5aad2 --- /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 0000000000000000000000000000000000000000..62ac5fc050036103e0dd24515b0d0ada4195bb42 --- /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 0000000000000000000000000000000000000000..1e2698e8c7667b711d46a9933fd81408a62668cc --- /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 0000000000000000000000000000000000000000..e578127d0369ecbfac9787bd6d97b9e78969915c --- /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 0000000000000000000000000000000000000000..0676c393b6472ca5c42289293ec63fbb46cb25f9 --- /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 0000000000000000000000000000000000000000..25fa890fd90d88986c8e5cc3df10df3522fe2d21 --- /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 0000000000000000000000000000000000000000..5cdc72c4ef96b2010f9ae4456379be145539a4b7 --- /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 0000000000000000000000000000000000000000..4260c89ced7273d9c431c37588f444720bf94998 --- /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 0000000000000000000000000000000000000000..410ea22219ad7a774051625d325da0176aaa9d06 --- /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 0000000000000000000000000000000000000000..22b0fc59b517590a84ed067609a6392f37c49e7e --- /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 0000000000000000000000000000000000000000..392e8418fcf6aca9f2e9615b298e2123b7740e5c --- /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 0000000000000000000000000000000000000000..023de6e33ff3ade73977b2d76dd2879d54ab414d --- /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 0000000000000000000000000000000000000000..ff6e6b42b42443a012f38ed495fc07ce82a37873 --- /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 0000000000000000000000000000000000000000..9621c29b8795a2660980838bb02ded8c053044f0 --- /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 0000000000000000000000000000000000000000..69aee8fe9702db41426dc7231f951b90ad8865de --- /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 0000000000000000000000000000000000000000..096c468833dd5dee381312ce2140b1e4f9071d86 --- /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 0000000000000000000000000000000000000000..dd2724c1aab4ba0218bdfdcec063a8a193bdaac6 --- /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 0000000000000000000000000000000000000000..9544e76311f8fa0dac2ff4aefbabf826ca5d61f2 --- /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 0000000000000000000000000000000000000000..83bbb9d40543f29bdb0521d4f917a40b968860e5 --- /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 0000000000000000000000000000000000000000..c48bd8bf7b13925edce578549df27be0ff8cc9d3 --- /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 0000000000000000000000000000000000000000..612b4102692d307209bcca0783b9c527fcb23cf6 --- /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 0000000000000000000000000000000000000000..d1de56252ca7834305ff45b06d7c3ea38cf4235b --- /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 0000000000000000000000000000000000000000..7c58c6524588db24f28f0dce3c5a21dc843d9303 --- /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 0000000000000000000000000000000000000000..b048f23ceffd723fe1883a12d502bbf0d3ebd5af --- /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 0000000000000000000000000000000000000000..525280fd53bb3342857cd50b484859cbb5090f1e --- /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 0000000000000000000000000000000000000000..06dbc7a128fdf754a83a198e0aca79376c7f8824 --- /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 0000000000000000000000000000000000000000..a0ba5e35aee6f6358239482b3c0deed4006051f1 --- /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 0000000000000000000000000000000000000000..af4d2292ae196124438462ff84b85c9581421b92 --- /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 0000000000000000000000000000000000000000..e3334c6cc8418dced5f52d2d63dcd34d2089016a --- /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 0000000000000000000000000000000000000000..7ffedea3521c7fc012cc9463c803c5ad0ecf43e8 --- /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/data/in/Aalto-1.xml b/ModuleSatelliteDatabase/src/test/data/in/Aalto-1.xml new file mode 100644 index 0000000000000000000000000000000000000000..9c4063740c8872f7751389de01caff5c22d8c997 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/Aalto-1.xml @@ -0,0 +1,25 @@ + + + + Aalto-1 + Operational + 42775 + 2019-08-07 + INIT + + + Beacon + 437220000 + + FSK CW + 9600bps + + + CW + + + OH2A1S + + + + \ 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 0000000000000000000000000000000000000000..f6348ec7b92e0b59f35114ed503422f9c6a27ae8 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/Aalto-2 (FI01).xml @@ -0,0 +1,21 @@ + + + + Aalto-2 (FI01) + Decayed + 42729 + 2019-08-07 + INIT + + + Beacon + 437.335 + + GFSK + 9600 bps + + AALTO2 + + + + \ 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 0000000000000000000000000000000000000000..7bee14a87857a3fb12d13724829c0b87997d5028 --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/Al-Farabi-2.xml @@ -0,0 +1,25 @@ + + + + Al-Farabi-2 + Operational + 43805 + 2019-08-07 + Draft + + + Beacon + 436500000 + + GMSK + 4800bps + + + CW + + + UN1GWA + + + + \ 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 0000000000000000000000000000000000000000..97704389dbdfbe9e1357f32836cf6fe09e98ecdf --- /dev/null +++ b/ModuleSatelliteDatabase/src/test/data/in/AmurSat (AmGU-1).xml @@ -0,0 +1,26 @@ + + + + AmurSat (AmGU-1) + Operational + 44394 + 2019-08-07 + Draft + + 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 0000000000000000000000000000000000000000..8f032330037f07659a34eaebdfcbee8ae7eef365 --- /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 0000000000000000000000000000000000000000..9474b7dcd5a3a58402540411f47de3ea2a69a50b --- /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 0000000000000000000000000000000000000000..d32b04b253dd039662fd3a2f3253b19ec119bd64 --- /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 0000000000000000000000000000000000000000..33bcf6cd68ea01074852009b5912832137884794 --- /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 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 0000000000000000000000000000000000000000..3e24d0e439619ca4f3d65f87d1aa606531484124 --- /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 ); + } + + + +} 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 0000000000000000000000000000000000000000..28ed673a8ff539561c0aa504738310e69285b066 --- /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 0000000000000000000000000000000000000000..2f9928ec8d72104291a25582afb6a198321905b6 --- /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 ); + } + +} diff --git a/pom.xml b/pom.xml index 6228637d8e890b37a4c23d67577c9f75109b203f..89a6267956ba06686b2449651596abb77de10628 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> diff --git a/src/site/markdown/namingconvention.md b/src/site/markdown/namingconvention.md index 418f4eb20591006f43f05c847f037e5942db423f..980696fb78dceb20e3baa33df438ef66f775cc47 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