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.6.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.6-py3-none-any.whl (13.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for spherical_histogram-0.1.6.tar.gz
Algorithm Hash digest
SHA256 f0f6a1fad9c29194739dbf960db0011fe016fe49b2aefe28ba8a623a171accef
MD5 6cbb14a357a36852c4d58386b6acd23e
BLAKE2b-256 43a3b62d8b851db51d4db11187bf210445cee3662ecd216bc4edf11bf7e3cc0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spherical_histogram-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 2276061b4923744986f1568a49d15b97a29feae17181ef585ce70bdc0031ceb2
MD5 59375464a61a4020df78be2458905bd8
BLAKE2b-256 1347f367a826f94ee3676054dfa1a483f582f1834e5dd1ed452eb592514a15a9

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