Skip to content

Commit

Permalink
Merge pull request #2 from spacelab-ufsc/dev
Browse files Browse the repository at this point in the history
Dev: Changing the software name to "SpaceLab Decoder" and version 0.2
  • Loading branch information
mgm8 authored Jun 24, 2020
2 parents 31a4f1c + ca7024c commit 989f71a
Show file tree
Hide file tree
Showing 14 changed files with 109 additions and 104 deletions.
9 changes: 7 additions & 2 deletions README.md
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 removed fsat-decoder/icon/fsat_decoder_256x256.png
Binary file not shown.
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "gabriel.mm8@gmail.com"
__status__ = "Development"
Expand All @@ -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 = "gabriel.mm8@gmail.com",
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=[
Expand Down
14 changes: 7 additions & 7 deletions fsat-decoder/__init__.py → spacelab-decoder/__init__.py
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__ = "gabriel.mm8@gmail.com"
__status__ = "Development"
Expand Down
12 changes: 6 additions & 6 deletions fsat-decoder/_version.py → spacelab-decoder/_version.py
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__ = "gabriel.mm8@gmail.com"
__status__ = "Development"
Expand Down
14 changes: 7 additions & 7 deletions fsat-decoder/beacon.py → spacelab-decoder/beacon.py
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__ = "gabriel.mm8@gmail.com"
__status__ = "Development"
Expand Down
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__ = "gabriel.mm8@gmail.com"
__status__ = "Development"
Expand Down
14 changes: 7 additions & 7 deletions fsat-decoder/bit_buffer.py → spacelab-decoder/bit_buffer.py
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__ = "gabriel.mm8@gmail.com"
__status__ = "Development"
Expand Down
14 changes: 7 additions & 7 deletions fsat-decoder/byte_buffer.py → spacelab-decoder/byte_buffer.py
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__ = "gabriel.mm8@gmail.com"
__status__ = "Development"
Expand Down
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__ = "gabriel.mm8@gmail.com"
__status__ = "Development"
Expand Down
Loading

0 comments on commit 989f71a

Please sign in to comment.