Giter Club home page Giter Club logo

kiwiclient's Introduction

KiwiClient

This is a Python client for KiwiSDR. It allows you to:

  • Receive data streams with audio samples, IQ samples, and waterfall data
  • Issue commands to the KiwiSDR

Dependencies

Make sure the Python package 'numpy' is installed. On many Linux distributions the command would be similar to 'apt install python-numpy'

Demo code

The following demo programs are provided to you to play with:

  • kiwirecorder: record audio to WAV files, with squelch
  • kiwifax: decode radiofax and save as PNGs, with auto start, stop, and phasing

IS0KYB micro tools

Two utilities have been added to simplify the waterfall data acquisition/storage and data analysis. The SNR ratio (a la Pierre Ynard) is computed each time. There is now the possibility to change zoom level and offset frequency (this is still approximate! waiting for jks help ;) )

  • microkiwi_waterfall.py: launch this program with no filename and just the SNR will be computed, with a filename, the raw waterfall data is saved. Launch with --help to list all options.
  • waterfall_data_analysis.ipynb: this is a demo jupyther notebook to interactively analyze waterfall data. Easily transformable into a standalone python program.

The data is, at the moment, transferred in uncompressed format. I'll add soon the ADPCM decode routines.

Guide to the code

kiwiclient.py

Base class for receiving websocket data from a KiwiSDR. It provides the following methods which can be used in derived classes:

  • _process_audio_samples(self, seq, samples, rssi): audio samples
  • _process_iq_samples(self, seq, samples, rssi, gps): IQ samples
  • _process_waterfall_samples(self, seq, samples): waterfall data

kiwirecorder.py

  • Can record audio data, IQ samples, and waterfall data (work in progress).
  • The complete list of options can be obtained by python kiwirecorder.py --help.
  • It is possible to record from more than one KiwiSDR simultaneously, see again --help.
  • For recording IQ samples there is the -w or --kiwi-wav option: this write a .wav file which includes GNSS timestamps (see below).

IQ .wav files with GNSS timestamps

kiwirecorder.py configuration

  • Use the option -m iq --kiwi-wav --station=[name] for recording IQ samples with GNSS time stamps.
  • The resulting .wav files contains non-standard WAV chunks with GNSS timestamps.
  • If a directory with name gnss_pos/ exists, a text file gnss_pos/[name].txt will be created which contains latitude and longitude as provided by the KiwiSDR; existing files are overwritten.

Working with the recorded .wav files

  • There is an octave extension for reading such WAV files, see read_kiwi_wav.cc where the details of the non-standard WAV chunk can be found; it needs to be compiled in this way mkoctfile read_kiwi_wav.cc.
  • For using read_kiwi_wav an octave function proc_kiwi_iq_wav.m is provided; type help proc_kiwi_iq_wav in octave for documentation.

kiwiclient's People

Contributors

jks-prv avatar dev-zzo avatar hcab14 avatar mcogoni avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.