forked from floripasat/fsat-decoder
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from spacelab-ufsc/dev
Dev: Changing the software name to "SpaceLab Decoder" and version 0.2
- Loading branch information
Showing
14 changed files
with
109 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# FloripaSat Decoder | ||
# SpaceLab Decoder | ||
|
||
FloripaSat Packet Decoder | ||
SpaceLab Packet Decoder is a software to decode audio records from the satellites of SpaceLab. For now, this software is still under development and are not functional yet. | ||
|
||
## Satellites | ||
|
||
* FloripaSat-I (launched in December 2019) | ||
* GOLDS-UFSC (to be launched on 2021) |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,30 +3,30 @@ | |
# | ||
# setup.py | ||
# | ||
# Copyright (C) 2019, Universidade Federal de Santa Catarina | ||
# Copyright (C) 2020, Universidade Federal de Santa Catarina | ||
# | ||
# This file is part of FloripaSat-Decoder. | ||
# This file is part of SpaceLab-Decoder. | ||
# | ||
# FloripaSat-Decoder is free software; you can redistribute it | ||
# SpaceLab-Decoder is free software; you can redistribute it | ||
# and/or modify it under the terms of the GNU General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# FloripaSat-Decoder is distributed in the hope that it will be useful, | ||
# SpaceLab-Decoder is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public | ||
# License along with FloripaSat-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# License along with SpaceLab-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# | ||
|
||
__author__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__copyright__ = "Copyright (C) 2019, Universidade Federal de Santa Catarina" | ||
__copyright__ = "Copyright (C) 2020, Universidade Federal de Santa Catarina" | ||
__credits__ = ["Gabriel Mariano Marcelino - PU5GMA"] | ||
__license__ = "GPL3" | ||
__version__ = "0.1.12" | ||
__version__ = "0.2.0" | ||
__maintainer__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
@@ -38,15 +38,15 @@ | |
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name = "fsat-decoder", | ||
version = "0.1.0", | ||
name = "spacelab-decoder", | ||
version = "0.2.0", | ||
author = "Gabriel Mariano Marcelino", | ||
author_email = "[email protected]", | ||
description = "FloripaSat-I packet decoder", | ||
description = "SpaceLab packet decoder", | ||
long_description = long_description, | ||
long_description_content_type = "text/markdown", | ||
license = "GPLv3", | ||
url = "https://github.com/floripasat/fsat-decoder", | ||
url = "https://github.com/spacelab-ufsc/spacelab-decoder", | ||
packages = setuptools.find_packages(), | ||
install_requires = ['gi','scipy'], | ||
classifiers=[ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# | ||
# __init__.py | ||
# | ||
# Copyright (C) 2019, Universidade Federal de Santa Catarina | ||
# Copyright (C) 2020, Universidade Federal de Santa Catarina | ||
# | ||
# This file is part of FloripaSat-Decoder. | ||
# This file is part of SpaceLab-Decoder. | ||
# | ||
# FloripaSat-Decoder is free software; you can redistribute it | ||
# SpaceLab-Decoder is free software; you can redistribute it | ||
# and/or modify it under the terms of the GNU General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# FloripaSat-Decoder is distributed in the hope that it will be useful, | ||
# SpaceLab-Decoder is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public | ||
# License along with FloripaSat-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# License along with SpaceLab-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# | ||
|
||
__author__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__copyright__ = "Copyright (C) 2019, Universidade Federal de Santa Catarina" | ||
__copyright__ = "Copyright (C) 2020, Universidade Federal de Santa Catarina" | ||
__credits__ = ["Gabriel Mariano Marcelino - PU5GMA"] | ||
__license__ = "GPL3" | ||
__version__ = "0.1.12" | ||
__version__ = "0.2.0" | ||
__maintainer__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# | ||
# _version.py | ||
# | ||
# Copyright (C) 2019, Universidade Federal de Santa Catarina | ||
# Copyright (C) 2020, Universidade Federal de Santa Catarina | ||
# | ||
# This file is part of FloripaSat-Decoder. | ||
# | ||
# FloripaSat-Decoder is free software; you can redistribute it | ||
# SpaceLab-Decoder is free software; you can redistribute it | ||
# and/or modify it under the terms of the GNU General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# FloripaSat-Decoder is distributed in the hope that it will be useful, | ||
# SpaceLab-Decoder is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public | ||
# License along with FloripaSat-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# License along with SpaceLab-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# | ||
|
||
__author__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__copyright__ = "Copyright (C) 2019, Universidade Federal de Santa Catarina" | ||
__copyright__ = "Copyright (C) 2020, Universidade Federal de Santa Catarina" | ||
__credits__ = ["Gabriel Mariano Marcelino - PU5GMA"] | ||
__license__ = "GPL3" | ||
__version__ = "0.1.12" | ||
__version__ = "0.2.0" | ||
__maintainer__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# | ||
# beacon.py | ||
# | ||
# Copyright (C) 2019, Universidade Federal de Santa Catarina | ||
# Copyright (C) 2020, Universidade Federal de Santa Catarina | ||
# | ||
# This file is part of FloripaSat-Decoder. | ||
# This file is part of SpaceLab-Decoder. | ||
# | ||
# FloripaSat-Decoder is free software; you can redistribute it | ||
# SpaceLab-Decoder is free software; you can redistribute it | ||
# and/or modify it under the terms of the GNU General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# FloripaSat-Decoder is distributed in the hope that it will be useful, | ||
# SpaceLab-Decoder is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public | ||
# License along with FloripaSat-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# License along with SpaceLab-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# | ||
|
||
__author__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__copyright__ = "Copyright (C) 2019, Universidade Federal de Santa Catarina" | ||
__copyright__ = "Copyright (C) 2020, Universidade Federal de Santa Catarina" | ||
__credits__ = ["Gabriel Mariano Marcelino - PU5GMA"] | ||
__license__ = "GPL3" | ||
__version__ = "0.1.12" | ||
__version__ = "0.2.0" | ||
__maintainer__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
14 changes: 7 additions & 7 deletions
14
fsat-decoder/binary_slicer.py → spacelab-decoder/binary_slicer.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# | ||
# binary_slicer.py | ||
# | ||
# Copyright (C) 2019, Universidade Federal de Santa Catarina | ||
# Copyright (C) 2020, Universidade Federal de Santa Catarina | ||
# | ||
# This file is part of FloripaSat-Decoder. | ||
# This file is part of SpaceLab-Decoder. | ||
# | ||
# FloripaSat-Decoder is free software; you can redistribute it | ||
# SpaceLab-Decoder is free software; you can redistribute it | ||
# and/or modify it under the terms of the GNU General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# FloripaSat-Decoder is distributed in the hope that it will be useful, | ||
# SpaceLab-Decoder is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public | ||
# License along with FloripaSat-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# License along with SpaceLab-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# | ||
|
||
__author__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__copyright__ = "Copyright (C) 2019, Universidade Federal de Santa Catarina" | ||
__copyright__ = "Copyright (C) 2020, Universidade Federal de Santa Catarina" | ||
__credits__ = ["Gabriel Mariano Marcelino - PU5GMA"] | ||
__license__ = "GPL3" | ||
__version__ = "0.1.12" | ||
__version__ = "0.2.0" | ||
__maintainer__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
14 changes: 7 additions & 7 deletions
14
fsat-decoder/bit_buffer.py → spacelab-decoder/bit_buffer.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# | ||
# bit_buffer.py | ||
# | ||
# Copyright (C) 2019, Universidade Federal de Santa Catarina | ||
# Copyright (C) 2020, Universidade Federal de Santa Catarina | ||
# | ||
# This file is part of FloripaSat-Decoder. | ||
# This file is part of SpaceLab-Decoder. | ||
# | ||
# FloripaSat-Decoder is free software; you can redistribute it | ||
# SpaceLab-Decoder is free software; you can redistribute it | ||
# and/or modify it under the terms of the GNU General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# FloripaSat-Decoder is distributed in the hope that it will be useful, | ||
# SpaceLab-Decoder is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public | ||
# License along with FloripaSat-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# License along with SpaceLab-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# | ||
|
||
__author__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__copyright__ = "Copyright (C) 2019, Universidade Federal de Santa Catarina" | ||
__copyright__ = "Copyright (C) 2020, Universidade Federal de Santa Catarina" | ||
__credits__ = ["Gabriel Mariano Marcelino - PU5GMA"] | ||
__license__ = "GPL3" | ||
__version__ = "0.1.12" | ||
__version__ = "0.2.0" | ||
__maintainer__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
14 changes: 7 additions & 7 deletions
14
fsat-decoder/byte_buffer.py → spacelab-decoder/byte_buffer.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# | ||
# byte_buffer.py | ||
# | ||
# Copyright (C) 2019, Universidade Federal de Santa Catarina | ||
# Copyright (C) 2020, Universidade Federal de Santa Catarina | ||
# | ||
# This file is part of FloripaSat-Decoder. | ||
# This file is part of SpaceLab-Decoder. | ||
# | ||
# FloripaSat-Decoder is free software; you can redistribute it | ||
# SpaceLab-Decoder is free software; you can redistribute it | ||
# and/or modify it under the terms of the GNU General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# FloripaSat-Decoder is distributed in the hope that it will be useful, | ||
# SpaceLab-Decoder is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public | ||
# License along with FloripaSat-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# License along with SpaceLab-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# | ||
|
||
__author__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__copyright__ = "Copyright (C) 2019, Universidade Federal de Santa Catarina" | ||
__copyright__ = "Copyright (C) 2020, Universidade Federal de Santa Catarina" | ||
__credits__ = ["Gabriel Mariano Marcelino - PU5GMA"] | ||
__license__ = "GPL3" | ||
__version__ = "0.1.12" | ||
__version__ = "0.2.0" | ||
__maintainer__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
14 changes: 7 additions & 7 deletions
14
fsat-decoder/clock_recovery_mm.py → spacelab-decoder/clock_recovery_mm.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# | ||
# clock_recovery_mm.py | ||
# | ||
# Copyright (C) 2019, Universidade Federal de Santa Catarina | ||
# Copyright (C) 2020, Universidade Federal de Santa Catarina | ||
# | ||
# This file is part of FloripaSat-Decoder. | ||
# This file is part of SpaceLab-Decoder. | ||
# | ||
# FloripaSat-Decoder is free software; you can redistribute it | ||
# SpaceLab-Decoder is free software; you can redistribute it | ||
# and/or modify it under the terms of the GNU General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# FloripaSat-Decoder is distributed in the hope that it will be useful, | ||
# SpaceLab-Decoder is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public | ||
# License along with FloripaSat-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# License along with SpaceLab-Decoder; if not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# | ||
|
||
__author__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__copyright__ = "Copyright (C) 2019, Universidade Federal de Santa Catarina" | ||
__copyright__ = "Copyright (C) 2020, Universidade Federal de Santa Catarina" | ||
__credits__ = ["Gabriel Mariano Marcelino - PU5GMA"] | ||
__license__ = "GPL3" | ||
__version__ = "0.1.12" | ||
__version__ = "0.2.0" | ||
__maintainer__ = "Gabriel Mariano Marcelino - PU5GMA" | ||
__email__ = "[email protected]" | ||
__status__ = "Development" | ||
|
Oops, something went wrong.