Skip to content

Commit a560197

Browse files
committed
Renamed master -> main
2 parents 58baea7 + a736cd1 commit a560197

File tree

11 files changed

+4924
-8
lines changed

11 files changed

+4924
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.1
2+
current_version = 1.1.2
33
commit = True
44
tag = True
55

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11

22
Changelog
33
=========
4+
1.1.2 (2022-09-25)
5+
------------------
6+
7+
* Added support for Sensornet Sentinel v5 files.
8+
9+
410
1.1.1 (2022-09-25)
511
------------------
612

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ doi: "10.5281/zenodo.1410097"
2222
license: "BSD-3-Clause"
2323
repository-code: "https://github.com/dtscalibration/python-dts-calibration"
2424
title: "Python distributed temperature sensing calibration"
25-
version: "v1.1.1"
25+
version: "v1.1.2"
2626
url: "https://python-dts-calibration.readthedocs.io"

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Overview
2929
:alt: PyPI Package latest release
3030
:target: https://pypi.python.org/pypi/dtscalibration
3131

32-
.. |commits-since| image:: https://img.shields.io/github/commits-since/dtscalibration/python-dts-calibration/v1.1.1.svg
32+
.. |commits-since| image:: https://img.shields.io/github/commits-since/dtscalibration/python-dts-calibration/v1.1.2.svg
3333
:alt: Commits since latest release
3434
:target: https://github.com/dtscalibration/python-dts-calibration/compare/v1.1.1...main
3535

@@ -86,7 +86,7 @@ Package features
8686
Devices currently supported
8787
===========================
8888
* Silixa Ltd.: **Ultima** & **XT-DTS** .xml files *(up to version 8.1)*
89-
* Sensornet Ltd.: **Oryx** & **Halo** .ddf files
89+
* Sensornet Ltd.: **Oryx**, **Halo** & **Sentinel** .ddf files
9090
* AP Sensing: **CP320** .xml files *(single ended only)*
9191
* SensorTran: **SensorTran 5100** .dat binary files *(single ended only)*
9292

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
year = str(date.today().year)
4242
author = 'Bas des Tombe and Bart Schilperoort'
4343
copyright = '{0}, {1}'.format(year, author)
44-
version = release = '1.1.1'
44+
version = release = '1.1.2'
4545

4646
pygments_style = 'trac'
4747
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_authors(file='AUTHORS.rst'):
3333

3434
setup(
3535
name='dtscalibration',
36-
version='1.1.1',
36+
version='1.1.2',
3737
license='BSD 3-Clause License',
3838
description='A Python package to load raw DTS files, perform a '
3939
'calibration, and plot the result',

src/dtscalibration/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .plot import plot_residuals_reference_sections_single
1919
from .plot import plot_sigma_report
2020

21-
__version__ = '1.1.1'
21+
__version__ = '1.1.2'
2222
__all__ = [
2323
"DataStore", "open_datastore", "open_mf_datastore", "read_apsensing_files",
2424
"read_sensornet_files", "read_sensortran_files", "read_silixa_files",

src/dtscalibration/datastore.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5743,13 +5743,15 @@ def read_sensornet_files(
57435743

57445744
valid_versions = [
57455745
'Halo DTS v1*', 'ORYX F/W v1.02 Oryx Data Collector v3*',
5746-
'ORYX F/W v4.00 Oryx Data Collector v3*']
5746+
'ORYX F/W v4.00 Oryx Data Collector v3*', "Sentinel DTS v5*"]
57475747

57485748
valid = any([fnmatch.fnmatch(ddf_version, v_) for v_ in valid_versions])
57495749

57505750
if valid:
57515751
if fnmatch.fnmatch(ddf_version, 'Halo DTS v1*'):
57525752
flip_reverse_measurements = True
5753+
elif fnmatch.fnmatch(ddf_version, "Sentinel DTS v5*"):
5754+
flip_reverse_measurements = True
57535755
else:
57545756
flip_reverse_measurements = False
57555757

tests/data/sensornet_sentinel_v5.1_double/channel 7 20180101 001 00001.ddf

Lines changed: 2446 additions & 0 deletions
Large diffs are not rendered by default.

tests/data/sensornet_sentinel_v5.1_double/channel 7 20180101 001 00002.ddf

Lines changed: 2446 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)