Skip to main content

Open-source quantum random coordinate generation for randonauts.

Project description

PyRandonaut

Python PRs Welcome

Open-source quantum random coordinate generation for randonauts ❤️

This is a Python3 module for generating quantum random coordinates. It interfaces with the QRNG, at The Australian National University where it gets a list of quantum random numbers, converts them to coordinates and then computes the gaussian kernel density estimate of those coordinates, similar to how an Attractor point is generated in Randonautica.

This gives you the ability to implement quantum random coordinates in your own applications. Just import pyrandonaut and off you go!

If you're unfamiliar with Randonautica, the concepts of Probability Blind-Spots and Quantum Randomness, I recommend reading fatum_theory.txt which shipped with the original Fatum Project bot that inspired Randonautica. This video gives a lot of great background info too. If you have no idea what any of this is about and is completely new to this, watch this video and/or read this article.

Contributions greatly appreciated!

Table of contents

Installation

The module requires at least Python 3.9 to function and can be installed using pip like so:
pip install pyrandonaut

That's it!

Usage

  • As module

    1. Import the module: import pyrandonaut
    2. You can now call the module functions, e.g.:
     # Define a starting point
     my_latitude = 51.178840902136464
     my_longitude = -1.8261452442305293
     
     # Call get_coordinate() with starting point values and store the result
     result = openrandonaut.get_coordinate(my_latitude, my_longitude)	
     # Print result to screen
     print(f"Go here to escape the stasis field: {result}")
    

    get_coordinate() will return a tuple with the calculated coordinate. By default it uses a radius of 5000 meters and a value of 1024 random points to base the calculation on. These values can be specified in the arguments.

    • Functions and arguments:
      • get_coordinate() is the main functionality of the library, generating a coordinate equivalent to an Attractor point in Randonautica. It takes the following arguments:

        • start_lat Latitude of starting position (float)
        • start_lon Longitude of starting position (float)
        • radius Max radius from starting position (integer)
        • num_points Number of random points to use in calculation of kernel density estimate (integer)

        It returns a tuple in the following format:
        (latitude, longitude)

      • random_location() Converts 2 floating point values to coordinates within the defined radius from the starting position. It takes the following arguments:

        • start_lat Latitude of starting position (float)
        • start_lon Longitude of starting position (float)
        • radius Max radius from starting position (integer)
        • rand_float_1 Random value to turn into X in coordinate
        • rand_float_2 Random value to turn into Y in coordinate

        It returns a tuple in the following format:
        (latitude, longitude)

  • Command-line interface

You can also run PyRandonaut directly in your terminal. Example:

$ python pyrandonaut.py 51.178840902136464 -1.8261452442305293
51.20545110291186, -1.824335160309919

Run the script with --help to see the options:

   $ python pyrandonaut.py --help                                                                                                                             
   usage: pyrandonaut.py [-h] [-r RADIUS] [-p POINTS] [-v] LATITUDE LONGITUDE
   
   This script interfaces with the Quantum Random Number Generator at the The Australian National University, where it gets a list of quantum random numbers, converts them to coordinates and computes the gaussian kernel density estimate of those coordinates, returning the point within the defined radius, where the density of random coordinates is highest, similar to how an Attractor point is calculated by Randonautica.
   
   positional arguments:
     LATITUDE    starting position latitude
     LONGITUDE   starting position longitude
   
   options:
     -h, --help  show this help message and exit
     -r RADIUS   max radius from starting position in meters
     -p POINTS   number of points to base KDE on (must be divisible by 1024)
     -v          verbose logging

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrandonaut-0.1.3.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

pyrandonaut-0.1.3-py3-none-any.whl (21.3 kB view details)

Uploaded Python 3

File details

Details for the file pyrandonaut-0.1.3.tar.gz.

File metadata

  • Download URL: pyrandonaut-0.1.3.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for pyrandonaut-0.1.3.tar.gz
Algorithm Hash digest
SHA256 0dc406faa751edaf44cf04161d5a1c52899e4b0448cbdcedc10e0465d8c00f70
MD5 d420f49ea172ff222c64cea8d36a1121
BLAKE2b-256 99ce4624c60f1cb84f8823d195ce4ecda494aba5792bcdd428d81dcc8202bbf7

See more details on using hashes here.

File details

Details for the file pyrandonaut-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: pyrandonaut-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 21.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for pyrandonaut-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d85e8fef8c9eb5a3905a384fb3588e5b1c7583cc4eaa8ffa18dff5a6db6aa941
MD5 d8588a05ace5b19c084f1f9e57cdf6e7
BLAKE2b-256 a1c4417a5776cd2ac20b99a1af662ac5ea52545f449c10490ba8b3ffe53e3dd2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page