Skip to main content

This is spherical_histogram.

Project description

TestStatus PyPiStatus BlackStyle BlackPackStyle MITLicenseBadge

Histograms directions into a hemisphere with bins of roughly the same solid angle.

FigExampleWithCherenkovLight

An example histogram of the sky down to zenith distance of 70``deg`` showing the Cherenkov emission of an atmospheric shower with millions of photon directions in it.

Install

pip install spherical_histogram

Usage

First a HemisphereHistogram histogram is initialized. When providing general parameters for the desired binning such as num_vertices and max_zenith_distance_rad, the geometry of the hemisphere will be made on the fly using a Fibonacci spacing.

import spherical_histogram
import numpy as np

hist = spherical_histogram.HemisphereHistogram(
    num_vertices=200,
    max_zenith_distance_rad=np.deg2rad(90),
)

HemisphereGrid

A Fibonacci spaced mesh of triangles which defines the bins of the histogram.

FigSolidAngleDistribution

Distribution of solid angles in the upper mesh. The triangles have similar zizes. Outliers are mostly caused by the hard cut on the zenith distance.

Or by defining the binning explicitly using a triangle mesh with vertices and faces.

import spherical_histogram

geom = spherical_histogram.geometry.HemisphereGeometry(
    vertices=[[0, 0, 1], [0, 0.02, 1], [0.02, 0, 1]],
    faces=[[0, 1, 2]],
)

hist = spherical_histogram.HemisphereHistogram(bin_geometry=geom)

Afer initializing, we can histogram directions. This can be done multiple times with any of the three options

Azimuth and zenith angle

hist.assign_azimuth_zenith(azimuth_rad=0.2, zenith_rad=0.1)

The direction vector’s x and y components

hist.assign_cx_cy(cx=0.3, cy=0.2)

Or with the full direction vector (x, y, and z).

hist.assign_cx_cy_cz(cx=0.2, cy=0.3, cz=np.sqrt(1 - 0.2 ** 2 - 0.3 ** 2))

After all directions where assigned to the histogram, the result is found in

hist.bin_counts

and in

hist.overflow

where overflow counts all the directions which could not be assigned to a bin and bin_counts is an array with one bount for each face in the hemispherical mesh of triangles.

The assign functions accept both scalar and array like parameters for an easy numpy integration. When the directions are assignes in array like parameters the loop for the assignment happens in the underlying c implementation and is rather fast and efficient.

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

spherical_histogram-0.1.5.tar.gz (12.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

spherical_histogram-0.1.5-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

Details for the file spherical_histogram-0.1.5.tar.gz.

File metadata

  • Download URL: spherical_histogram-0.1.5.tar.gz
  • Upload date:
  • Size: 12.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for spherical_histogram-0.1.5.tar.gz
Algorithm Hash digest
SHA256 0cfa3845a806db0d21c53bccffc12d7a5f1c133aafa117c99d27de5f63830132
MD5 10e4a527571ea1774cfa00d9f3aa1415
BLAKE2b-256 f5d1dd1ce528e4e088e47f420eb3672089d3eb3f6392696e9185c81976db6d37

See more details on using hashes here.

File details

Details for the file spherical_histogram-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for spherical_histogram-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 5b6f68c496307245436ca202c50851e5f13eab2c58ac0c8916c588c6fa79b73b
MD5 2d6e9541add54ea8d34501769619b88f
BLAKE2b-256 41631d48d43224795b1e71fc16018b66848cbee74d763906deb7557b033e1573

See more details on using hashes here.

Supported by

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