Skip to content

Commit

Permalink
On the way to v0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
i-zhivetiev committed Feb 10, 2018
1 parent bd753f7 commit 052ef13
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 41 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tec-suite v0.7.6
tec-suite v0.7.7
----------------

Software to reconstruct slant total electron content (TEC) value in
Expand Down Expand Up @@ -45,12 +45,12 @@ Just download and extract **tec-suite** archive wherever you want.
Downloads
~~~~~~~~~

* `Windows <https://github.com/gnss-lab/tec-suite/releases/download/v0.7.6/tec-suite-v0.7.6-win32.zip>`_
* `Windows <https://github.com/gnss-lab/tec-suite/releases/download/v0.7.7/tec-suite-v0.7.7-win32.zip>`_
* Linux: x86_32_ and x86_64_
* `macOS <https://github.com/gnss-lab/tec-suite/releases/download/v0.7.6/tec-suite-v0.7.6-macos.tgz>`_
* `macOS <https://github.com/gnss-lab/tec-suite/releases/download/v0.7.7/tec-suite-v0.7.7-macos.tgz>`_

.. _x86_32: https://github.com/gnss-lab/tec-suite/releases/download/v0.7.6/tec-suite-v0.7.6-linux32.tgz
.. _x86_64: https://github.com/gnss-lab/tec-suite/releases/download/v0.7.6/tec-suite-v0.7.6-linux64.tgz
.. _x86_32: https://github.com/gnss-lab/tec-suite/releases/download/v0.7.7/tec-suite-v0.7.7-linux32.tgz
.. _x86_64: https://github.com/gnss-lab/tec-suite/releases/download/v0.7.7/tec-suite-v0.7.7-linux64.tgz

Requirements
~~~~~~~~~~~~
Expand Down
20 changes: 5 additions & 15 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# tec-suite documentation build configuration file, created by
# sphinx-quickstart on Thu Oct 6 14:22:21 2016.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand All @@ -21,6 +9,8 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))

from tecs import version as tecs_version

# -- General configuration ------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
Expand Down Expand Up @@ -53,17 +43,17 @@

# General information about the project.
project = 'tec-suite'
copyright = '2017, Ilya Zhivetiev'
copyright = '2018, Ilya Zhivetiev'
author = 'Ilya Zhivetiev'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.7'
version = '.'.join(tecs_version.split('.')[:2])
# The full version, including alpha/beta/rc tags.
release = '0.7.6'
release = tecs_version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 4 additions & 4 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ Just download and extract **tec-suite** archive wherever you want.

Downloads:

* `Windows <https://github.com/gnss-lab/tec-suite/releases/download/v0.7.6/tec-suite-v0.7.6-win32.zip>`_
* `Windows <https://github.com/gnss-lab/tec-suite/releases/download/v0.7.7/tec-suite-v0.7.7-win32.zip>`_
* Linux: x86_32_ and x86_64_
* `macOS <https://github.com/gnss-lab/tec-suite/releases/download/v0.7.6/tec-suite-v0.7.6-macos.tgz>`_
* `macOS <https://github.com/gnss-lab/tec-suite/releases/download/v0.7.7/tec-suite-v0.7.7-macos.tgz>`_

.. _x86_32: https://github.com/gnss-lab/tec-suite/releases/download/v0.7.6/tec-suite-v0.7.6-linux32.tgz
.. _x86_64: https://github.com/gnss-lab/tec-suite/releases/download/v0.7.6/tec-suite-v0.7.6-linux64.tgz
.. _x86_32: https://github.com/gnss-lab/tec-suite/releases/download/v0.7.7/tec-suite-v0.7.7-linux32.tgz
.. _x86_64: https://github.com/gnss-lab/tec-suite/releases/download/v0.7.7/tec-suite-v0.7.7-linux64.tgz


************
Expand Down
4 changes: 3 additions & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ be written into an output file.
+------------+--------------------------------------------------------------------+
| tec.l1c1 | TEC value reconstructed using phase L1 and pseudorange C1 values |
+------------+--------------------------------------------------------------------+
| tec.l2c2 | TEC value reconstructed using phase L2 and pseudorange C2 values |
+------------+--------------------------------------------------------------------+

The following is the list of other fields which can be inserted
into ``recFields`` variable.
Expand All @@ -176,7 +178,7 @@ into ``recFields`` variable.
.. table:: The output fields list

+----------+-----------------------------------------------------------------------+
| Notation |Meaning |
| Notation | Meaning |
+==========+=======================================================================+
| *Date and time* |
+----------+-----------------------------------------------------------------------+
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
from codecs import open
from os import path

from tecs import version

here = path.abspath(path.dirname(__file__))

print(here)
Expand All @@ -18,7 +20,7 @@

setup(
name='tec-suite',
version='0.7.6',
version=version,

description='Reconstruct TEC value in the ionosphere using GNSS-data',
long_description=long_description,
Expand Down
2 changes: 2 additions & 0 deletions tecs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@
#
# You should have received a copy of the GNU General Public License
# along with tec-suite. If not, see <http://www.gnu.org/licenses/>.

version = 'v0.7.7'
25 changes: 10 additions & 15 deletions tecs/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,47 +26,42 @@
from __future__ import print_function
from __future__ import unicode_literals

from builtins import next
from builtins import str

import argparse
import logging
import os.path
import sys
import time
from builtins import next
from builtins import str

from tecs.rinex import obs_file
from tecs.rinex.nmutils import (
load_navigation_message,
select_navigation_message, NMError
)

from tecs import version
from tecs.gtb.tools import parse_rec

from tecs.label import OUT_FILE_TEXT
from tecs.rinex import obs_file
from tecs.rinex.basic import RinexError
from tecs.rinex.futils import (
UncompressError, RE_OBS, RE_XYZ, find_files,
find_xyz_file, load_xyz_file
)

from tecs.label import OUT_FILE_TEXT

from tecs.rinex.label import (
L1, L2, L5, P1, P2, C1, C5, C2, S1, S2, S5,
SAT_SYS_GLO, SAT_SYS_GEO, SAT_SYS_GPS,
SAT_SYS_MIX,
TIME_SYS_GPS, SAT_SYS_BDS, L6, L7, SAT_SYS_GAL,
C6, C7, LabelError
)

from tecs.rinex.nmutils import (
load_navigation_message,
select_navigation_message, NMError
)
from tecs.sat import gps, geo, glonass
from tecs.sat.common import compute_el_az, xyz2lbh_deg
from tecs.validity import eval_validity

START_TIME = time.time()

NAME = 'tecs'
VERSION = '0.7.6'
VERSION = version

# Command line arguments
ARG_PARSER = argparse.ArgumentParser()
Expand Down

0 comments on commit 052ef13

Please sign in to comment.