Skip to main content

A Python lib for Solar Feature Tracking

Project description

SoFT: A Feature Tracking Suite for Solar Physics

Small-scale magnetic elements are vital in the energetic balance of the Sun’s atmosphere. These structures cover the entire solar surface and understanding their dynamics can address longstanding questions such as coronal heating and solar wind acceleration. SoFT: Solar Feature Tracking is a novel feature tracking routine built in Python, designed for reliable detection and fast associations.

Detection and Identification: The Watershed Algorithm

The detection phase in SoFT involves:

  1. Threshold Masking: Mask out pixels below a given threshold to reduce the impact of noise.
  2. Local Maxima Detection: Identify peaks separated by a user-defined minimum distance.
  3. Euclidean Distance Transform (EDT): Compute the shortest distance from each non-zero pixel to the background.
  4. Watershed Segmentation: Use local maxima as markers and segment the image based on the EDT gradient field.

Association

Features are matched across frames:

  1. Forward Check: Examine the overlap between feature M in frame n (M(n)) and all features in frame n+1 occupying the same pixels.
  2. Backward Check: Verify the overlap between feature M in frame n+1 and features in frame n.
  3. Matching: If M(n) and M(n+1) select each other, they are successfully matched.

To enable parallel processing, frames are paired and condensed into cubes. This reverse bisection condensation continues iteratively until one cube remains with all features properly associated.

Tabulation

After association, the physical properties of magnetic structures are estimated and compiled:

  • Barycenters: Calculated by averaging pixel coordinates weighted by intensity for sub-pixel accuracy.
  • Area: Determined by counting pixels within the feature's contour.
  • Magnetic Flux: Summed from pixel intensities.
  • Velocity: Derived from the first-order derivative of barycenter positions.
  • and many other

Further details regarding the SoFT tracking code and its performance can be found in [TBD].

Installation

Clone the repository and install the required dependencies:

git clone https://github.com/mib-unitn/SoFT.git
cd SoFT
pip install .

or

pip install solar_ft

Usage

If you plan to use SoFT in your research or publications, please make sure to cite the corresponding paper: [TBD].

import soft.soft as st
import os

#Set the path to the data
datapath = "path/to/data/"  # Path to the folder containing the "00-data" directory, which should include all the frames in single .fits files.
cores = os.cpu_count() # Sets the number of cores to be used. It will always be selected the minimum between the number of cores available and the number of frames in the data.


#Set the parameters for the detection and identification
l_thr =  #Intensity threshold[Gauss] (float)
m_size =  #Minimum size in pixels (int)
dx =  #Km (pixel size of the instrument) (float)
dt = #seconds (temporal cadence of the instrument) (float)
min_dist = # minimum required distance between two local maxima. (int)
sign = "both" # Can be "positive", "negative" or "both, defines the polarity of the features to be tracked (str)
separation = True  # If True, the detection method selected is "fine", if False, the detection method selected is "coarse". Check the paper for more details on the detection methods (bool)
verbose=False #If True, the code will print a more detailed output of the tracking process (bool)
doppler=False # If True, SoFT will also estimate the line-of-sight velocity within the detected features from separate dopplergram files in the 00b-data folder (bool)


st.track_all(datapath, cores, min_dist, l_thr, m_size, dx, dt, sign, separation, verbose, doppler)

M. Berretti wishes to acknowledge that SoFT could also be interpreted as "So' Francesco Totti" and it's totally ok with it.

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

solar_ft-1.0.2.tar.gz (35.7 kB view details)

Uploaded Source

Built Distribution

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

solar_ft-1.0.2-py3-none-any.whl (38.2 kB view details)

Uploaded Python 3

File details

Details for the file solar_ft-1.0.2.tar.gz.

File metadata

  • Download URL: solar_ft-1.0.2.tar.gz
  • Upload date:
  • Size: 35.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.0

File hashes

Hashes for solar_ft-1.0.2.tar.gz
Algorithm Hash digest
SHA256 9b15205e2dff0ca18df983e373cd38044cb7dc9c41fe4da140320ff25bc209fe
MD5 077f01766d79bde6323d3eb757e19a03
BLAKE2b-256 88a0915d35d5ca3aeed15e4beb05e811d4c4d32610bb426fe55768fbcf44ee4c

See more details on using hashes here.

File details

Details for the file solar_ft-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: solar_ft-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 38.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.0

File hashes

Hashes for solar_ft-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d6b018aa566dd4d4c72ea90f1388f67641481e6d877d3a97a4b2ddc0949a4d55
MD5 47662c231cf24ad47327d612573a6d4b
BLAKE2b-256 3208bf77e99f7227e4a67ccaec93de086a3de0e4bda39df004806e36c4dae737

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