From 3dde0e2d3ac094c042e9267c10b6e52168f1674b Mon Sep 17 00:00:00 2001 From: FedorSarafanov Date: Sat, 23 Apr 2022 20:16:19 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D1=82=D0=B0=D1=80=D1=82=D0=BE=D0=B2?= =?UTF-8?q?=D1=8B=D0=B9=20=D0=BA=D0=BE=D0=BC=D0=BC=D0=B8=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 85 +++++++++++++------------------------------------------ 1 file changed, 20 insertions(+), 65 deletions(-) diff --git a/README.md b/README.md index 6153b40..e093067 100644 --- a/README.md +++ b/README.md @@ -1,75 +1,30 @@ -python_example -============== - -[![Gitter][gitter-badge]][gitter-link] - -| CI | status | -|----------------------|--------| -| Linux/macOS Travis | [![Travis-CI][travis-badge]][travis-link] | -| MSVC 2015 | [![AppVeyor][appveyor-badge]][appveyor-link] | -| conda.recipe | [![Conda Actions Status][actions-conda-badge]][actions-conda-link] | -| pip builds | [![Pip Actions Status][actions-pip-badge]][actions-pip-link] | -| [`cibuildwheel`][] | [![Wheels Actions Status][actions-wheels-badge]][actions-wheels-link] | - -[gitter-badge]: https://badges.gitter.im/pybind/Lobby.svg -[gitter-link]: https://gitter.im/pybind/Lobby -[actions-badge]: https://github.com/pybind/python_example/workflows/Tests/badge.svg -[actions-conda-link]: https://github.com/pybind/python_example/actions?query=workflow%3A%22Conda -[actions-conda-badge]: https://github.com/pybind/python_example/workflows/Conda/badge.svg -[actions-pip-link]: https://github.com/pybind/python_example/actions?query=workflow%3A%22Pip -[actions-pip-badge]: https://github.com/pybind/python_example/workflows/Pip/badge.svg -[actions-wheels-link]: https://github.com/pybind/python_example/actions?query=workflow%3AWheels -[actions-wheels-badge]: https://github.com/pybind/python_example/workflows/Wheels/badge.svg -[travis-link]: https://travis-ci.org/pybind/python_example -[travis-badge]: https://travis-ci.org/pybind/python_example.svg?branch=master&status=passed -[appveyor-link]: https://ci.appveyor.com/project/wjakob/python-example - -[appveyor-badge]: https://travis-ci.org/pybind/python_example.svg?branch=master&status=passed - -An example project built with [pybind11](https://github.com/pybind/pybind11). -This requires Python 3.6+; for older versions of Python, check the commit -history. - Installation ------------ - clone this repository - - `pip install ./python_example` - -CI Examples ------------ - -There are examples for CI in `.github/workflows`. A simple way to produces -binary "wheels" for all platforms is illustrated in the "wheels.yml" file, -using [`cibuildwheel`][]. You can also see a basic recipe for building and -testing in `pip.yml`, and `conda.yml` has an example of a conda recipe build. + - change directory to folder `stormpci_bin_reader` + - run shell command `pip install .` -Building the documentation --------------------------- - -Documentation for the example project is generated using Sphinx. Sphinx has the -ability to automatically inspect the signatures and documentation strings in -the extension module to generate beautiful documentation in a variety formats. -The following command generates HTML-based reference documentation; for other -formats please refer to the Sphinx manual: - - - `cd python_example/docs` - - `make html` - -License -------- - -pybind11 is provided under a BSD-style license that can be found in the LICENSE -file. By using, distributing, or contributing to this project, you agree to the -terms and conditions of this license. - Test call --------- -```python -import python_example -python_example.add(1, 2) -``` +Need binary file from new LDN system for tests. -[`cibuildwheel`]: https://cibuildwheel.readthedocs.io +```python +from stormpci_bin_reader import StrikeReader + +sr = StrikeReader("2022-04-23-00:00:37.bin") +strikes = sr.read_all_strikes() + +for strike in strikes: + lts2 = strike.strike.lts2_data + print( + lts2.year, + lts2.month, + lts2.day, + lts2.hours, + lts2.minutes, + lts2.seconds + lts2.TS_time / lts2.TS_Osc, + ) +``` \ No newline at end of file