├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ ├── build-ubuntu.yml │ ├── clang-format-lint.yml │ └── pycodestyle.yml ├── .gitignore ├── .gitmodules ├── CCSDS_README.md ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.md ├── README.md ├── apps ├── CMakeLists.txt ├── gr_satellites ├── gr_satellites_ssdv └── smog_p_spectrum ├── cmake ├── Modules │ ├── CMakeParseArgumentsCopy.cmake │ ├── satellitesConfig.cmake │ └── targetConfig.cmake.in └── cmake_uninstall.cmake.in ├── commercial_satellites.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules ├── source │ └── format └── triggers ├── docs ├── CMakeLists.txt ├── build │ └── .keep ├── doxygen │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── doxyxml │ │ ├── __init__.py │ │ ├── base.py │ │ ├── doxyindex.py │ │ ├── generated │ │ │ ├── __init__.py │ │ │ ├── compound.py │ │ │ ├── compoundsuper.py │ │ │ ├── index.py │ │ │ └── indexsuper.py │ │ └── text.py │ ├── other │ │ ├── doxypy.py │ │ ├── group_defs.dox │ │ └── main_page.dox │ ├── pydoc_macros.h │ └── update_pydoc.py ├── generate_supported_satellites.py ├── gr_satellites.1 ├── gr_satellites_ssdv.1 ├── other │ ├── Dombrovski, Simple Downlink Share Convention.pdf │ └── README.satellites ├── requirements.in ├── requirements.txt ├── smog_p_spectrum.1 └── source │ ├── _static │ └── .keep │ ├── _templates │ └── .keep │ ├── command_line.rst │ ├── components.rst │ ├── conf.py │ ├── images │ ├── afsk_demodulator_flowgraph.png │ ├── afsk_demodulator_options.png │ ├── afsk_demodulator_output.png │ ├── ao40_fec_deframer_flowgraph.png │ ├── au02_default.png │ ├── au02_nondefault.png │ ├── ax100_deframer_flowgraph.png │ ├── ax25_deframer_flowgraph.png │ ├── bpsk_demodulator_flowgraph.png │ ├── bpsk_demodulator_options.png │ ├── bpsk_demodulator_output.png │ ├── ccsds_deframer_flowgraph.png │ ├── ccsds_deframer_options.png │ ├── fsk_demodulator_flowgraph.png │ ├── fsk_demodulator_options.png │ ├── fsk_demodulator_output.png │ ├── image_receiver_flowgraph.png │ ├── image_receiver_options.png │ ├── kiss_transport_flowgraph.png │ ├── satellite_decoder.png │ ├── satellite_decoder_flowgraph.png │ ├── satellite_decoder_options.png │ ├── telemetry_parser_flowgraph.png │ └── u482c_deframer_flowgraph.png │ ├── index.rst │ ├── installation.rst │ ├── installation_conda.rst │ ├── installation_intro.rst │ ├── installation_ppa.rst │ ├── introduction.rst │ ├── low_level.rst │ ├── overview.rst │ ├── satellite_decoder.rst │ ├── satyaml.rst │ ├── supported_satellites.rst │ └── utilities.rst ├── examples ├── README.md ├── ax25 │ ├── .gitignore │ ├── README.md │ ├── afsk.grc │ ├── bpsk.grc │ ├── bpsk9k6.grc │ └── fsk.grc ├── ber │ ├── lilacsat1.png │ ├── lilacsat1.py │ ├── lilacsat1_ber_bpsk.py │ ├── lilacsat1_ber_viterbi.py │ ├── lilacsat1_bpsk.grc │ └── lilacsat1_viterbi.grc ├── ccsds │ ├── Space_Packet_with_PathID_Demux.grc │ ├── Space_Packet_with_TimeStamp.grc │ ├── Space_Packet_without_TimeStamp.grc │ ├── TC_Packet.grc │ ├── TM_Packet.grc │ ├── TM_Packet_with_OCF.grc │ ├── TM_Packet_with_Space_Packet.grc │ └── TM_Packet_with_VC_demux.grc ├── components │ ├── afsk_demodulator.grc │ ├── ao40_fec_deframer.grc │ ├── ax100_deframer.grc │ ├── ax25_deframer.grc │ ├── bpsk_demodulator.grc │ ├── ccsds_deframer.grc │ ├── fsk_demodulator.grc │ ├── image_receiver.grc │ ├── kiss_transport.grc │ ├── telemetry_parser.grc │ └── u482c_deframer.grc ├── csp_rx_asmgolay_vector.grc ├── doppler_correction │ ├── doppler_correction_example.grc │ ├── doppler_file.txt │ └── tle_to_doppler_file.py ├── kiss_submitter.grc ├── qo100-multimedia-beacon │ ├── README.md │ ├── qo100_multimedia_beacon.grc │ ├── qo100_multimedia_beacon_df2et.grc │ ├── qo100_multimedia_beacon_ea4gpz.grc │ └── qo100_websocket_server.py ├── satellite_decoder │ └── satellite_decoder.grc ├── satellites │ ├── ccsds_1_2_1024.alist │ ├── equisat.grc │ ├── hades_d.grc │ ├── k2sat_image.grc │ ├── move2.grc │ ├── nexus.grc │ ├── nx_decoder │ │ ├── amgu_1.grc │ │ ├── beesat.grc │ │ ├── dstar_one.grc │ │ └── sokrat.grc │ └── tanusha3_pm.grc └── time_dependent_delay │ ├── delay_file.txt │ ├── time_dependent_delay_example.grc │ └── tle_to_delay_file.py ├── grc ├── CMakeLists.txt ├── ccsds │ ├── CMakeLists.txt │ ├── satellites_ccsds_telemetry_parser.block.yml │ ├── satellites_pathID_demultiplexer.block.yml │ ├── satellites_space_packet_parser.block.yml │ ├── satellites_space_packet_primaryheader_adder.block.yml │ ├── satellites_space_packet_time_stamp_adder.block.yml │ ├── satellites_telecommand_parser.block.yml │ ├── satellites_telecommand_primaryheader_adder.block.yml │ ├── satellites_telemetry_ocf_adder.block.yml │ ├── satellites_telemetry_packet_reconstruction.block.yml │ ├── satellites_telemetry_primaryheader_adder.block.yml │ ├── satellites_virtual_channel_demultiplexer.block.yml │ └── variable_time_format_parameters.block.yml ├── components │ ├── CMakeLists.txt │ ├── datasinks │ │ ├── CMakeLists.txt │ │ ├── satellites_codec2_udp_sink.block.yml │ │ ├── satellites_file_receiver.block.yml │ │ ├── satellites_hexdump_sink.block.yml │ │ ├── satellites_image_receiver.block.yml │ │ ├── satellites_kiss_file_sink.block.yml │ │ ├── satellites_kiss_server_sink.block.yml │ │ ├── satellites_telemetry_parser.block.yml │ │ └── satellites_telemetry_submit.block.yml │ ├── datasources │ │ ├── CMakeLists.txt │ │ └── satellites_kiss_file_source.block.yml │ ├── deframers │ │ ├── CMakeLists.txt │ │ ├── satellites_aalto1_deframer.block.yml │ │ ├── satellites_aausat4_deframer.block.yml │ │ ├── satellites_aistechsat_2_deframer.block.yml │ │ ├── satellites_ao40_fec_deframer.block.yml │ │ ├── satellites_ao40_uncoded_deframer.block.yml │ │ ├── satellites_astrocast_fx25_deframer.block.yml │ │ ├── satellites_ax100_deframer.block.yml │ │ ├── satellites_ax25_deframer.block.yml │ │ ├── satellites_ax5043_deframer.block.yml │ │ ├── satellites_binar1_deframer.block.yml │ │ ├── satellites_binar2_deframer.block.yml │ │ ├── satellites_ccsds_concatenated_deframer.block.yml │ │ ├── satellites_ccsds_rs_deframer.block.yml │ │ ├── satellites_ccsds_uncoded_deframer.block.yml │ │ ├── satellites_diy1_deframer.block.yml │ │ ├── satellites_endurosat_deframer.block.yml │ │ ├── satellites_eseo_deframer.block.yml │ │ ├── satellites_fossasat_deframer.block.yml │ │ ├── satellites_geoscan_deframer.block.yml │ │ ├── satellites_grizu263a_deframer.block.yml │ │ ├── satellites_hades_deframer.block.yml │ │ ├── satellites_hsu_sat1_deframer.block.yml │ │ ├── satellites_ideassat_deframer.block.yml │ │ ├── satellites_k2sat_deframer_component.block.yml │ │ ├── satellites_light1_deframer.block.yml │ │ ├── satellites_lilacsat_1_deframer.block.yml │ │ ├── satellites_lucky7_deframer.block.yml │ │ ├── satellites_mobitex_deframer.block.yml │ │ ├── satellites_ngham_deframer.block.yml │ │ ├── satellites_nusat_deframer.block.yml │ │ ├── satellites_openlst_deframer.block.yml │ │ ├── satellites_ops_sat_deframer.block.yml │ │ ├── satellites_qubik_deframer.block.yml │ │ ├── satellites_reaktor_hello_world_deframer.block.yml │ │ ├── satellites_sanosat_deframer.block.yml │ │ ├── satellites_sat_3cat_1_deframer.block.yml │ │ ├── satellites_smogp_ra_deframer.block.yml │ │ ├── satellites_smogp_signalling_deframer.block.yml │ │ ├── satellites_snet_deframer_component.block.yml │ │ ├── satellites_spino_deframer.block.yml │ │ ├── satellites_swiatowid_deframer.block.yml │ │ ├── satellites_tt64_deframer.block.yml │ │ ├── satellites_u482c_deframer.block.yml │ │ ├── satellites_ua01_deframer.block.yml │ │ ├── satellites_usp_deframer.block.yml │ │ └── satellites_yusat_deframer.block.yml │ ├── demodulators │ │ ├── CMakeLists.txt │ │ ├── satellites_afsk_demodulator.block.yml │ │ ├── satellites_bpsk_demodulator.block.yml │ │ └── satellites_fsk_demodulator.block.yml │ └── transports │ │ ├── CMakeLists.txt │ │ ├── satellites_kiss_transport.block.yml │ │ ├── satellites_nanolink_transport.block.yml │ │ └── satellites_tm_kiss_transport.block.yml ├── core │ ├── CMakeLists.txt │ └── satellites_satellite_decoder.block.yml ├── hier │ ├── CMakeLists.txt │ ├── satellites_ccsds_descrambler.py.block.yml │ ├── satellites_ccsds_viterbi.py.block.yml │ ├── satellites_pn9_scrambler.py.block.yml │ ├── satellites_rms_agc.py.block.yml │ ├── satellites_si4463_scrambler.py.block.yml │ ├── satellites_sync_to_pdu.py.block.yml │ ├── satellites_sync_to_pdu_packed.py.block.yml │ └── satellites_sync_to_pdu_soft.py.block.yml ├── satellites_aausat4_remove_fsm.block.yml ├── satellites_adsb_kml.block.yml ├── satellites_ao40_deinterleaver.block.yml ├── satellites_ao40_syncframe.block.yml ├── satellites_append_crc32c.block.yml ├── satellites_autopolarization.block.yml ├── satellites_ax100_decode.block.yml ├── satellites_beesat_classifier.block.yml ├── satellites_bme_submitter.block.yml ├── satellites_bme_ws_submitter.block.yml ├── satellites_cc11xx_packet_crop.block.yml ├── satellites_check_address.block.yml ├── satellites_check_ao40_uncoded_crc.block.yml ├── satellites_check_astrocast_crc.block.yml ├── satellites_check_cc11xx_crc.block.yml ├── satellites_check_crc.block.yml ├── satellites_check_crc16_ccitt.block.yml ├── satellites_check_crc16_ccitt_false.block.yml ├── satellites_check_eseo_crc.block.yml ├── satellites_check_hex_string.block.yml ├── satellites_check_swiatowid_crc.block.yml ├── satellites_check_tt64_crc.block.yml ├── satellites_convolutional_encoder.block.yml ├── satellites_costas_loop_8apsk_cc.block.yml ├── satellites_crc_append.block.yml ├── satellites_crc_check.block.yml ├── satellites_csp_address_filter.block.yml ├── satellites_csp_zmq_pub.block.yml ├── satellites_csp_zmq_sub.block.yml ├── satellites_decode_ra_code.block.yml ├── satellites_decode_rs.block.yml ├── satellites_decode_rs_ccsds.block.yml ├── satellites_descrambler308.block.yml ├── satellites_distributed_syncframe_soft.block.yml ├── satellites_doppler_correction.block.yml ├── satellites_encode_rs.block.yml ├── satellites_encode_rs_ccsds.block.yml ├── satellites_encode_rs_ccsds_vector.block.yml ├── satellites_encode_rs_vector.block.yml ├── satellites_eseo_line_decoder.block.yml ├── satellites_eseo_packet_crop.block.yml ├── satellites_fixedlen_to_pdu.block.yml ├── satellites_frame_counter.block.yml ├── satellites_funcube_submit.block.yml ├── satellites_hdlc_deframer.block.yml ├── satellites_hdlc_framer.block.yml ├── satellites_k2sat_deframer.block.yml ├── satellites_kiss_to_pdu.block.yml ├── satellites_ks1q_header_remover.block.yml ├── satellites_kurtosis.block.yml ├── satellites_level_to_message.block.yml ├── satellites_lilacsat1_demux.block.yml ├── satellites_lilacsat1_gps_kml.block.yml ├── satellites_manchester_sync.block.yml ├── satellites_matrix_deinterleaver_soft.block.yml ├── satellites_message_counter.block.yml ├── satellites_nanocom_golay_decode_length.block.yml ├── satellites_ngham_check_crc.block.yml ├── satellites_ngham_packet_crop.block.yml ├── satellites_ngham_remove_padding.block.yml ├── satellites_nrzi_decode.block.yml ├── satellites_nrzi_encode.block.yml ├── satellites_nusat_decoder.block.yml ├── satellites_packet_csma.block.yml ├── satellites_pdu_add_meta.block.yml ├── satellites_pdu_head_tail.block.yml ├── satellites_pdu_length_filter.block.yml ├── satellites_pdu_scrambler.block.yml ├── satellites_pdu_to_kiss.block.yml ├── satellites_phase_unwrap.block.yml ├── satellites_print_header.block.yml ├── satellites_print_timestamp.block.yml ├── satellites_pwsat2_submitter.block.yml ├── satellites_pwsat2_telemetry_parser.block.yml ├── satellites_reflect_bytes.block.yml ├── satellites_selector.block.yml ├── satellites_snet_classifier.block.yml ├── satellites_snet_deframer.block.yml ├── satellites_submit.block.yml ├── satellites_swap_crc.block.yml ├── satellites_swap_header.block.yml ├── satellites_swiatowid_packet_crop.block.yml ├── satellites_swiatowid_packet_split.block.yml ├── satellites_sx12xx_check_crc.block.yml ├── satellites_sx12xx_packet_crop.block.yml ├── satellites_time_dependent_delay.block.yml ├── satellites_u482c_decode.block.yml ├── satellites_u482c_encode.block.yml ├── satellites_varlen_packet_framer.block.yml ├── satellites_varlen_packet_tagger.block.yml ├── satellites_viterbi_decoder.block.yml └── usp │ ├── CMakeLists.txt │ ├── satellites_usp_ax25_crop.block.yml │ └── satellites_usp_pls_crop.block.yml ├── include └── satellites │ ├── CMakeLists.txt │ ├── api.h │ ├── ax100_decode.h │ ├── convolutional_encoder.h │ ├── costas_loop_8apsk_cc.h │ ├── crc.h │ ├── crc_append.h │ ├── crc_check.h │ ├── decode_ra_code.h │ ├── decode_rs.h │ ├── descrambler308.h │ ├── distributed_syncframe_soft.h │ ├── doppler_correction.h │ ├── encode_rs.h │ ├── fixedlen_to_pdu.h │ ├── frame_counter.h │ ├── kurtosis.h │ ├── level_to_message.h │ ├── lilacsat1_demux.h │ ├── manchester_sync.h │ ├── matrix_deinterleaver_soft.h │ ├── message_counter.h │ ├── nanocom_golay_decode_length.h │ ├── nrzi_decode.h │ ├── nrzi_encode.h │ ├── nusat_decoder.h │ ├── packet_csma.h │ ├── pdu_add_meta.h │ ├── pdu_head_tail.h │ ├── pdu_length_filter.h │ ├── pdu_scrambler.h │ ├── phase_unwrap.h │ ├── selector.h │ ├── time_dependent_delay.h │ ├── u482c_decode.h │ ├── u482c_encode.h │ ├── varlen_packet_framer.h │ ├── varlen_packet_tagger.h │ └── viterbi_decoder.h ├── lib ├── CMakeLists.txt ├── ax100_decode_impl.cc ├── ax100_decode_impl.h ├── convolutional_encoder_impl.cc ├── convolutional_encoder_impl.h ├── costas_loop_8apsk_cc_impl.cc ├── costas_loop_8apsk_cc_impl.h ├── crc.cc ├── crc_append_impl.cc ├── crc_append_impl.h ├── crc_check_impl.cc ├── crc_check_impl.h ├── decode_ra_code_impl.cc ├── decode_ra_code_impl.h ├── decode_rs_impl.cc ├── decode_rs_impl.h ├── descrambler308_impl.cc ├── descrambler308_impl.h ├── distributed_syncframe_soft_impl.cc ├── distributed_syncframe_soft_impl.h ├── doppler_correction_impl.cc ├── doppler_correction_impl.h ├── encode_rs_impl.cc ├── encode_rs_impl.h ├── fixedlen_to_pdu_impl.cc ├── fixedlen_to_pdu_impl.h ├── frame_counter_impl.cc ├── frame_counter_impl.h ├── golay24.c ├── golay24.h ├── kurtosis_impl.cc ├── kurtosis_impl.h ├── level_to_message_impl.cc ├── level_to_message_impl.h ├── libfec │ ├── README │ ├── ccsds.c │ ├── ccsds.h │ ├── char.h │ ├── decode_rs.h │ ├── decode_rs_8.c │ ├── decode_rs_ccsds.c │ ├── decode_rs_char.c │ ├── encode_rs.h │ ├── encode_rs_8.c │ ├── encode_rs_ccsds.c │ ├── encode_rs_char.c │ ├── fec.h │ ├── fixed.h │ ├── init_rs.h │ ├── init_rs_char.c │ ├── lesser.txt │ ├── rs-common.h │ └── taltab.c ├── lilacsat1_demux_impl.cc ├── lilacsat1_demux_impl.h ├── manchester_sync_impl.cc ├── manchester_sync_impl.h ├── matrix_deinterleaver_soft_impl.cc ├── matrix_deinterleaver_soft_impl.h ├── message_counter_impl.cc ├── message_counter_impl.h ├── nanocom_golay_decode_length_impl.cc ├── nanocom_golay_decode_length_impl.h ├── nrzi_decode_impl.cc ├── nrzi_decode_impl.h ├── nrzi_encode_impl.cc ├── nrzi_encode_impl.h ├── nusat_decoder_impl.cc ├── nusat_decoder_impl.h ├── packet_csma_impl.cc ├── packet_csma_impl.h ├── pdu_add_meta_impl.cc ├── pdu_add_meta_impl.h ├── pdu_head_tail_impl.cc ├── pdu_head_tail_impl.h ├── pdu_length_filter_impl.cc ├── pdu_length_filter_impl.h ├── pdu_scrambler_impl.cc ├── pdu_scrambler_impl.h ├── phase_unwrap_impl.cc ├── phase_unwrap_impl.h ├── qa_satellites.cc ├── qa_satellites.h ├── radecoder │ ├── README │ ├── ra_config.c │ ├── ra_config.h │ ├── ra_decoder_gen.c │ ├── ra_decoder_gen.h │ ├── ra_encoder.c │ ├── ra_encoder.h │ ├── ra_lfsr.c │ └── ra_lfsr.h ├── randomizer.c ├── randomizer.h ├── rs.h ├── selector_impl.cc ├── selector_impl.h ├── time_dependent_delay_impl.cc ├── time_dependent_delay_impl.h ├── u482c_decode_impl.cc ├── u482c_decode_impl.h ├── u482c_encode_impl.cc ├── u482c_encode_impl.h ├── varlen_packet_framer_impl.cc ├── varlen_packet_framer_impl.h ├── varlen_packet_tagger_impl.cc ├── varlen_packet_tagger_impl.h ├── viterbi.c ├── viterbi.h ├── viterbi │ ├── LICENSE.md │ ├── README.md │ ├── viterbi.cc │ └── viterbi.h ├── viterbi_decoder_impl.cc └── viterbi_decoder_impl.h ├── python ├── CMakeLists.txt ├── __init__.py ├── aausat4_remove_fsm.py ├── adapters.py ├── adsb_kml.py ├── ao40_uncoded_crc.py ├── append_crc32c.py ├── autopolarization.py ├── bch15.py ├── beesat_classifier.py ├── bindings │ ├── CMakeLists.txt │ ├── README.md │ ├── ax100_decode_python.cc │ ├── bind_oot_file.py │ ├── convolutional_encoder_python.cc │ ├── costas_loop_8apsk_cc_python.cc │ ├── crc_append_python.cc │ ├── crc_check_python.cc │ ├── crc_python.cc │ ├── decode_ra_code_python.cc │ ├── decode_rs_python.cc │ ├── descrambler308_python.cc │ ├── distributed_syncframe_soft_python.cc │ ├── docstrings │ │ ├── README.md │ │ ├── ax100_decode_pydoc_template.h │ │ ├── convolutional_encoder_pydoc_template.h │ │ ├── costas_loop_8apsk_cc_pydoc_template.h │ │ ├── crc_append_pydoc_template.h │ │ ├── crc_check_pydoc_template.h │ │ ├── crc_pydoc_template.h │ │ ├── decode_ra_code_pydoc_template.h │ │ ├── decode_rs_pydoc_template.h │ │ ├── descrambler308_pydoc_template.h │ │ ├── distributed_syncframe_soft_pydoc_template.h │ │ ├── doppler_correction_pydoc_template.h │ │ ├── encode_rs_pydoc_template.h │ │ ├── fixedlen_to_pdu_pydoc_template.h │ │ ├── frame_counter_pydoc_template.h │ │ ├── kurtosis_pydoc_template.h │ │ ├── level_to_message_pydoc_template.h │ │ ├── lilacsat1_demux_pydoc_template.h │ │ ├── manchester_sync_pydoc_template.h │ │ ├── matrix_deinterleaver_soft_pydoc_template.h │ │ ├── message_counter_pydoc_template.h │ │ ├── nanocom_golay_decode_length_pydoc_template.h │ │ ├── nrzi_decode_pydoc_template.h │ │ ├── nrzi_encode_pydoc_template.h │ │ ├── nusat_decoder_pydoc_template.h │ │ ├── packet_csma_pydoc_template.h │ │ ├── pdu_add_meta_pydoc_template.h │ │ ├── pdu_head_tail_pydoc_template.h │ │ ├── pdu_length_filter_pydoc_template.h │ │ ├── pdu_scrambler_pydoc_template.h │ │ ├── phase_unwrap_pydoc_template.h │ │ ├── selector_pydoc_template.h │ │ ├── time_dependent_delay_pydoc_template.h │ │ ├── u482c_decode_pydoc_template.h │ │ ├── u482c_encode_pydoc_template.h │ │ ├── varlen_packet_framer_pydoc_template.h │ │ ├── varlen_packet_tagger_pydoc_template.h │ │ └── viterbi_decoder_pydoc_template.h │ ├── doppler_correction_python.cc │ ├── encode_rs_python.cc │ ├── fixedlen_to_pdu_python.cc │ ├── frame_counter_python.cc │ ├── header_utils.py │ ├── kurtosis_python.cc │ ├── level_to_message_python.cc │ ├── lilacsat1_demux_python.cc │ ├── manchester_sync_python.cc │ ├── matrix_deinterleaver_soft_python.cc │ ├── message_counter_python.cc │ ├── nanocom_golay_decode_length_python.cc │ ├── nrzi_decode_python.cc │ ├── nrzi_encode_python.cc │ ├── nusat_decoder_python.cc │ ├── packet_csma_python.cc │ ├── pdu_add_meta_python.cc │ ├── pdu_head_tail_python.cc │ ├── pdu_length_filter_python.cc │ ├── pdu_scrambler_python.cc │ ├── phase_unwrap_python.cc │ ├── python_bindings.cc │ ├── selector_python.cc │ ├── time_dependent_delay_python.cc │ ├── u482c_decode_python.cc │ ├── u482c_encode_python.cc │ ├── varlen_packet_framer_python.cc │ ├── varlen_packet_tagger_python.cc │ └── viterbi_decoder_python.cc ├── bme_submitter.py ├── bme_ws_submitter.py ├── build_utils.py ├── build_utils_codes.py ├── cc11xx_packet_crop.py ├── ccsds │ ├── CMakeLists.txt │ ├── __init__.py │ ├── pathID_demultiplexer.py │ ├── space_packet.py │ ├── space_packet_parser.py │ ├── space_packet_primaryheader_adder.py │ ├── space_packet_time_stamp_adder.py │ ├── telecommand.py │ ├── telecommand_parser.py │ ├── telecommand_primaryheader_adder.py │ ├── telemetry.py │ ├── telemetry_ocf_adder.py │ ├── telemetry_packet_reconstruction.py │ ├── telemetry_parser.py │ ├── telemetry_primaryheader_adder.py │ └── virtual_channel_demultiplexer.py ├── check_address.py ├── check_ao40_uncoded_crc.py ├── check_astrocast_crc.py ├── check_cc11xx_crc.py ├── check_crc.py ├── check_crc16_ccitt.py ├── check_crc16_ccitt_false.py ├── check_eseo_crc.py ├── check_hex_string.py ├── check_swiatowid_crc.py ├── check_tt64_crc.py ├── components │ ├── CMakeLists.txt │ ├── __init__.py │ ├── datasinks │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── codec2_udp_sink.py │ │ ├── file_receiver.py │ │ ├── hexdump_sink.py │ │ ├── kiss_file_sink.py │ │ ├── kiss_server_sink.py │ │ ├── qa_kiss_server_sink.py │ │ ├── qa_telemetry_parser.py │ │ ├── telemetry_parser.py │ │ └── telemetry_submit.py │ ├── datasources │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ └── kiss_file_source.py │ ├── deframers │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── aalto1_deframer.py │ │ ├── aausat4_deframer.py │ │ ├── aistechsat_2_deframer.py │ │ ├── ao40_fec_deframer.py │ │ ├── ao40_uncoded_deframer.py │ │ ├── astrocast_fx25_deframer.py │ │ ├── ax100_deframer.py │ │ ├── ax25_deframer.py │ │ ├── ax5043_deframer.py │ │ ├── binar1_deframer.py │ │ ├── binar2_deframer.py │ │ ├── ccsds_concatenated_deframer.py │ │ ├── ccsds_rs_deframer.py │ │ ├── diy1_deframer.py │ │ ├── endurosat_deframer.py │ │ ├── eseo_deframer.py │ │ ├── fossasat_deframer.py │ │ ├── geoscan_deframer.py │ │ ├── grizu263a_deframer.py │ │ ├── hades_deframer.py │ │ ├── hsu_sat1_deframer.py │ │ ├── ideassat_deframer.py │ │ ├── k2sat_deframer.py │ │ ├── lilacsat_1_deframer.py │ │ ├── lucky7_deframer.py │ │ ├── mobitex_deframer.py │ │ ├── ngham_deframer.py │ │ ├── nusat_deframer.py │ │ ├── openlst_deframer.py │ │ ├── ops_sat_deframer.py │ │ ├── qa_ao40_fec_deframer.py │ │ ├── qa_ao40_fec_deframer_frame.f32 │ │ ├── qa_ao40_fec_deframer_symbols.f32 │ │ ├── qa_mobitex_deframer.py │ │ ├── qa_mobitex_deframer_frame.bin │ │ ├── qa_mobitex_deframer_symbols.f32 │ │ ├── qa_usp_deframer.py │ │ ├── qubik_deframer.py │ │ ├── reaktor_hello_world_deframer.py │ │ ├── sanosat_deframer.py │ │ ├── sat_3cat_1_deframer.py │ │ ├── smogp_ra_deframer.py │ │ ├── smogp_signalling_deframer.py │ │ ├── snet_deframer.py │ │ ├── spino_deframer.py │ │ ├── swiatowid_deframer.py │ │ ├── tt64_deframer.py │ │ ├── u482c_deframer.py │ │ ├── ua01_deframer.py │ │ ├── usp_deframer.py │ │ └── yusat_deframer.py │ ├── demodulators │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── afsk_demodulator.py │ │ ├── bpsk_demodulator.py │ │ └── fsk_demodulator.py │ └── transports │ │ ├── CMakeLists.txt │ │ ├── __init__.py │ │ ├── kiss_transport.py │ │ ├── nanolink_transport.py │ │ └── tm_kiss_transport.py ├── core │ ├── CMakeLists.txt │ ├── __init__.py │ └── gr_satellites_flowgraph.py ├── crc32c.py ├── crcs.py ├── csp_address_filter.py ├── csp_header.py ├── csp_zmq_pub.py ├── csp_zmq_sub.py ├── ecss_pus.py ├── eseo_line_decoder.py ├── eseo_packet_crop.py ├── feh.py ├── filereceiver │ ├── CMakeLists.txt │ ├── __init__.py │ ├── by70_1.py │ ├── cas5a.py │ ├── dsat.py │ ├── filereceiver.py │ ├── imagereceiver.py │ ├── k2sat.py │ ├── lucky7.py │ ├── mirsat1.py │ ├── qo100_multimedia.py │ ├── sat_1kuns_pf.py │ ├── smogp.py │ └── swiatowid.py ├── funcube_submit.py ├── grpdu.py ├── grtypes.py ├── hdlc.py ├── hdlc_deframer.py ├── hdlc_framer.py ├── hier │ ├── CMakeLists.txt │ ├── __init__.py │ ├── ccsds_descrambler.grc │ ├── ccsds_descrambler.py │ ├── ccsds_viterbi.grc │ ├── ccsds_viterbi.py │ ├── pn9_scrambler.grc │ ├── pn9_scrambler.py │ ├── qa_rms_agc.py │ ├── qa_rms_agc_f.py │ ├── rms_agc.grc │ ├── rms_agc.py │ ├── rms_agc_f.py │ ├── si4463_scrambler.grc │ ├── si4463_scrambler.py │ ├── sync_to_pdu.py │ ├── sync_to_pdu_packed.py │ └── sync_to_pdu_soft.py ├── k2sat_deframer.py ├── kiss.py ├── kiss_to_pdu.py ├── ks1q_header_remover.py ├── lilacsat1_gps_kml.py ├── mobitex_fec.py ├── mobitex_fec_block.py ├── mobitex_to_datablocks.py ├── ngham_check_crc.py ├── ngham_packet_crop.py ├── ngham_remove_padding.py ├── pdu_to_kiss.py ├── print_header.py ├── print_timestamp.py ├── pwsat2_submitter.py ├── pwsat2_telemetry_parser.py ├── qa_costas_loop_8apsk_cc.py ├── qa_crc.py ├── qa_fixedlen_to_pdu.py ├── qa_hdlc.py ├── qa_kiss.py ├── qa_manchester_sync.py ├── qa_message_counter.py ├── qa_mobitex_fec.py ├── qa_mobitex_fec_block.py ├── qa_mobitex_to_datablocks.py ├── qa_nrzi.py ├── qa_pdu_add_meta.py ├── qa_pdu_head_tail.py ├── qa_pdu_length_filter.py ├── qa_pdu_scrambler.py ├── qa_phase_unwrap.py ├── qa_rs.py ├── qa_selector.py ├── qa_submit.py ├── qa_viterbi.py ├── reflect_bytes.py ├── satyaml │ ├── 1KUNS-PF.yml │ ├── 239Alferov.yml │ ├── 3CAT-1.yml │ ├── 3CAT-2.yml │ ├── AALTO-1.yml │ ├── AAUSAT-4.yml │ ├── ACRUX-1.yml │ ├── AEPEX.yml │ ├── AHMAT-1.yml │ ├── AISAT.yml │ ├── AISTECHSAT-2.yml │ ├── AISTECHSAT-3.yml │ ├── ALFACRUX.yml │ ├── AMGU-1.yml │ ├── AO-27.yml │ ├── AO-40.yml │ ├── AO-73.yml │ ├── ARCCUBE-1.yml │ ├── ARCTICSAT-1.yml │ ├── ARMADILLO.yml │ ├── ASRTU-1.yml │ ├── ASTROBIO.yml │ ├── AT03.yml │ ├── ATHENOXAT-1.yml │ ├── ATL-1.yml │ ├── ATLANTIS.yml │ ├── AU02.yml │ ├── AU03.yml │ ├── AVION.yml │ ├── AZAADISAT-2.yml │ ├── AmicalSat.yml │ ├── Astrocast_0_1.yml │ ├── Astrocast_0_2.yml │ ├── AzaadiSAT.yml │ ├── AztechSat-1.yml │ ├── BCCSAT_1.yml │ ├── BDSat-2.yml │ ├── BDSat.yml │ ├── BEESAT-1.yml │ ├── BEESAT-2.yml │ ├── BEESAT-4.yml │ ├── BEESAT-9.yml │ ├── BELIEFSAT-0.yml │ ├── BINAR-1.yml │ ├── BINAR-2.yml │ ├── BINAR-3.yml │ ├── BINAR-4.yml │ ├── BISONSAT.yml │ ├── BOBCAT-1.yml │ ├── BOTAN.yml │ ├── BRICSat-2.yml │ ├── BUGSAT-1.yml │ ├── BY02.yml │ ├── BY03.yml │ ├── BY70-1.yml │ ├── BlueWalker_3.yml │ ├── Bluebird_01.yml │ ├── Bluebird_02.yml │ ├── Bluebird_03.yml │ ├── Bluebird_04.yml │ ├── Bluebird_05.yml │ ├── CA03.yml │ ├── CAPE-3.yml │ ├── CAS-4A.yml │ ├── CAS-4B.yml │ ├── CAS-5A.yml │ ├── CAS-6.yml │ ├── CATSAT.yml │ ├── CELESTA.yml │ ├── CHOMPTT.yml │ ├── CIRBE.yml │ ├── CLARKSAT-1.yml │ ├── CMakeLists.txt │ ├── COLIBRI-S.yml │ ├── COLUMBIA.yml │ ├── CSIM-FD.yml │ ├── CTIM.yml │ ├── CUAVA-1.yml │ ├── CUAVA-2.yml │ ├── CUBE-L.yml │ ├── CUBEBUG-2.yml │ ├── CUBESX-HSE-2.yml │ ├── CUBESX-HSE-3.yml │ ├── CUTE.yml │ ├── CYCLOPS.yml │ ├── CZ02.yml │ ├── CroCube.yml │ ├── CubeBel-1.yml │ ├── CubeBel-2.yml │ ├── CubeSX-HSE.yml │ ├── CubeSX-Sirius-HSE.yml │ ├── D-SAT.yml │ ├── D-STAR_ONE_LightSat.yml │ ├── D-STAR_ONE_Sparrow.yml │ ├── D-STAR_ONE_iSat.yml │ ├── DEKART.yml │ ├── DELFI-C3.yml │ ├── DELFI-PQ.yml │ ├── DELFI-n3xt.yml │ ├── DHABISAT.yml │ ├── DIY-1.yml │ ├── DORA.yml │ ├── DUCHIFAT-3.yml │ ├── Delphini-1.yml │ ├── E-ST@R-II.yml │ ├── ECAMSAT.yml │ ├── EIRSAT-1.yml │ ├── ELFIN-A.yml │ ├── ELFIN-B.yml │ ├── ENDUROSAT_ONE.yml │ ├── ENSO.yml │ ├── ERMINAZ-1U.yml │ ├── ESEO.yml │ ├── EXOCUBE-2.yml │ ├── EXP-1.yml │ ├── Eaglet-I.yml │ ├── EntrySat.yml │ ├── FACSAT-1.yml │ ├── FALCONSAT-3.yml │ ├── FIREBIRD_3.yml │ ├── FIREBIRD_4.yml │ ├── FMN-1.yml │ ├── FORESAIL-1.yml │ ├── FOSSASAT-1B.yml │ ├── FOSSASAT-2.yml │ ├── FloripaSat-1.yml │ ├── GALASSIA-2.yml │ ├── GALASSIA.yml │ ├── GASPACS.yml │ ├── GEOSCAN-EDELVEIS.yml │ ├── GO-32.yml │ ├── GOMX-1.yml │ ├── GOMX-3.yml │ ├── GR01.yml │ ├── GRBAlpha.yml │ ├── GRBBeta.yml │ ├── GREENCUBE.yml │ ├── GRIFEX.yml │ ├── GT-1.yml │ ├── Geoscan-1.yml │ ├── Geoscan-2.yml │ ├── Geoscan-3.yml │ ├── Geoscan-4.yml │ ├── Geoscan-5.yml │ ├── Geoscan-6.yml │ ├── Grizu-263A.yml │ ├── HADES-R.yml │ ├── HCT-SAT2.yml │ ├── HORIZON.yml │ ├── HSKSAT.yml │ ├── HSU-SAT1.yml │ ├── HUMSAT-D.yml │ ├── HYDRA-T.yml │ ├── HYDRA-W.yml │ ├── HYPERVIEW-1G.yml │ ├── Hayasat.yml │ ├── IDEASSat.yml │ ├── IL01.yml │ ├── INHA-RoSAT.yml │ ├── INNOCUBE.yml │ ├── INNOSAT-2.yml │ ├── INS-1C.yml │ ├── INS-2B.yml │ ├── INS-2TD.yml │ ├── INSPIRE-SAT_7.yml │ ├── INSPIRESat-1.yml │ ├── ION-MK01.yml │ ├── ION_SCV-003.yml │ ├── IRAZU.yml │ ├── IRIS-A.yml │ ├── IRIS-C.yml │ ├── IRIS.yml │ ├── IRVINE-01.yml │ ├── ISOI.yml │ ├── IT-SPINS.yml │ ├── ITASAT_1.yml │ ├── InnoSat16.yml │ ├── InnoSat3.yml │ ├── JACK-001.yml │ ├── JACK-003.yml │ ├── JAGSAT-1.yml │ ├── JAISAT-1.yml │ ├── JINJUSAT-1B.yml │ ├── JY1-Sat.yml │ ├── K-HERO.yml │ ├── KAFASAT.yml │ ├── KAI-1.yml │ ├── KAIDUN-1.yml │ ├── KAITUO-1B.yml │ ├── KILICSAT.yml │ ├── KR01.yml │ ├── KS-1Q.yml │ ├── KSU_CubeSat.yml │ ├── KUZBASS-300.yml │ ├── KUZGTU-1.yml │ ├── Kashiwa.yml │ ├── KrakSat.yml │ ├── LEDSAT.yml │ ├── LITUANICASAT-2.yml │ ├── LUME-1.yml │ ├── Light-1.yml │ ├── LightSail-2.yml │ ├── LilacSat-1.yml │ ├── LilacSat-2.yml │ ├── Lucky-7.yml │ ├── Luojia-1.yml │ ├── M6P.yml │ ├── MARIO.yml │ ├── MCUBED-2.yml │ ├── MEZNSAT.yml │ ├── MIET-AIS.yml │ ├── MIMAN.yml │ ├── MINXSS.yml │ ├── MIR-SAT1.yml │ ├── MONITOR-1.yml │ ├── MONITOR-2.yml │ ├── MONITOR-3.yml │ ├── MONITOR-4.yml │ ├── MORDOVIA-IOT.yml │ ├── MRC-100.yml │ ├── MTCUBE-2.yml │ ├── MYSAT_1.yml │ ├── MiTEE-1.yml │ ├── MinXSS_2.yml │ ├── NANOFF-A.yml │ ├── NANOFF-B.yml │ ├── NANOZOND-1.yml │ ├── NETSAT_1.yml │ ├── NETSAT_2.yml │ ├── NETSAT_3.yml │ ├── NETSAT_4.yml │ ├── NEUDOSE.yml │ ├── NEUTRON-1.yml │ ├── NEXUS.yml │ ├── NILA.yml │ ├── NO-84.yml │ ├── NODES_1.yml │ ├── NODES_2.yml │ ├── NORBI.yml │ ├── NSIGHT-1.yml │ ├── NUSHSAT-1.yml │ ├── NUTSat.yml │ ├── NanosatC-BR1.yml │ ├── NanosatC-BR2.yml │ ├── Nayif-1.yml │ ├── NuSat_1.yml │ ├── OOV-Cube.yml │ ├── OPS-SAT.yml │ ├── O_OREOS.yml │ ├── OrbiCraft-Zorkiy.yml │ ├── OreSat0.yml │ ├── PAINANI-1.yml │ ├── PEARL-1C.yml │ ├── PEARL-1H.yml │ ├── PHI-1.yml │ ├── PHOENIX.yml │ ├── PHONESAT_2_4.yml │ ├── PLANETUM-1.yml │ ├── POLYITAN-1.yml │ ├── PW-Sat2.yml │ ├── PicSat.yml │ ├── PlantSat.yml │ ├── QARMAN.yml │ ├── QBEE.yml │ ├── QMR-KWT.yml │ ├── QO-100.yml │ ├── Quetzal-1.yml │ ├── RAMSAT.yml │ ├── RANDEV.yml │ ├── RESHUCUBE.yml │ ├── ROBUSTA-1B.yml │ ├── ROBUSTA-3A.yml │ ├── ROSEYCUBESAT-1.yml │ ├── RSP-03.yml │ ├── RTU-MIREA1.yml │ ├── RUZAEVKA-390.yml │ ├── Reaktor_Hello_World.yml │ ├── S-NET_A.yml │ ├── S-NET_B.yml │ ├── S-NET_C.yml │ ├── S-NET_D.yml │ ├── SALSAT.yml │ ├── SATURN.yml │ ├── SCOOB-II.yml │ ├── SIMBA.yml │ ├── SIREN.yml │ ├── SKCUBE.yml │ ├── SKOLTECH-B1.yml │ ├── SKOLTECH-B2.yml │ ├── SMOG-1.yml │ ├── SMOG-P.yml │ ├── SNIPE-1.yml │ ├── SNIPE-2.yml │ ├── SNIPE-3.yml │ ├── SNIPE-4.yml │ ├── SNUGLITE-II.yml │ ├── SNUGLITE-III_DURI.yml │ ├── SNUGLITE-III_HANA.yml │ ├── SNUGLITE.yml │ ├── SOAR.yml │ ├── SOKRAT.yml │ ├── SOMP_2b.yml │ ├── SONATE-2.yml │ ├── SPIRONE.yml │ ├── SPOC.yml │ ├── SS-1.yml │ ├── SSS-2B.yml │ ├── STECCO.yml │ ├── STEP-CUBELAB-II.yml │ ├── STRAND-1.yml │ ├── STRATOSAT-TK1.yml │ ├── SUCHAI-2.yml │ ├── SUCHAI-3.yml │ ├── SVYATOBOR-1.yml │ ├── SWSU-55-5.yml │ ├── SWSU-55-6.yml │ ├── SWSU-55-7.yml │ ├── SWSU-55-8.yml │ ├── SanoSat-1.yml │ ├── SelfieSat.yml │ ├── Shaonian_Xing.yml │ ├── Sharjahsat-1.yml │ ├── SiriusSat-1.yml │ ├── SiriusSat-2.yml │ ├── SpeiSat.yml │ ├── SpooQy-1.yml │ ├── Suomi_100.yml │ ├── SwampSat-2.yml │ ├── Swiatowid.yml │ ├── TARGIT.yml │ ├── TAUSAT-1.yml │ ├── TBEX-A.yml │ ├── TBEX-B.yml │ ├── TECHNOSAT.yml │ ├── TEVEL-1.yml │ ├── TEVEL-2.yml │ ├── TEVEL-3.yml │ ├── TEVEL-4.yml │ ├── TEVEL-5.yml │ ├── TEVEL-6.yml │ ├── TEVEL-7.yml │ ├── TEVEL-8.yml │ ├── TEVEL2-1.yml │ ├── TEVEL2-2.yml │ ├── TEVEL2-3.yml │ ├── TEVEL2-4.yml │ ├── TEVEL2-5.yml │ ├── TEVEL2-6.yml │ ├── TEVEL2-7.yml │ ├── TEVEL2-8.yml │ ├── TEVEL2-9.yml │ ├── TIGRISAT.yml │ ├── TRISAT-R.yml │ ├── TRISAT.yml │ ├── TSIOLKOVSKY-RYAZAN-1.yml │ ├── TSIOLKOVSKY-RYAZAN-2.yml │ ├── TSURU.yml │ ├── TTU-100.yml │ ├── TUBIN.yml │ ├── TUMnanoSAT.yml │ ├── TUSUR-GO.yml │ ├── TW-1A.yml │ ├── TW-1B.yml │ ├── TW-1C.yml │ ├── TY-2.yml │ ├── TY-6.yml │ ├── TY_4-01.yml │ ├── Tanusha-3.yml │ ├── Taurus-1.yml │ ├── UA01.yml │ ├── UBAKUSAT.yml │ ├── UCLSAT.yml │ ├── UKube-1.yml │ ├── UND_ROADS_1.yml │ ├── UND_ROADS_2.yml │ ├── UNISAT-6.yml │ ├── UNISAT-7.yml │ ├── UPMSat_2.yml │ ├── URSA_MAIOR.yml │ ├── US01.yml │ ├── UTMN-2.yml │ ├── UTMN.yml │ ├── UVSQ-SAT.yml │ ├── UWE-3.yml │ ├── UWE-4.yml │ ├── UmKA-1.yml │ ├── VDNH-80.yml │ ├── VELOX-AM.yml │ ├── VERONIKA.yml │ ├── VIZARD-ION.yml │ ├── VIZARD-METEO.yml │ ├── VIZARD.yml │ ├── VZLUSAT-2.yml │ ├── WS-1.yml │ ├── X-CUBESAT.yml │ ├── XW-2A.yml │ ├── XW-2B.yml │ ├── XW-2C.yml │ ├── XW-2D.yml │ ├── XW-2E.yml │ ├── XW-2F.yml │ ├── XW-3.yml │ ├── YUSAT-1.yml │ ├── ZACUBE-1.yml │ ├── ZIMSAT-2.yml │ ├── Zhou_Enlai.yml │ ├── __init__.py │ ├── al-Farabi-2.yml │ ├── qa_satyaml.py │ └── satyaml.py ├── snet_classifier.py ├── snet_deframer.py ├── submit.py ├── swap_crc.py ├── swap_header.py ├── swiatowid_packet_crop.py ├── swiatowid_packet_split.py ├── sx12xx_check_crc.py ├── sx12xx_packet_crop.py ├── telemetry │ ├── CMakeLists.txt │ ├── __init__.py │ ├── aausat4.py │ ├── aepex_70cm.py │ ├── aepex_sw_stat.py │ ├── amicalsat.py │ ├── asrtu.py │ ├── au03.py │ ├── ax25.py │ ├── binar1.py │ ├── by02.py │ ├── by70_1.py │ ├── ccsds.py │ ├── cirbe_70cm.py │ ├── cirbe_bct_soh.py │ ├── csp.py │ ├── ctim_70cm.py │ ├── cute_70cm.py │ ├── cute_bct_fsw.py │ ├── cute_bct_soh.py │ ├── cute_pld.py │ ├── delfic3.py │ ├── delfipq.py │ ├── dstar_one.py │ ├── erminaz.py │ ├── eseo.py │ ├── floripasat.py │ ├── fossasat.py │ ├── fossasat_1b.py │ ├── fossasat_2.py │ ├── funcube.py │ ├── gomx_1.py │ ├── gomx_3.py │ ├── inspiresat_1.py │ ├── kr01.py │ ├── lume.py │ ├── mirsat1.py │ ├── mysat1.py │ ├── nila.py │ ├── picsat.py │ ├── qa_by02.py │ ├── qo100.py │ ├── quetzal1.py │ ├── sat_1kuns_pf.py │ ├── sat_3cat_1.py │ ├── sat_3cat_2.py │ ├── smogp.py │ ├── snet.py │ ├── suomi100.py │ ├── trisat.py │ ├── tubix20.py │ ├── upmsat_2.py │ └── vzlusat_2.py ├── tubix20_reframer.py ├── usp │ ├── CMakeLists.txt │ ├── __init__.py │ ├── usp_ax25_crop.py │ └── usp_pls_crop.py └── utils │ ├── CMakeLists.txt │ ├── __init__.py │ ├── config.py │ ├── options_block.py │ └── satcfg.py ├── readthedocs.yml ├── satellite_teams.md ├── test.sh ├── tests ├── Lock in BPSK.ipynb ├── Lock in FSK.ipynb ├── TED gain.ipynb ├── ber.py ├── ber_bpsk.png ├── ber_fsk.png ├── lockin.py ├── reed_solomon.grc ├── ted-gain │ ├── Makefile │ ├── TED gain analysis.ipynb │ └── test.cc └── varlen_packet_block_qa.grc └── tools └── waveform_plot.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/.github/workflows/build-ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/pycodestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/.github/workflows/pycodestyle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | apps/*.py 3 | __pycache__ 4 | build 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/.gitmodules -------------------------------------------------------------------------------- /CCSDS_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/CCSDS_README.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/MANIFEST.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/README.md -------------------------------------------------------------------------------- /apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/apps/CMakeLists.txt -------------------------------------------------------------------------------- /apps/gr_satellites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/apps/gr_satellites -------------------------------------------------------------------------------- /apps/gr_satellites_ssdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/apps/gr_satellites_ssdv -------------------------------------------------------------------------------- /apps/smog_p_spectrum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/apps/smog_p_spectrum -------------------------------------------------------------------------------- /cmake/Modules/satellitesConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/cmake/Modules/satellitesConfig.cmake -------------------------------------------------------------------------------- /cmake/Modules/targetConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/cmake/Modules/targetConfig.cmake.in -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /commercial_satellites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/commercial_satellites.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/triggers: -------------------------------------------------------------------------------- 1 | activate-noawait ldconfig 2 | -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/build/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doxygen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/CMakeLists.txt -------------------------------------------------------------------------------- /docs/doxygen/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/Doxyfile.in -------------------------------------------------------------------------------- /docs/doxygen/doxyxml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/doxyxml/__init__.py -------------------------------------------------------------------------------- /docs/doxygen/doxyxml/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/doxyxml/base.py -------------------------------------------------------------------------------- /docs/doxygen/doxyxml/doxyindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/doxyxml/doxyindex.py -------------------------------------------------------------------------------- /docs/doxygen/doxyxml/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/doxyxml/text.py -------------------------------------------------------------------------------- /docs/doxygen/other/doxypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/other/doxypy.py -------------------------------------------------------------------------------- /docs/doxygen/other/group_defs.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/other/group_defs.dox -------------------------------------------------------------------------------- /docs/doxygen/other/main_page.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/other/main_page.dox -------------------------------------------------------------------------------- /docs/doxygen/pydoc_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/pydoc_macros.h -------------------------------------------------------------------------------- /docs/doxygen/update_pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/doxygen/update_pydoc.py -------------------------------------------------------------------------------- /docs/gr_satellites.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/gr_satellites.1 -------------------------------------------------------------------------------- /docs/gr_satellites_ssdv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/gr_satellites_ssdv.1 -------------------------------------------------------------------------------- /docs/other/README.satellites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/other/README.satellites -------------------------------------------------------------------------------- /docs/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/requirements.in -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/smog_p_spectrum.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/smog_p_spectrum.1 -------------------------------------------------------------------------------- /docs/source/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_templates/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/command_line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/command_line.rst -------------------------------------------------------------------------------- /docs/source/components.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/components.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/images/au02_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/images/au02_default.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/installation_conda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/installation_conda.rst -------------------------------------------------------------------------------- /docs/source/installation_intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/installation_intro.rst -------------------------------------------------------------------------------- /docs/source/installation_ppa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/installation_ppa.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /docs/source/low_level.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/low_level.rst -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/overview.rst -------------------------------------------------------------------------------- /docs/source/satellite_decoder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/satellite_decoder.rst -------------------------------------------------------------------------------- /docs/source/satyaml.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/satyaml.rst -------------------------------------------------------------------------------- /docs/source/supported_satellites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/supported_satellites.rst -------------------------------------------------------------------------------- /docs/source/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/docs/source/utilities.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/ax25/.gitignore: -------------------------------------------------------------------------------- 1 | *.py 2 | -------------------------------------------------------------------------------- /examples/ax25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ax25/README.md -------------------------------------------------------------------------------- /examples/ax25/afsk.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ax25/afsk.grc -------------------------------------------------------------------------------- /examples/ax25/bpsk.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ax25/bpsk.grc -------------------------------------------------------------------------------- /examples/ax25/bpsk9k6.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ax25/bpsk9k6.grc -------------------------------------------------------------------------------- /examples/ax25/fsk.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ax25/fsk.grc -------------------------------------------------------------------------------- /examples/ber/lilacsat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ber/lilacsat1.png -------------------------------------------------------------------------------- /examples/ber/lilacsat1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ber/lilacsat1.py -------------------------------------------------------------------------------- /examples/ber/lilacsat1_ber_bpsk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ber/lilacsat1_ber_bpsk.py -------------------------------------------------------------------------------- /examples/ber/lilacsat1_bpsk.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ber/lilacsat1_bpsk.grc -------------------------------------------------------------------------------- /examples/ber/lilacsat1_viterbi.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ber/lilacsat1_viterbi.grc -------------------------------------------------------------------------------- /examples/ccsds/TC_Packet.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ccsds/TC_Packet.grc -------------------------------------------------------------------------------- /examples/ccsds/TM_Packet.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/ccsds/TM_Packet.grc -------------------------------------------------------------------------------- /examples/csp_rx_asmgolay_vector.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/csp_rx_asmgolay_vector.grc -------------------------------------------------------------------------------- /examples/kiss_submitter.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/kiss_submitter.grc -------------------------------------------------------------------------------- /examples/satellites/equisat.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/satellites/equisat.grc -------------------------------------------------------------------------------- /examples/satellites/hades_d.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/satellites/hades_d.grc -------------------------------------------------------------------------------- /examples/satellites/k2sat_image.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/satellites/k2sat_image.grc -------------------------------------------------------------------------------- /examples/satellites/move2.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/satellites/move2.grc -------------------------------------------------------------------------------- /examples/satellites/nexus.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/satellites/nexus.grc -------------------------------------------------------------------------------- /examples/satellites/tanusha3_pm.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/examples/satellites/tanusha3_pm.grc -------------------------------------------------------------------------------- /grc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/CMakeLists.txt -------------------------------------------------------------------------------- /grc/ccsds/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/ccsds/CMakeLists.txt -------------------------------------------------------------------------------- /grc/components/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/components/CMakeLists.txt -------------------------------------------------------------------------------- /grc/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/core/CMakeLists.txt -------------------------------------------------------------------------------- /grc/hier/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/hier/CMakeLists.txt -------------------------------------------------------------------------------- /grc/satellites_adsb_kml.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_adsb_kml.block.yml -------------------------------------------------------------------------------- /grc/satellites_check_crc.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_check_crc.block.yml -------------------------------------------------------------------------------- /grc/satellites_crc_append.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_crc_append.block.yml -------------------------------------------------------------------------------- /grc/satellites_crc_check.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_crc_check.block.yml -------------------------------------------------------------------------------- /grc/satellites_csp_zmq_pub.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_csp_zmq_pub.block.yml -------------------------------------------------------------------------------- /grc/satellites_csp_zmq_sub.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_csp_zmq_sub.block.yml -------------------------------------------------------------------------------- /grc/satellites_decode_rs.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_decode_rs.block.yml -------------------------------------------------------------------------------- /grc/satellites_encode_rs.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_encode_rs.block.yml -------------------------------------------------------------------------------- /grc/satellites_hdlc_framer.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_hdlc_framer.block.yml -------------------------------------------------------------------------------- /grc/satellites_kiss_to_pdu.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_kiss_to_pdu.block.yml -------------------------------------------------------------------------------- /grc/satellites_kurtosis.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_kurtosis.block.yml -------------------------------------------------------------------------------- /grc/satellites_nrzi_decode.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_nrzi_decode.block.yml -------------------------------------------------------------------------------- /grc/satellites_nrzi_encode.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_nrzi_encode.block.yml -------------------------------------------------------------------------------- /grc/satellites_packet_csma.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_packet_csma.block.yml -------------------------------------------------------------------------------- /grc/satellites_pdu_to_kiss.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_pdu_to_kiss.block.yml -------------------------------------------------------------------------------- /grc/satellites_selector.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_selector.block.yml -------------------------------------------------------------------------------- /grc/satellites_submit.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_submit.block.yml -------------------------------------------------------------------------------- /grc/satellites_swap_crc.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_swap_crc.block.yml -------------------------------------------------------------------------------- /grc/satellites_swap_header.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/satellites_swap_header.block.yml -------------------------------------------------------------------------------- /grc/usp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/grc/usp/CMakeLists.txt -------------------------------------------------------------------------------- /include/satellites/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/CMakeLists.txt -------------------------------------------------------------------------------- /include/satellites/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/api.h -------------------------------------------------------------------------------- /include/satellites/ax100_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/ax100_decode.h -------------------------------------------------------------------------------- /include/satellites/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/crc.h -------------------------------------------------------------------------------- /include/satellites/crc_append.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/crc_append.h -------------------------------------------------------------------------------- /include/satellites/crc_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/crc_check.h -------------------------------------------------------------------------------- /include/satellites/decode_ra_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/decode_ra_code.h -------------------------------------------------------------------------------- /include/satellites/decode_rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/decode_rs.h -------------------------------------------------------------------------------- /include/satellites/descrambler308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/descrambler308.h -------------------------------------------------------------------------------- /include/satellites/encode_rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/encode_rs.h -------------------------------------------------------------------------------- /include/satellites/fixedlen_to_pdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/fixedlen_to_pdu.h -------------------------------------------------------------------------------- /include/satellites/frame_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/frame_counter.h -------------------------------------------------------------------------------- /include/satellites/kurtosis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/kurtosis.h -------------------------------------------------------------------------------- /include/satellites/lilacsat1_demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/lilacsat1_demux.h -------------------------------------------------------------------------------- /include/satellites/manchester_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/manchester_sync.h -------------------------------------------------------------------------------- /include/satellites/message_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/message_counter.h -------------------------------------------------------------------------------- /include/satellites/nrzi_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/nrzi_decode.h -------------------------------------------------------------------------------- /include/satellites/nrzi_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/nrzi_encode.h -------------------------------------------------------------------------------- /include/satellites/nusat_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/nusat_decoder.h -------------------------------------------------------------------------------- /include/satellites/packet_csma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/packet_csma.h -------------------------------------------------------------------------------- /include/satellites/pdu_add_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/pdu_add_meta.h -------------------------------------------------------------------------------- /include/satellites/pdu_head_tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/pdu_head_tail.h -------------------------------------------------------------------------------- /include/satellites/pdu_scrambler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/pdu_scrambler.h -------------------------------------------------------------------------------- /include/satellites/phase_unwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/phase_unwrap.h -------------------------------------------------------------------------------- /include/satellites/selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/selector.h -------------------------------------------------------------------------------- /include/satellites/u482c_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/u482c_decode.h -------------------------------------------------------------------------------- /include/satellites/u482c_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/u482c_encode.h -------------------------------------------------------------------------------- /include/satellites/viterbi_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/include/satellites/viterbi_decoder.h -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ax100_decode_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/ax100_decode_impl.cc -------------------------------------------------------------------------------- /lib/ax100_decode_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/ax100_decode_impl.h -------------------------------------------------------------------------------- /lib/convolutional_encoder_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/convolutional_encoder_impl.cc -------------------------------------------------------------------------------- /lib/convolutional_encoder_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/convolutional_encoder_impl.h -------------------------------------------------------------------------------- /lib/costas_loop_8apsk_cc_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/costas_loop_8apsk_cc_impl.cc -------------------------------------------------------------------------------- /lib/costas_loop_8apsk_cc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/costas_loop_8apsk_cc_impl.h -------------------------------------------------------------------------------- /lib/crc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/crc.cc -------------------------------------------------------------------------------- /lib/crc_append_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/crc_append_impl.cc -------------------------------------------------------------------------------- /lib/crc_append_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/crc_append_impl.h -------------------------------------------------------------------------------- /lib/crc_check_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/crc_check_impl.cc -------------------------------------------------------------------------------- /lib/crc_check_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/crc_check_impl.h -------------------------------------------------------------------------------- /lib/decode_ra_code_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/decode_ra_code_impl.cc -------------------------------------------------------------------------------- /lib/decode_ra_code_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/decode_ra_code_impl.h -------------------------------------------------------------------------------- /lib/decode_rs_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/decode_rs_impl.cc -------------------------------------------------------------------------------- /lib/decode_rs_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/decode_rs_impl.h -------------------------------------------------------------------------------- /lib/descrambler308_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/descrambler308_impl.cc -------------------------------------------------------------------------------- /lib/descrambler308_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/descrambler308_impl.h -------------------------------------------------------------------------------- /lib/doppler_correction_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/doppler_correction_impl.cc -------------------------------------------------------------------------------- /lib/doppler_correction_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/doppler_correction_impl.h -------------------------------------------------------------------------------- /lib/encode_rs_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/encode_rs_impl.cc -------------------------------------------------------------------------------- /lib/encode_rs_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/encode_rs_impl.h -------------------------------------------------------------------------------- /lib/fixedlen_to_pdu_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/fixedlen_to_pdu_impl.cc -------------------------------------------------------------------------------- /lib/fixedlen_to_pdu_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/fixedlen_to_pdu_impl.h -------------------------------------------------------------------------------- /lib/frame_counter_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/frame_counter_impl.cc -------------------------------------------------------------------------------- /lib/frame_counter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/frame_counter_impl.h -------------------------------------------------------------------------------- /lib/golay24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/golay24.c -------------------------------------------------------------------------------- /lib/golay24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/golay24.h -------------------------------------------------------------------------------- /lib/kurtosis_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/kurtosis_impl.cc -------------------------------------------------------------------------------- /lib/kurtosis_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/kurtosis_impl.h -------------------------------------------------------------------------------- /lib/level_to_message_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/level_to_message_impl.cc -------------------------------------------------------------------------------- /lib/level_to_message_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/level_to_message_impl.h -------------------------------------------------------------------------------- /lib/libfec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/README -------------------------------------------------------------------------------- /lib/libfec/ccsds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/ccsds.c -------------------------------------------------------------------------------- /lib/libfec/ccsds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/ccsds.h -------------------------------------------------------------------------------- /lib/libfec/char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/char.h -------------------------------------------------------------------------------- /lib/libfec/decode_rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/decode_rs.h -------------------------------------------------------------------------------- /lib/libfec/decode_rs_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/decode_rs_8.c -------------------------------------------------------------------------------- /lib/libfec/decode_rs_ccsds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/decode_rs_ccsds.c -------------------------------------------------------------------------------- /lib/libfec/decode_rs_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/decode_rs_char.c -------------------------------------------------------------------------------- /lib/libfec/encode_rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/encode_rs.h -------------------------------------------------------------------------------- /lib/libfec/encode_rs_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/encode_rs_8.c -------------------------------------------------------------------------------- /lib/libfec/encode_rs_ccsds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/encode_rs_ccsds.c -------------------------------------------------------------------------------- /lib/libfec/encode_rs_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/encode_rs_char.c -------------------------------------------------------------------------------- /lib/libfec/fec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/fec.h -------------------------------------------------------------------------------- /lib/libfec/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/fixed.h -------------------------------------------------------------------------------- /lib/libfec/init_rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/init_rs.h -------------------------------------------------------------------------------- /lib/libfec/init_rs_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/init_rs_char.c -------------------------------------------------------------------------------- /lib/libfec/lesser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/lesser.txt -------------------------------------------------------------------------------- /lib/libfec/rs-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/rs-common.h -------------------------------------------------------------------------------- /lib/libfec/taltab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/libfec/taltab.c -------------------------------------------------------------------------------- /lib/lilacsat1_demux_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/lilacsat1_demux_impl.cc -------------------------------------------------------------------------------- /lib/lilacsat1_demux_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/lilacsat1_demux_impl.h -------------------------------------------------------------------------------- /lib/manchester_sync_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/manchester_sync_impl.cc -------------------------------------------------------------------------------- /lib/manchester_sync_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/manchester_sync_impl.h -------------------------------------------------------------------------------- /lib/matrix_deinterleaver_soft_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/matrix_deinterleaver_soft_impl.h -------------------------------------------------------------------------------- /lib/message_counter_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/message_counter_impl.cc -------------------------------------------------------------------------------- /lib/message_counter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/message_counter_impl.h -------------------------------------------------------------------------------- /lib/nrzi_decode_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/nrzi_decode_impl.cc -------------------------------------------------------------------------------- /lib/nrzi_decode_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/nrzi_decode_impl.h -------------------------------------------------------------------------------- /lib/nrzi_encode_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/nrzi_encode_impl.cc -------------------------------------------------------------------------------- /lib/nrzi_encode_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/nrzi_encode_impl.h -------------------------------------------------------------------------------- /lib/nusat_decoder_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/nusat_decoder_impl.cc -------------------------------------------------------------------------------- /lib/nusat_decoder_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/nusat_decoder_impl.h -------------------------------------------------------------------------------- /lib/packet_csma_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/packet_csma_impl.cc -------------------------------------------------------------------------------- /lib/packet_csma_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/packet_csma_impl.h -------------------------------------------------------------------------------- /lib/pdu_add_meta_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/pdu_add_meta_impl.cc -------------------------------------------------------------------------------- /lib/pdu_add_meta_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/pdu_add_meta_impl.h -------------------------------------------------------------------------------- /lib/pdu_head_tail_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/pdu_head_tail_impl.cc -------------------------------------------------------------------------------- /lib/pdu_head_tail_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/pdu_head_tail_impl.h -------------------------------------------------------------------------------- /lib/pdu_length_filter_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/pdu_length_filter_impl.cc -------------------------------------------------------------------------------- /lib/pdu_length_filter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/pdu_length_filter_impl.h -------------------------------------------------------------------------------- /lib/pdu_scrambler_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/pdu_scrambler_impl.cc -------------------------------------------------------------------------------- /lib/pdu_scrambler_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/pdu_scrambler_impl.h -------------------------------------------------------------------------------- /lib/phase_unwrap_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/phase_unwrap_impl.cc -------------------------------------------------------------------------------- /lib/phase_unwrap_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/phase_unwrap_impl.h -------------------------------------------------------------------------------- /lib/qa_satellites.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/qa_satellites.cc -------------------------------------------------------------------------------- /lib/qa_satellites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/qa_satellites.h -------------------------------------------------------------------------------- /lib/radecoder/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/radecoder/README -------------------------------------------------------------------------------- /lib/radecoder/ra_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/radecoder/ra_config.c -------------------------------------------------------------------------------- /lib/radecoder/ra_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/radecoder/ra_config.h -------------------------------------------------------------------------------- /lib/radecoder/ra_decoder_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/radecoder/ra_decoder_gen.c -------------------------------------------------------------------------------- /lib/radecoder/ra_decoder_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/radecoder/ra_decoder_gen.h -------------------------------------------------------------------------------- /lib/radecoder/ra_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/radecoder/ra_encoder.c -------------------------------------------------------------------------------- /lib/radecoder/ra_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/radecoder/ra_encoder.h -------------------------------------------------------------------------------- /lib/radecoder/ra_lfsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/radecoder/ra_lfsr.c -------------------------------------------------------------------------------- /lib/radecoder/ra_lfsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/radecoder/ra_lfsr.h -------------------------------------------------------------------------------- /lib/randomizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/randomizer.c -------------------------------------------------------------------------------- /lib/randomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/randomizer.h -------------------------------------------------------------------------------- /lib/rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/rs.h -------------------------------------------------------------------------------- /lib/selector_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/selector_impl.cc -------------------------------------------------------------------------------- /lib/selector_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/selector_impl.h -------------------------------------------------------------------------------- /lib/time_dependent_delay_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/time_dependent_delay_impl.cc -------------------------------------------------------------------------------- /lib/time_dependent_delay_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/time_dependent_delay_impl.h -------------------------------------------------------------------------------- /lib/u482c_decode_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/u482c_decode_impl.cc -------------------------------------------------------------------------------- /lib/u482c_decode_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/u482c_decode_impl.h -------------------------------------------------------------------------------- /lib/u482c_encode_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/u482c_encode_impl.cc -------------------------------------------------------------------------------- /lib/u482c_encode_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/u482c_encode_impl.h -------------------------------------------------------------------------------- /lib/varlen_packet_framer_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/varlen_packet_framer_impl.cc -------------------------------------------------------------------------------- /lib/varlen_packet_framer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/varlen_packet_framer_impl.h -------------------------------------------------------------------------------- /lib/varlen_packet_tagger_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/varlen_packet_tagger_impl.cc -------------------------------------------------------------------------------- /lib/varlen_packet_tagger_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/varlen_packet_tagger_impl.h -------------------------------------------------------------------------------- /lib/viterbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/viterbi.c -------------------------------------------------------------------------------- /lib/viterbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/viterbi.h -------------------------------------------------------------------------------- /lib/viterbi/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/viterbi/LICENSE.md -------------------------------------------------------------------------------- /lib/viterbi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/viterbi/README.md -------------------------------------------------------------------------------- /lib/viterbi/viterbi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/viterbi/viterbi.cc -------------------------------------------------------------------------------- /lib/viterbi/viterbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/viterbi/viterbi.h -------------------------------------------------------------------------------- /lib/viterbi_decoder_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/viterbi_decoder_impl.cc -------------------------------------------------------------------------------- /lib/viterbi_decoder_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/lib/viterbi_decoder_impl.h -------------------------------------------------------------------------------- /python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/CMakeLists.txt -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/__init__.py -------------------------------------------------------------------------------- /python/aausat4_remove_fsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/aausat4_remove_fsm.py -------------------------------------------------------------------------------- /python/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/adapters.py -------------------------------------------------------------------------------- /python/adsb_kml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/adsb_kml.py -------------------------------------------------------------------------------- /python/ao40_uncoded_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ao40_uncoded_crc.py -------------------------------------------------------------------------------- /python/append_crc32c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/append_crc32c.py -------------------------------------------------------------------------------- /python/autopolarization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/autopolarization.py -------------------------------------------------------------------------------- /python/bch15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bch15.py -------------------------------------------------------------------------------- /python/beesat_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/beesat_classifier.py -------------------------------------------------------------------------------- /python/bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/CMakeLists.txt -------------------------------------------------------------------------------- /python/bindings/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/bindings/bind_oot_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/bind_oot_file.py -------------------------------------------------------------------------------- /python/bindings/crc_append_python.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/crc_append_python.cc -------------------------------------------------------------------------------- /python/bindings/crc_check_python.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/crc_check_python.cc -------------------------------------------------------------------------------- /python/bindings/crc_python.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/crc_python.cc -------------------------------------------------------------------------------- /python/bindings/decode_rs_python.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/decode_rs_python.cc -------------------------------------------------------------------------------- /python/bindings/docstrings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/docstrings/README.md -------------------------------------------------------------------------------- /python/bindings/encode_rs_python.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/encode_rs_python.cc -------------------------------------------------------------------------------- /python/bindings/header_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/header_utils.py -------------------------------------------------------------------------------- /python/bindings/kurtosis_python.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/kurtosis_python.cc -------------------------------------------------------------------------------- /python/bindings/python_bindings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/python_bindings.cc -------------------------------------------------------------------------------- /python/bindings/selector_python.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bindings/selector_python.cc -------------------------------------------------------------------------------- /python/bme_submitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bme_submitter.py -------------------------------------------------------------------------------- /python/bme_ws_submitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/bme_ws_submitter.py -------------------------------------------------------------------------------- /python/build_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/build_utils.py -------------------------------------------------------------------------------- /python/build_utils_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/build_utils_codes.py -------------------------------------------------------------------------------- /python/cc11xx_packet_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/cc11xx_packet_crop.py -------------------------------------------------------------------------------- /python/ccsds/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/CMakeLists.txt -------------------------------------------------------------------------------- /python/ccsds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/__init__.py -------------------------------------------------------------------------------- /python/ccsds/pathID_demultiplexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/pathID_demultiplexer.py -------------------------------------------------------------------------------- /python/ccsds/space_packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/space_packet.py -------------------------------------------------------------------------------- /python/ccsds/space_packet_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/space_packet_parser.py -------------------------------------------------------------------------------- /python/ccsds/telecommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/telecommand.py -------------------------------------------------------------------------------- /python/ccsds/telecommand_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/telecommand_parser.py -------------------------------------------------------------------------------- /python/ccsds/telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/telemetry.py -------------------------------------------------------------------------------- /python/ccsds/telemetry_ocf_adder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/telemetry_ocf_adder.py -------------------------------------------------------------------------------- /python/ccsds/telemetry_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ccsds/telemetry_parser.py -------------------------------------------------------------------------------- /python/check_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_address.py -------------------------------------------------------------------------------- /python/check_ao40_uncoded_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_ao40_uncoded_crc.py -------------------------------------------------------------------------------- /python/check_astrocast_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_astrocast_crc.py -------------------------------------------------------------------------------- /python/check_cc11xx_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_cc11xx_crc.py -------------------------------------------------------------------------------- /python/check_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_crc.py -------------------------------------------------------------------------------- /python/check_crc16_ccitt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_crc16_ccitt.py -------------------------------------------------------------------------------- /python/check_crc16_ccitt_false.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_crc16_ccitt_false.py -------------------------------------------------------------------------------- /python/check_eseo_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_eseo_crc.py -------------------------------------------------------------------------------- /python/check_hex_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_hex_string.py -------------------------------------------------------------------------------- /python/check_swiatowid_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_swiatowid_crc.py -------------------------------------------------------------------------------- /python/check_tt64_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/check_tt64_crc.py -------------------------------------------------------------------------------- /python/components/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/components/CMakeLists.txt -------------------------------------------------------------------------------- /python/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/components/__init__.py -------------------------------------------------------------------------------- /python/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/core/CMakeLists.txt -------------------------------------------------------------------------------- /python/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/core/__init__.py -------------------------------------------------------------------------------- /python/crc32c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/crc32c.py -------------------------------------------------------------------------------- /python/crcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/crcs.py -------------------------------------------------------------------------------- /python/csp_address_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/csp_address_filter.py -------------------------------------------------------------------------------- /python/csp_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/csp_header.py -------------------------------------------------------------------------------- /python/csp_zmq_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/csp_zmq_pub.py -------------------------------------------------------------------------------- /python/csp_zmq_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/csp_zmq_sub.py -------------------------------------------------------------------------------- /python/ecss_pus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ecss_pus.py -------------------------------------------------------------------------------- /python/eseo_line_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/eseo_line_decoder.py -------------------------------------------------------------------------------- /python/eseo_packet_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/eseo_packet_crop.py -------------------------------------------------------------------------------- /python/feh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/feh.py -------------------------------------------------------------------------------- /python/filereceiver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/CMakeLists.txt -------------------------------------------------------------------------------- /python/filereceiver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/__init__.py -------------------------------------------------------------------------------- /python/filereceiver/by70_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/by70_1.py -------------------------------------------------------------------------------- /python/filereceiver/cas5a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/cas5a.py -------------------------------------------------------------------------------- /python/filereceiver/dsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/dsat.py -------------------------------------------------------------------------------- /python/filereceiver/filereceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/filereceiver.py -------------------------------------------------------------------------------- /python/filereceiver/imagereceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/imagereceiver.py -------------------------------------------------------------------------------- /python/filereceiver/k2sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/k2sat.py -------------------------------------------------------------------------------- /python/filereceiver/lucky7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/lucky7.py -------------------------------------------------------------------------------- /python/filereceiver/mirsat1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/mirsat1.py -------------------------------------------------------------------------------- /python/filereceiver/sat_1kuns_pf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/sat_1kuns_pf.py -------------------------------------------------------------------------------- /python/filereceiver/smogp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/smogp.py -------------------------------------------------------------------------------- /python/filereceiver/swiatowid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/filereceiver/swiatowid.py -------------------------------------------------------------------------------- /python/funcube_submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/funcube_submit.py -------------------------------------------------------------------------------- /python/grpdu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/grpdu.py -------------------------------------------------------------------------------- /python/grtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/grtypes.py -------------------------------------------------------------------------------- /python/hdlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hdlc.py -------------------------------------------------------------------------------- /python/hdlc_deframer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hdlc_deframer.py -------------------------------------------------------------------------------- /python/hdlc_framer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hdlc_framer.py -------------------------------------------------------------------------------- /python/hier/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/CMakeLists.txt -------------------------------------------------------------------------------- /python/hier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/__init__.py -------------------------------------------------------------------------------- /python/hier/ccsds_descrambler.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/ccsds_descrambler.grc -------------------------------------------------------------------------------- /python/hier/ccsds_descrambler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/ccsds_descrambler.py -------------------------------------------------------------------------------- /python/hier/ccsds_viterbi.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/ccsds_viterbi.grc -------------------------------------------------------------------------------- /python/hier/ccsds_viterbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/ccsds_viterbi.py -------------------------------------------------------------------------------- /python/hier/pn9_scrambler.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/pn9_scrambler.grc -------------------------------------------------------------------------------- /python/hier/pn9_scrambler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/pn9_scrambler.py -------------------------------------------------------------------------------- /python/hier/qa_rms_agc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/qa_rms_agc.py -------------------------------------------------------------------------------- /python/hier/qa_rms_agc_f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/qa_rms_agc_f.py -------------------------------------------------------------------------------- /python/hier/rms_agc.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/rms_agc.grc -------------------------------------------------------------------------------- /python/hier/rms_agc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/rms_agc.py -------------------------------------------------------------------------------- /python/hier/rms_agc_f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/rms_agc_f.py -------------------------------------------------------------------------------- /python/hier/si4463_scrambler.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/si4463_scrambler.grc -------------------------------------------------------------------------------- /python/hier/si4463_scrambler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/si4463_scrambler.py -------------------------------------------------------------------------------- /python/hier/sync_to_pdu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/sync_to_pdu.py -------------------------------------------------------------------------------- /python/hier/sync_to_pdu_packed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/sync_to_pdu_packed.py -------------------------------------------------------------------------------- /python/hier/sync_to_pdu_soft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/hier/sync_to_pdu_soft.py -------------------------------------------------------------------------------- /python/k2sat_deframer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/k2sat_deframer.py -------------------------------------------------------------------------------- /python/kiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/kiss.py -------------------------------------------------------------------------------- /python/kiss_to_pdu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/kiss_to_pdu.py -------------------------------------------------------------------------------- /python/ks1q_header_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ks1q_header_remover.py -------------------------------------------------------------------------------- /python/lilacsat1_gps_kml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/lilacsat1_gps_kml.py -------------------------------------------------------------------------------- /python/mobitex_fec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/mobitex_fec.py -------------------------------------------------------------------------------- /python/mobitex_fec_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/mobitex_fec_block.py -------------------------------------------------------------------------------- /python/mobitex_to_datablocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/mobitex_to_datablocks.py -------------------------------------------------------------------------------- /python/ngham_check_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ngham_check_crc.py -------------------------------------------------------------------------------- /python/ngham_packet_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ngham_packet_crop.py -------------------------------------------------------------------------------- /python/ngham_remove_padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/ngham_remove_padding.py -------------------------------------------------------------------------------- /python/pdu_to_kiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/pdu_to_kiss.py -------------------------------------------------------------------------------- /python/print_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/print_header.py -------------------------------------------------------------------------------- /python/print_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/print_timestamp.py -------------------------------------------------------------------------------- /python/pwsat2_submitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/pwsat2_submitter.py -------------------------------------------------------------------------------- /python/pwsat2_telemetry_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/pwsat2_telemetry_parser.py -------------------------------------------------------------------------------- /python/qa_costas_loop_8apsk_cc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_costas_loop_8apsk_cc.py -------------------------------------------------------------------------------- /python/qa_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_crc.py -------------------------------------------------------------------------------- /python/qa_fixedlen_to_pdu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_fixedlen_to_pdu.py -------------------------------------------------------------------------------- /python/qa_hdlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_hdlc.py -------------------------------------------------------------------------------- /python/qa_kiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_kiss.py -------------------------------------------------------------------------------- /python/qa_manchester_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_manchester_sync.py -------------------------------------------------------------------------------- /python/qa_message_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_message_counter.py -------------------------------------------------------------------------------- /python/qa_mobitex_fec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_mobitex_fec.py -------------------------------------------------------------------------------- /python/qa_mobitex_fec_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_mobitex_fec_block.py -------------------------------------------------------------------------------- /python/qa_nrzi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_nrzi.py -------------------------------------------------------------------------------- /python/qa_pdu_add_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_pdu_add_meta.py -------------------------------------------------------------------------------- /python/qa_pdu_head_tail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_pdu_head_tail.py -------------------------------------------------------------------------------- /python/qa_pdu_length_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_pdu_length_filter.py -------------------------------------------------------------------------------- /python/qa_pdu_scrambler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_pdu_scrambler.py -------------------------------------------------------------------------------- /python/qa_phase_unwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_phase_unwrap.py -------------------------------------------------------------------------------- /python/qa_rs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_rs.py -------------------------------------------------------------------------------- /python/qa_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_selector.py -------------------------------------------------------------------------------- /python/qa_submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_submit.py -------------------------------------------------------------------------------- /python/qa_viterbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/qa_viterbi.py -------------------------------------------------------------------------------- /python/reflect_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/reflect_bytes.py -------------------------------------------------------------------------------- /python/satyaml/1KUNS-PF.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/1KUNS-PF.yml -------------------------------------------------------------------------------- /python/satyaml/239Alferov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/239Alferov.yml -------------------------------------------------------------------------------- /python/satyaml/3CAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/3CAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/3CAT-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/3CAT-2.yml -------------------------------------------------------------------------------- /python/satyaml/AALTO-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AALTO-1.yml -------------------------------------------------------------------------------- /python/satyaml/AAUSAT-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AAUSAT-4.yml -------------------------------------------------------------------------------- /python/satyaml/ACRUX-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ACRUX-1.yml -------------------------------------------------------------------------------- /python/satyaml/AEPEX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AEPEX.yml -------------------------------------------------------------------------------- /python/satyaml/AHMAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AHMAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/AISAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AISAT.yml -------------------------------------------------------------------------------- /python/satyaml/AISTECHSAT-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AISTECHSAT-2.yml -------------------------------------------------------------------------------- /python/satyaml/AISTECHSAT-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AISTECHSAT-3.yml -------------------------------------------------------------------------------- /python/satyaml/ALFACRUX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ALFACRUX.yml -------------------------------------------------------------------------------- /python/satyaml/AMGU-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AMGU-1.yml -------------------------------------------------------------------------------- /python/satyaml/AO-27.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AO-27.yml -------------------------------------------------------------------------------- /python/satyaml/AO-40.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AO-40.yml -------------------------------------------------------------------------------- /python/satyaml/AO-73.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AO-73.yml -------------------------------------------------------------------------------- /python/satyaml/ARCCUBE-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ARCCUBE-1.yml -------------------------------------------------------------------------------- /python/satyaml/ARCTICSAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ARCTICSAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/ARMADILLO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ARMADILLO.yml -------------------------------------------------------------------------------- /python/satyaml/ASRTU-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ASRTU-1.yml -------------------------------------------------------------------------------- /python/satyaml/ASTROBIO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ASTROBIO.yml -------------------------------------------------------------------------------- /python/satyaml/AT03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AT03.yml -------------------------------------------------------------------------------- /python/satyaml/ATHENOXAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ATHENOXAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/ATL-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ATL-1.yml -------------------------------------------------------------------------------- /python/satyaml/ATLANTIS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ATLANTIS.yml -------------------------------------------------------------------------------- /python/satyaml/AU02.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AU02.yml -------------------------------------------------------------------------------- /python/satyaml/AU03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AU03.yml -------------------------------------------------------------------------------- /python/satyaml/AVION.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AVION.yml -------------------------------------------------------------------------------- /python/satyaml/AZAADISAT-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AZAADISAT-2.yml -------------------------------------------------------------------------------- /python/satyaml/AmicalSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AmicalSat.yml -------------------------------------------------------------------------------- /python/satyaml/Astrocast_0_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Astrocast_0_1.yml -------------------------------------------------------------------------------- /python/satyaml/Astrocast_0_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Astrocast_0_2.yml -------------------------------------------------------------------------------- /python/satyaml/AzaadiSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AzaadiSAT.yml -------------------------------------------------------------------------------- /python/satyaml/AztechSat-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/AztechSat-1.yml -------------------------------------------------------------------------------- /python/satyaml/BCCSAT_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BCCSAT_1.yml -------------------------------------------------------------------------------- /python/satyaml/BDSat-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BDSat-2.yml -------------------------------------------------------------------------------- /python/satyaml/BDSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BDSat.yml -------------------------------------------------------------------------------- /python/satyaml/BEESAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BEESAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/BEESAT-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BEESAT-2.yml -------------------------------------------------------------------------------- /python/satyaml/BEESAT-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BEESAT-4.yml -------------------------------------------------------------------------------- /python/satyaml/BEESAT-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BEESAT-9.yml -------------------------------------------------------------------------------- /python/satyaml/BELIEFSAT-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BELIEFSAT-0.yml -------------------------------------------------------------------------------- /python/satyaml/BINAR-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BINAR-1.yml -------------------------------------------------------------------------------- /python/satyaml/BINAR-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BINAR-2.yml -------------------------------------------------------------------------------- /python/satyaml/BINAR-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BINAR-3.yml -------------------------------------------------------------------------------- /python/satyaml/BINAR-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BINAR-4.yml -------------------------------------------------------------------------------- /python/satyaml/BISONSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BISONSAT.yml -------------------------------------------------------------------------------- /python/satyaml/BOBCAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BOBCAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/BOTAN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BOTAN.yml -------------------------------------------------------------------------------- /python/satyaml/BRICSat-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BRICSat-2.yml -------------------------------------------------------------------------------- /python/satyaml/BUGSAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BUGSAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/BY02.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BY02.yml -------------------------------------------------------------------------------- /python/satyaml/BY03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BY03.yml -------------------------------------------------------------------------------- /python/satyaml/BY70-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BY70-1.yml -------------------------------------------------------------------------------- /python/satyaml/BlueWalker_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/BlueWalker_3.yml -------------------------------------------------------------------------------- /python/satyaml/Bluebird_01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Bluebird_01.yml -------------------------------------------------------------------------------- /python/satyaml/Bluebird_02.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Bluebird_02.yml -------------------------------------------------------------------------------- /python/satyaml/Bluebird_03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Bluebird_03.yml -------------------------------------------------------------------------------- /python/satyaml/Bluebird_04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Bluebird_04.yml -------------------------------------------------------------------------------- /python/satyaml/Bluebird_05.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Bluebird_05.yml -------------------------------------------------------------------------------- /python/satyaml/CA03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CA03.yml -------------------------------------------------------------------------------- /python/satyaml/CAPE-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CAPE-3.yml -------------------------------------------------------------------------------- /python/satyaml/CAS-4A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CAS-4A.yml -------------------------------------------------------------------------------- /python/satyaml/CAS-4B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CAS-4B.yml -------------------------------------------------------------------------------- /python/satyaml/CAS-5A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CAS-5A.yml -------------------------------------------------------------------------------- /python/satyaml/CAS-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CAS-6.yml -------------------------------------------------------------------------------- /python/satyaml/CATSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CATSAT.yml -------------------------------------------------------------------------------- /python/satyaml/CELESTA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CELESTA.yml -------------------------------------------------------------------------------- /python/satyaml/CHOMPTT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CHOMPTT.yml -------------------------------------------------------------------------------- /python/satyaml/CIRBE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CIRBE.yml -------------------------------------------------------------------------------- /python/satyaml/CLARKSAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CLARKSAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CMakeLists.txt -------------------------------------------------------------------------------- /python/satyaml/COLIBRI-S.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/COLIBRI-S.yml -------------------------------------------------------------------------------- /python/satyaml/COLUMBIA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/COLUMBIA.yml -------------------------------------------------------------------------------- /python/satyaml/CSIM-FD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CSIM-FD.yml -------------------------------------------------------------------------------- /python/satyaml/CTIM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CTIM.yml -------------------------------------------------------------------------------- /python/satyaml/CUAVA-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CUAVA-1.yml -------------------------------------------------------------------------------- /python/satyaml/CUAVA-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CUAVA-2.yml -------------------------------------------------------------------------------- /python/satyaml/CUBE-L.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CUBE-L.yml -------------------------------------------------------------------------------- /python/satyaml/CUBEBUG-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CUBEBUG-2.yml -------------------------------------------------------------------------------- /python/satyaml/CUBESX-HSE-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CUBESX-HSE-2.yml -------------------------------------------------------------------------------- /python/satyaml/CUBESX-HSE-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CUBESX-HSE-3.yml -------------------------------------------------------------------------------- /python/satyaml/CUTE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CUTE.yml -------------------------------------------------------------------------------- /python/satyaml/CYCLOPS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CYCLOPS.yml -------------------------------------------------------------------------------- /python/satyaml/CZ02.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CZ02.yml -------------------------------------------------------------------------------- /python/satyaml/CroCube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CroCube.yml -------------------------------------------------------------------------------- /python/satyaml/CubeBel-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CubeBel-1.yml -------------------------------------------------------------------------------- /python/satyaml/CubeBel-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CubeBel-2.yml -------------------------------------------------------------------------------- /python/satyaml/CubeSX-HSE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/CubeSX-HSE.yml -------------------------------------------------------------------------------- /python/satyaml/D-SAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/D-SAT.yml -------------------------------------------------------------------------------- /python/satyaml/DEKART.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/DEKART.yml -------------------------------------------------------------------------------- /python/satyaml/DELFI-C3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/DELFI-C3.yml -------------------------------------------------------------------------------- /python/satyaml/DELFI-PQ.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/DELFI-PQ.yml -------------------------------------------------------------------------------- /python/satyaml/DELFI-n3xt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/DELFI-n3xt.yml -------------------------------------------------------------------------------- /python/satyaml/DHABISAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/DHABISAT.yml -------------------------------------------------------------------------------- /python/satyaml/DIY-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/DIY-1.yml -------------------------------------------------------------------------------- /python/satyaml/DORA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/DORA.yml -------------------------------------------------------------------------------- /python/satyaml/DUCHIFAT-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/DUCHIFAT-3.yml -------------------------------------------------------------------------------- /python/satyaml/Delphini-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Delphini-1.yml -------------------------------------------------------------------------------- /python/satyaml/E-ST@R-II.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/E-ST@R-II.yml -------------------------------------------------------------------------------- /python/satyaml/ECAMSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ECAMSAT.yml -------------------------------------------------------------------------------- /python/satyaml/EIRSAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/EIRSAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/ELFIN-A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ELFIN-A.yml -------------------------------------------------------------------------------- /python/satyaml/ELFIN-B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ELFIN-B.yml -------------------------------------------------------------------------------- /python/satyaml/ENDUROSAT_ONE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ENDUROSAT_ONE.yml -------------------------------------------------------------------------------- /python/satyaml/ENSO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ENSO.yml -------------------------------------------------------------------------------- /python/satyaml/ERMINAZ-1U.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ERMINAZ-1U.yml -------------------------------------------------------------------------------- /python/satyaml/ESEO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ESEO.yml -------------------------------------------------------------------------------- /python/satyaml/EXOCUBE-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/EXOCUBE-2.yml -------------------------------------------------------------------------------- /python/satyaml/EXP-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/EXP-1.yml -------------------------------------------------------------------------------- /python/satyaml/Eaglet-I.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Eaglet-I.yml -------------------------------------------------------------------------------- /python/satyaml/EntrySat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/EntrySat.yml -------------------------------------------------------------------------------- /python/satyaml/FACSAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/FACSAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/FALCONSAT-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/FALCONSAT-3.yml -------------------------------------------------------------------------------- /python/satyaml/FIREBIRD_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/FIREBIRD_3.yml -------------------------------------------------------------------------------- /python/satyaml/FIREBIRD_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/FIREBIRD_4.yml -------------------------------------------------------------------------------- /python/satyaml/FMN-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/FMN-1.yml -------------------------------------------------------------------------------- /python/satyaml/FORESAIL-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/FORESAIL-1.yml -------------------------------------------------------------------------------- /python/satyaml/FOSSASAT-1B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/FOSSASAT-1B.yml -------------------------------------------------------------------------------- /python/satyaml/FOSSASAT-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/FOSSASAT-2.yml -------------------------------------------------------------------------------- /python/satyaml/FloripaSat-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/FloripaSat-1.yml -------------------------------------------------------------------------------- /python/satyaml/GALASSIA-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GALASSIA-2.yml -------------------------------------------------------------------------------- /python/satyaml/GALASSIA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GALASSIA.yml -------------------------------------------------------------------------------- /python/satyaml/GASPACS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GASPACS.yml -------------------------------------------------------------------------------- /python/satyaml/GO-32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GO-32.yml -------------------------------------------------------------------------------- /python/satyaml/GOMX-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GOMX-1.yml -------------------------------------------------------------------------------- /python/satyaml/GOMX-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GOMX-3.yml -------------------------------------------------------------------------------- /python/satyaml/GR01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GR01.yml -------------------------------------------------------------------------------- /python/satyaml/GRBAlpha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GRBAlpha.yml -------------------------------------------------------------------------------- /python/satyaml/GRBBeta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GRBBeta.yml -------------------------------------------------------------------------------- /python/satyaml/GREENCUBE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GREENCUBE.yml -------------------------------------------------------------------------------- /python/satyaml/GRIFEX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GRIFEX.yml -------------------------------------------------------------------------------- /python/satyaml/GT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/GT-1.yml -------------------------------------------------------------------------------- /python/satyaml/Geoscan-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Geoscan-1.yml -------------------------------------------------------------------------------- /python/satyaml/Geoscan-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Geoscan-2.yml -------------------------------------------------------------------------------- /python/satyaml/Geoscan-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Geoscan-3.yml -------------------------------------------------------------------------------- /python/satyaml/Geoscan-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Geoscan-4.yml -------------------------------------------------------------------------------- /python/satyaml/Geoscan-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Geoscan-5.yml -------------------------------------------------------------------------------- /python/satyaml/Geoscan-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Geoscan-6.yml -------------------------------------------------------------------------------- /python/satyaml/Grizu-263A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Grizu-263A.yml -------------------------------------------------------------------------------- /python/satyaml/HADES-R.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/HADES-R.yml -------------------------------------------------------------------------------- /python/satyaml/HCT-SAT2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/HCT-SAT2.yml -------------------------------------------------------------------------------- /python/satyaml/HORIZON.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/HORIZON.yml -------------------------------------------------------------------------------- /python/satyaml/HSKSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/HSKSAT.yml -------------------------------------------------------------------------------- /python/satyaml/HSU-SAT1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/HSU-SAT1.yml -------------------------------------------------------------------------------- /python/satyaml/HUMSAT-D.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/HUMSAT-D.yml -------------------------------------------------------------------------------- /python/satyaml/HYDRA-T.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/HYDRA-T.yml -------------------------------------------------------------------------------- /python/satyaml/HYDRA-W.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/HYDRA-W.yml -------------------------------------------------------------------------------- /python/satyaml/HYPERVIEW-1G.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/HYPERVIEW-1G.yml -------------------------------------------------------------------------------- /python/satyaml/Hayasat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Hayasat.yml -------------------------------------------------------------------------------- /python/satyaml/IDEASSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/IDEASSat.yml -------------------------------------------------------------------------------- /python/satyaml/IL01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/IL01.yml -------------------------------------------------------------------------------- /python/satyaml/INHA-RoSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/INHA-RoSAT.yml -------------------------------------------------------------------------------- /python/satyaml/INNOCUBE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/INNOCUBE.yml -------------------------------------------------------------------------------- /python/satyaml/INNOSAT-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/INNOSAT-2.yml -------------------------------------------------------------------------------- /python/satyaml/INS-1C.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/INS-1C.yml -------------------------------------------------------------------------------- /python/satyaml/INS-2B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/INS-2B.yml -------------------------------------------------------------------------------- /python/satyaml/INS-2TD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/INS-2TD.yml -------------------------------------------------------------------------------- /python/satyaml/INSPIRE-SAT_7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/INSPIRE-SAT_7.yml -------------------------------------------------------------------------------- /python/satyaml/INSPIRESat-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/INSPIRESat-1.yml -------------------------------------------------------------------------------- /python/satyaml/ION-MK01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ION-MK01.yml -------------------------------------------------------------------------------- /python/satyaml/ION_SCV-003.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ION_SCV-003.yml -------------------------------------------------------------------------------- /python/satyaml/IRAZU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/IRAZU.yml -------------------------------------------------------------------------------- /python/satyaml/IRIS-A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/IRIS-A.yml -------------------------------------------------------------------------------- /python/satyaml/IRIS-C.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/IRIS-C.yml -------------------------------------------------------------------------------- /python/satyaml/IRIS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/IRIS.yml -------------------------------------------------------------------------------- /python/satyaml/IRVINE-01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/IRVINE-01.yml -------------------------------------------------------------------------------- /python/satyaml/ISOI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ISOI.yml -------------------------------------------------------------------------------- /python/satyaml/IT-SPINS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/IT-SPINS.yml -------------------------------------------------------------------------------- /python/satyaml/ITASAT_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ITASAT_1.yml -------------------------------------------------------------------------------- /python/satyaml/InnoSat16.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/InnoSat16.yml -------------------------------------------------------------------------------- /python/satyaml/InnoSat3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/InnoSat3.yml -------------------------------------------------------------------------------- /python/satyaml/JACK-001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/JACK-001.yml -------------------------------------------------------------------------------- /python/satyaml/JACK-003.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/JACK-003.yml -------------------------------------------------------------------------------- /python/satyaml/JAGSAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/JAGSAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/JAISAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/JAISAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/JINJUSAT-1B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/JINJUSAT-1B.yml -------------------------------------------------------------------------------- /python/satyaml/JY1-Sat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/JY1-Sat.yml -------------------------------------------------------------------------------- /python/satyaml/K-HERO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/K-HERO.yml -------------------------------------------------------------------------------- /python/satyaml/KAFASAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KAFASAT.yml -------------------------------------------------------------------------------- /python/satyaml/KAI-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KAI-1.yml -------------------------------------------------------------------------------- /python/satyaml/KAIDUN-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KAIDUN-1.yml -------------------------------------------------------------------------------- /python/satyaml/KAITUO-1B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KAITUO-1B.yml -------------------------------------------------------------------------------- /python/satyaml/KILICSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KILICSAT.yml -------------------------------------------------------------------------------- /python/satyaml/KR01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KR01.yml -------------------------------------------------------------------------------- /python/satyaml/KS-1Q.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KS-1Q.yml -------------------------------------------------------------------------------- /python/satyaml/KSU_CubeSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KSU_CubeSat.yml -------------------------------------------------------------------------------- /python/satyaml/KUZBASS-300.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KUZBASS-300.yml -------------------------------------------------------------------------------- /python/satyaml/KUZGTU-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KUZGTU-1.yml -------------------------------------------------------------------------------- /python/satyaml/Kashiwa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Kashiwa.yml -------------------------------------------------------------------------------- /python/satyaml/KrakSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/KrakSat.yml -------------------------------------------------------------------------------- /python/satyaml/LEDSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/LEDSAT.yml -------------------------------------------------------------------------------- /python/satyaml/LITUANICASAT-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/LITUANICASAT-2.yml -------------------------------------------------------------------------------- /python/satyaml/LUME-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/LUME-1.yml -------------------------------------------------------------------------------- /python/satyaml/Light-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Light-1.yml -------------------------------------------------------------------------------- /python/satyaml/LightSail-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/LightSail-2.yml -------------------------------------------------------------------------------- /python/satyaml/LilacSat-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/LilacSat-1.yml -------------------------------------------------------------------------------- /python/satyaml/LilacSat-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/LilacSat-2.yml -------------------------------------------------------------------------------- /python/satyaml/Lucky-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Lucky-7.yml -------------------------------------------------------------------------------- /python/satyaml/Luojia-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Luojia-1.yml -------------------------------------------------------------------------------- /python/satyaml/M6P.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/M6P.yml -------------------------------------------------------------------------------- /python/satyaml/MARIO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MARIO.yml -------------------------------------------------------------------------------- /python/satyaml/MCUBED-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MCUBED-2.yml -------------------------------------------------------------------------------- /python/satyaml/MEZNSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MEZNSAT.yml -------------------------------------------------------------------------------- /python/satyaml/MIET-AIS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MIET-AIS.yml -------------------------------------------------------------------------------- /python/satyaml/MIMAN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MIMAN.yml -------------------------------------------------------------------------------- /python/satyaml/MINXSS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MINXSS.yml -------------------------------------------------------------------------------- /python/satyaml/MIR-SAT1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MIR-SAT1.yml -------------------------------------------------------------------------------- /python/satyaml/MONITOR-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MONITOR-1.yml -------------------------------------------------------------------------------- /python/satyaml/MONITOR-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MONITOR-2.yml -------------------------------------------------------------------------------- /python/satyaml/MONITOR-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MONITOR-3.yml -------------------------------------------------------------------------------- /python/satyaml/MONITOR-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MONITOR-4.yml -------------------------------------------------------------------------------- /python/satyaml/MORDOVIA-IOT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MORDOVIA-IOT.yml -------------------------------------------------------------------------------- /python/satyaml/MRC-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MRC-100.yml -------------------------------------------------------------------------------- /python/satyaml/MTCUBE-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MTCUBE-2.yml -------------------------------------------------------------------------------- /python/satyaml/MYSAT_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MYSAT_1.yml -------------------------------------------------------------------------------- /python/satyaml/MiTEE-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MiTEE-1.yml -------------------------------------------------------------------------------- /python/satyaml/MinXSS_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/MinXSS_2.yml -------------------------------------------------------------------------------- /python/satyaml/NANOFF-A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NANOFF-A.yml -------------------------------------------------------------------------------- /python/satyaml/NANOFF-B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NANOFF-B.yml -------------------------------------------------------------------------------- /python/satyaml/NANOZOND-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NANOZOND-1.yml -------------------------------------------------------------------------------- /python/satyaml/NETSAT_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NETSAT_1.yml -------------------------------------------------------------------------------- /python/satyaml/NETSAT_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NETSAT_2.yml -------------------------------------------------------------------------------- /python/satyaml/NETSAT_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NETSAT_3.yml -------------------------------------------------------------------------------- /python/satyaml/NETSAT_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NETSAT_4.yml -------------------------------------------------------------------------------- /python/satyaml/NEUDOSE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NEUDOSE.yml -------------------------------------------------------------------------------- /python/satyaml/NEUTRON-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NEUTRON-1.yml -------------------------------------------------------------------------------- /python/satyaml/NEXUS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NEXUS.yml -------------------------------------------------------------------------------- /python/satyaml/NILA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NILA.yml -------------------------------------------------------------------------------- /python/satyaml/NO-84.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NO-84.yml -------------------------------------------------------------------------------- /python/satyaml/NODES_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NODES_1.yml -------------------------------------------------------------------------------- /python/satyaml/NODES_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NODES_2.yml -------------------------------------------------------------------------------- /python/satyaml/NORBI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NORBI.yml -------------------------------------------------------------------------------- /python/satyaml/NSIGHT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NSIGHT-1.yml -------------------------------------------------------------------------------- /python/satyaml/NUSHSAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NUSHSAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/NUTSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NUTSat.yml -------------------------------------------------------------------------------- /python/satyaml/NanosatC-BR1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NanosatC-BR1.yml -------------------------------------------------------------------------------- /python/satyaml/NanosatC-BR2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NanosatC-BR2.yml -------------------------------------------------------------------------------- /python/satyaml/Nayif-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Nayif-1.yml -------------------------------------------------------------------------------- /python/satyaml/NuSat_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/NuSat_1.yml -------------------------------------------------------------------------------- /python/satyaml/OOV-Cube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/OOV-Cube.yml -------------------------------------------------------------------------------- /python/satyaml/OPS-SAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/OPS-SAT.yml -------------------------------------------------------------------------------- /python/satyaml/O_OREOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/O_OREOS.yml -------------------------------------------------------------------------------- /python/satyaml/OreSat0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/OreSat0.yml -------------------------------------------------------------------------------- /python/satyaml/PAINANI-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PAINANI-1.yml -------------------------------------------------------------------------------- /python/satyaml/PEARL-1C.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PEARL-1C.yml -------------------------------------------------------------------------------- /python/satyaml/PEARL-1H.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PEARL-1H.yml -------------------------------------------------------------------------------- /python/satyaml/PHI-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PHI-1.yml -------------------------------------------------------------------------------- /python/satyaml/PHOENIX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PHOENIX.yml -------------------------------------------------------------------------------- /python/satyaml/PHONESAT_2_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PHONESAT_2_4.yml -------------------------------------------------------------------------------- /python/satyaml/PLANETUM-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PLANETUM-1.yml -------------------------------------------------------------------------------- /python/satyaml/POLYITAN-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/POLYITAN-1.yml -------------------------------------------------------------------------------- /python/satyaml/PW-Sat2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PW-Sat2.yml -------------------------------------------------------------------------------- /python/satyaml/PicSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PicSat.yml -------------------------------------------------------------------------------- /python/satyaml/PlantSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/PlantSat.yml -------------------------------------------------------------------------------- /python/satyaml/QARMAN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/QARMAN.yml -------------------------------------------------------------------------------- /python/satyaml/QBEE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/QBEE.yml -------------------------------------------------------------------------------- /python/satyaml/QMR-KWT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/QMR-KWT.yml -------------------------------------------------------------------------------- /python/satyaml/QO-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/QO-100.yml -------------------------------------------------------------------------------- /python/satyaml/Quetzal-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Quetzal-1.yml -------------------------------------------------------------------------------- /python/satyaml/RAMSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/RAMSAT.yml -------------------------------------------------------------------------------- /python/satyaml/RANDEV.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/RANDEV.yml -------------------------------------------------------------------------------- /python/satyaml/RESHUCUBE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/RESHUCUBE.yml -------------------------------------------------------------------------------- /python/satyaml/ROBUSTA-1B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ROBUSTA-1B.yml -------------------------------------------------------------------------------- /python/satyaml/ROBUSTA-3A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ROBUSTA-3A.yml -------------------------------------------------------------------------------- /python/satyaml/ROSEYCUBESAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ROSEYCUBESAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/RSP-03.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/RSP-03.yml -------------------------------------------------------------------------------- /python/satyaml/RTU-MIREA1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/RTU-MIREA1.yml -------------------------------------------------------------------------------- /python/satyaml/RUZAEVKA-390.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/RUZAEVKA-390.yml -------------------------------------------------------------------------------- /python/satyaml/S-NET_A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/S-NET_A.yml -------------------------------------------------------------------------------- /python/satyaml/S-NET_B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/S-NET_B.yml -------------------------------------------------------------------------------- /python/satyaml/S-NET_C.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/S-NET_C.yml -------------------------------------------------------------------------------- /python/satyaml/S-NET_D.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/S-NET_D.yml -------------------------------------------------------------------------------- /python/satyaml/SALSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SALSAT.yml -------------------------------------------------------------------------------- /python/satyaml/SATURN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SATURN.yml -------------------------------------------------------------------------------- /python/satyaml/SCOOB-II.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SCOOB-II.yml -------------------------------------------------------------------------------- /python/satyaml/SIMBA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SIMBA.yml -------------------------------------------------------------------------------- /python/satyaml/SIREN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SIREN.yml -------------------------------------------------------------------------------- /python/satyaml/SKCUBE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SKCUBE.yml -------------------------------------------------------------------------------- /python/satyaml/SKOLTECH-B1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SKOLTECH-B1.yml -------------------------------------------------------------------------------- /python/satyaml/SKOLTECH-B2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SKOLTECH-B2.yml -------------------------------------------------------------------------------- /python/satyaml/SMOG-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SMOG-1.yml -------------------------------------------------------------------------------- /python/satyaml/SMOG-P.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SMOG-P.yml -------------------------------------------------------------------------------- /python/satyaml/SNIPE-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SNIPE-1.yml -------------------------------------------------------------------------------- /python/satyaml/SNIPE-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SNIPE-2.yml -------------------------------------------------------------------------------- /python/satyaml/SNIPE-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SNIPE-3.yml -------------------------------------------------------------------------------- /python/satyaml/SNIPE-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SNIPE-4.yml -------------------------------------------------------------------------------- /python/satyaml/SNUGLITE-II.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SNUGLITE-II.yml -------------------------------------------------------------------------------- /python/satyaml/SNUGLITE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SNUGLITE.yml -------------------------------------------------------------------------------- /python/satyaml/SOAR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SOAR.yml -------------------------------------------------------------------------------- /python/satyaml/SOKRAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SOKRAT.yml -------------------------------------------------------------------------------- /python/satyaml/SOMP_2b.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SOMP_2b.yml -------------------------------------------------------------------------------- /python/satyaml/SONATE-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SONATE-2.yml -------------------------------------------------------------------------------- /python/satyaml/SPIRONE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SPIRONE.yml -------------------------------------------------------------------------------- /python/satyaml/SPOC.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SPOC.yml -------------------------------------------------------------------------------- /python/satyaml/SS-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SS-1.yml -------------------------------------------------------------------------------- /python/satyaml/SSS-2B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SSS-2B.yml -------------------------------------------------------------------------------- /python/satyaml/STECCO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/STECCO.yml -------------------------------------------------------------------------------- /python/satyaml/STRAND-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/STRAND-1.yml -------------------------------------------------------------------------------- /python/satyaml/STRATOSAT-TK1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/STRATOSAT-TK1.yml -------------------------------------------------------------------------------- /python/satyaml/SUCHAI-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SUCHAI-2.yml -------------------------------------------------------------------------------- /python/satyaml/SUCHAI-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SUCHAI-3.yml -------------------------------------------------------------------------------- /python/satyaml/SVYATOBOR-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SVYATOBOR-1.yml -------------------------------------------------------------------------------- /python/satyaml/SWSU-55-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SWSU-55-5.yml -------------------------------------------------------------------------------- /python/satyaml/SWSU-55-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SWSU-55-6.yml -------------------------------------------------------------------------------- /python/satyaml/SWSU-55-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SWSU-55-7.yml -------------------------------------------------------------------------------- /python/satyaml/SWSU-55-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SWSU-55-8.yml -------------------------------------------------------------------------------- /python/satyaml/SanoSat-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SanoSat-1.yml -------------------------------------------------------------------------------- /python/satyaml/SelfieSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SelfieSat.yml -------------------------------------------------------------------------------- /python/satyaml/Shaonian_Xing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Shaonian_Xing.yml -------------------------------------------------------------------------------- /python/satyaml/Sharjahsat-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Sharjahsat-1.yml -------------------------------------------------------------------------------- /python/satyaml/SiriusSat-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SiriusSat-1.yml -------------------------------------------------------------------------------- /python/satyaml/SiriusSat-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SiriusSat-2.yml -------------------------------------------------------------------------------- /python/satyaml/SpeiSat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SpeiSat.yml -------------------------------------------------------------------------------- /python/satyaml/SpooQy-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SpooQy-1.yml -------------------------------------------------------------------------------- /python/satyaml/Suomi_100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Suomi_100.yml -------------------------------------------------------------------------------- /python/satyaml/SwampSat-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/SwampSat-2.yml -------------------------------------------------------------------------------- /python/satyaml/Swiatowid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Swiatowid.yml -------------------------------------------------------------------------------- /python/satyaml/TARGIT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TARGIT.yml -------------------------------------------------------------------------------- /python/satyaml/TAUSAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TAUSAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/TBEX-A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TBEX-A.yml -------------------------------------------------------------------------------- /python/satyaml/TBEX-B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TBEX-B.yml -------------------------------------------------------------------------------- /python/satyaml/TECHNOSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TECHNOSAT.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL-1.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL-2.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL-3.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL-4.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL-5.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL-6.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL-7.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL-8.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL2-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL2-1.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL2-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL2-2.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL2-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL2-3.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL2-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL2-4.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL2-5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL2-5.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL2-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL2-6.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL2-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL2-7.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL2-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL2-8.yml -------------------------------------------------------------------------------- /python/satyaml/TEVEL2-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TEVEL2-9.yml -------------------------------------------------------------------------------- /python/satyaml/TIGRISAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TIGRISAT.yml -------------------------------------------------------------------------------- /python/satyaml/TRISAT-R.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TRISAT-R.yml -------------------------------------------------------------------------------- /python/satyaml/TRISAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TRISAT.yml -------------------------------------------------------------------------------- /python/satyaml/TSURU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TSURU.yml -------------------------------------------------------------------------------- /python/satyaml/TTU-100.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TTU-100.yml -------------------------------------------------------------------------------- /python/satyaml/TUBIN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TUBIN.yml -------------------------------------------------------------------------------- /python/satyaml/TUMnanoSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TUMnanoSAT.yml -------------------------------------------------------------------------------- /python/satyaml/TUSUR-GO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TUSUR-GO.yml -------------------------------------------------------------------------------- /python/satyaml/TW-1A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TW-1A.yml -------------------------------------------------------------------------------- /python/satyaml/TW-1B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TW-1B.yml -------------------------------------------------------------------------------- /python/satyaml/TW-1C.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TW-1C.yml -------------------------------------------------------------------------------- /python/satyaml/TY-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TY-2.yml -------------------------------------------------------------------------------- /python/satyaml/TY-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TY-6.yml -------------------------------------------------------------------------------- /python/satyaml/TY_4-01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/TY_4-01.yml -------------------------------------------------------------------------------- /python/satyaml/Tanusha-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Tanusha-3.yml -------------------------------------------------------------------------------- /python/satyaml/Taurus-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Taurus-1.yml -------------------------------------------------------------------------------- /python/satyaml/UA01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UA01.yml -------------------------------------------------------------------------------- /python/satyaml/UBAKUSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UBAKUSAT.yml -------------------------------------------------------------------------------- /python/satyaml/UCLSAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UCLSAT.yml -------------------------------------------------------------------------------- /python/satyaml/UKube-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UKube-1.yml -------------------------------------------------------------------------------- /python/satyaml/UND_ROADS_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UND_ROADS_1.yml -------------------------------------------------------------------------------- /python/satyaml/UND_ROADS_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UND_ROADS_2.yml -------------------------------------------------------------------------------- /python/satyaml/UNISAT-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UNISAT-6.yml -------------------------------------------------------------------------------- /python/satyaml/UNISAT-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UNISAT-7.yml -------------------------------------------------------------------------------- /python/satyaml/UPMSat_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UPMSat_2.yml -------------------------------------------------------------------------------- /python/satyaml/URSA_MAIOR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/URSA_MAIOR.yml -------------------------------------------------------------------------------- /python/satyaml/US01.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/US01.yml -------------------------------------------------------------------------------- /python/satyaml/UTMN-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UTMN-2.yml -------------------------------------------------------------------------------- /python/satyaml/UTMN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UTMN.yml -------------------------------------------------------------------------------- /python/satyaml/UVSQ-SAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UVSQ-SAT.yml -------------------------------------------------------------------------------- /python/satyaml/UWE-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UWE-3.yml -------------------------------------------------------------------------------- /python/satyaml/UWE-4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UWE-4.yml -------------------------------------------------------------------------------- /python/satyaml/UmKA-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/UmKA-1.yml -------------------------------------------------------------------------------- /python/satyaml/VDNH-80.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/VDNH-80.yml -------------------------------------------------------------------------------- /python/satyaml/VELOX-AM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/VELOX-AM.yml -------------------------------------------------------------------------------- /python/satyaml/VERONIKA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/VERONIKA.yml -------------------------------------------------------------------------------- /python/satyaml/VIZARD-ION.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/VIZARD-ION.yml -------------------------------------------------------------------------------- /python/satyaml/VIZARD-METEO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/VIZARD-METEO.yml -------------------------------------------------------------------------------- /python/satyaml/VIZARD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/VIZARD.yml -------------------------------------------------------------------------------- /python/satyaml/VZLUSAT-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/VZLUSAT-2.yml -------------------------------------------------------------------------------- /python/satyaml/WS-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/WS-1.yml -------------------------------------------------------------------------------- /python/satyaml/X-CUBESAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/X-CUBESAT.yml -------------------------------------------------------------------------------- /python/satyaml/XW-2A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/XW-2A.yml -------------------------------------------------------------------------------- /python/satyaml/XW-2B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/XW-2B.yml -------------------------------------------------------------------------------- /python/satyaml/XW-2C.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/XW-2C.yml -------------------------------------------------------------------------------- /python/satyaml/XW-2D.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/XW-2D.yml -------------------------------------------------------------------------------- /python/satyaml/XW-2E.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/XW-2E.yml -------------------------------------------------------------------------------- /python/satyaml/XW-2F.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/XW-2F.yml -------------------------------------------------------------------------------- /python/satyaml/XW-3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/XW-3.yml -------------------------------------------------------------------------------- /python/satyaml/YUSAT-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/YUSAT-1.yml -------------------------------------------------------------------------------- /python/satyaml/ZACUBE-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ZACUBE-1.yml -------------------------------------------------------------------------------- /python/satyaml/ZIMSAT-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/ZIMSAT-2.yml -------------------------------------------------------------------------------- /python/satyaml/Zhou_Enlai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/Zhou_Enlai.yml -------------------------------------------------------------------------------- /python/satyaml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/__init__.py -------------------------------------------------------------------------------- /python/satyaml/al-Farabi-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/al-Farabi-2.yml -------------------------------------------------------------------------------- /python/satyaml/qa_satyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/qa_satyaml.py -------------------------------------------------------------------------------- /python/satyaml/satyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/satyaml/satyaml.py -------------------------------------------------------------------------------- /python/snet_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/snet_classifier.py -------------------------------------------------------------------------------- /python/snet_deframer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/snet_deframer.py -------------------------------------------------------------------------------- /python/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/submit.py -------------------------------------------------------------------------------- /python/swap_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/swap_crc.py -------------------------------------------------------------------------------- /python/swap_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/swap_header.py -------------------------------------------------------------------------------- /python/swiatowid_packet_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/swiatowid_packet_crop.py -------------------------------------------------------------------------------- /python/swiatowid_packet_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/swiatowid_packet_split.py -------------------------------------------------------------------------------- /python/sx12xx_check_crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/sx12xx_check_crc.py -------------------------------------------------------------------------------- /python/sx12xx_packet_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/sx12xx_packet_crop.py -------------------------------------------------------------------------------- /python/telemetry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/CMakeLists.txt -------------------------------------------------------------------------------- /python/telemetry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/__init__.py -------------------------------------------------------------------------------- /python/telemetry/aausat4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/aausat4.py -------------------------------------------------------------------------------- /python/telemetry/aepex_70cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/aepex_70cm.py -------------------------------------------------------------------------------- /python/telemetry/aepex_sw_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/aepex_sw_stat.py -------------------------------------------------------------------------------- /python/telemetry/amicalsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/amicalsat.py -------------------------------------------------------------------------------- /python/telemetry/asrtu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/asrtu.py -------------------------------------------------------------------------------- /python/telemetry/au03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/au03.py -------------------------------------------------------------------------------- /python/telemetry/ax25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/ax25.py -------------------------------------------------------------------------------- /python/telemetry/binar1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/binar1.py -------------------------------------------------------------------------------- /python/telemetry/by02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/by02.py -------------------------------------------------------------------------------- /python/telemetry/by70_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/by70_1.py -------------------------------------------------------------------------------- /python/telemetry/ccsds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/ccsds.py -------------------------------------------------------------------------------- /python/telemetry/cirbe_70cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/cirbe_70cm.py -------------------------------------------------------------------------------- /python/telemetry/cirbe_bct_soh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/cirbe_bct_soh.py -------------------------------------------------------------------------------- /python/telemetry/csp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/csp.py -------------------------------------------------------------------------------- /python/telemetry/ctim_70cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/ctim_70cm.py -------------------------------------------------------------------------------- /python/telemetry/cute_70cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/cute_70cm.py -------------------------------------------------------------------------------- /python/telemetry/cute_bct_fsw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/cute_bct_fsw.py -------------------------------------------------------------------------------- /python/telemetry/cute_bct_soh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/cute_bct_soh.py -------------------------------------------------------------------------------- /python/telemetry/cute_pld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/cute_pld.py -------------------------------------------------------------------------------- /python/telemetry/delfic3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/delfic3.py -------------------------------------------------------------------------------- /python/telemetry/delfipq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/delfipq.py -------------------------------------------------------------------------------- /python/telemetry/dstar_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/dstar_one.py -------------------------------------------------------------------------------- /python/telemetry/erminaz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/erminaz.py -------------------------------------------------------------------------------- /python/telemetry/eseo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/eseo.py -------------------------------------------------------------------------------- /python/telemetry/floripasat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/floripasat.py -------------------------------------------------------------------------------- /python/telemetry/fossasat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/fossasat.py -------------------------------------------------------------------------------- /python/telemetry/fossasat_1b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/fossasat_1b.py -------------------------------------------------------------------------------- /python/telemetry/fossasat_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/fossasat_2.py -------------------------------------------------------------------------------- /python/telemetry/funcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/funcube.py -------------------------------------------------------------------------------- /python/telemetry/gomx_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/gomx_1.py -------------------------------------------------------------------------------- /python/telemetry/gomx_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/gomx_3.py -------------------------------------------------------------------------------- /python/telemetry/inspiresat_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/inspiresat_1.py -------------------------------------------------------------------------------- /python/telemetry/kr01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/kr01.py -------------------------------------------------------------------------------- /python/telemetry/lume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/lume.py -------------------------------------------------------------------------------- /python/telemetry/mirsat1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/mirsat1.py -------------------------------------------------------------------------------- /python/telemetry/mysat1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/mysat1.py -------------------------------------------------------------------------------- /python/telemetry/nila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/nila.py -------------------------------------------------------------------------------- /python/telemetry/picsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/picsat.py -------------------------------------------------------------------------------- /python/telemetry/qa_by02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/qa_by02.py -------------------------------------------------------------------------------- /python/telemetry/qo100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/qo100.py -------------------------------------------------------------------------------- /python/telemetry/quetzal1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/quetzal1.py -------------------------------------------------------------------------------- /python/telemetry/sat_1kuns_pf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/sat_1kuns_pf.py -------------------------------------------------------------------------------- /python/telemetry/sat_3cat_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/sat_3cat_1.py -------------------------------------------------------------------------------- /python/telemetry/sat_3cat_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/sat_3cat_2.py -------------------------------------------------------------------------------- /python/telemetry/smogp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/smogp.py -------------------------------------------------------------------------------- /python/telemetry/snet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/snet.py -------------------------------------------------------------------------------- /python/telemetry/suomi100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/suomi100.py -------------------------------------------------------------------------------- /python/telemetry/trisat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/trisat.py -------------------------------------------------------------------------------- /python/telemetry/tubix20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/tubix20.py -------------------------------------------------------------------------------- /python/telemetry/upmsat_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/upmsat_2.py -------------------------------------------------------------------------------- /python/telemetry/vzlusat_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/telemetry/vzlusat_2.py -------------------------------------------------------------------------------- /python/tubix20_reframer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/tubix20_reframer.py -------------------------------------------------------------------------------- /python/usp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/usp/CMakeLists.txt -------------------------------------------------------------------------------- /python/usp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/usp/__init__.py -------------------------------------------------------------------------------- /python/usp/usp_ax25_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/usp/usp_ax25_crop.py -------------------------------------------------------------------------------- /python/usp/usp_pls_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/usp/usp_pls_crop.py -------------------------------------------------------------------------------- /python/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/utils/CMakeLists.txt -------------------------------------------------------------------------------- /python/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/utils/__init__.py -------------------------------------------------------------------------------- /python/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/utils/config.py -------------------------------------------------------------------------------- /python/utils/options_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/utils/options_block.py -------------------------------------------------------------------------------- /python/utils/satcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/python/utils/satcfg.py -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /satellite_teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/satellite_teams.md -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/test.sh -------------------------------------------------------------------------------- /tests/Lock in BPSK.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/Lock in BPSK.ipynb -------------------------------------------------------------------------------- /tests/Lock in FSK.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/Lock in FSK.ipynb -------------------------------------------------------------------------------- /tests/TED gain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/TED gain.ipynb -------------------------------------------------------------------------------- /tests/ber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/ber.py -------------------------------------------------------------------------------- /tests/ber_bpsk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/ber_bpsk.png -------------------------------------------------------------------------------- /tests/ber_fsk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/ber_fsk.png -------------------------------------------------------------------------------- /tests/lockin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/lockin.py -------------------------------------------------------------------------------- /tests/reed_solomon.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/reed_solomon.grc -------------------------------------------------------------------------------- /tests/ted-gain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/ted-gain/Makefile -------------------------------------------------------------------------------- /tests/ted-gain/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/ted-gain/test.cc -------------------------------------------------------------------------------- /tests/varlen_packet_block_qa.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tests/varlen_packet_block_qa.grc -------------------------------------------------------------------------------- /tools/waveform_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniestevez/gr-satellites/HEAD/tools/waveform_plot.py --------------------------------------------------------------------------------