hfpytrace¶
Package
Package bootstrap and PHaRLAP library initialization helpers.
Key Methods¶
Function ensure_pharlap_lib()
API¶
hfpytrace
¶
hfpytrace — HF ray-tracing toolkit.
This package provides Python wrappers and utilities for high-frequency (HF) ionospheric ray-tracing using the PHaRLAP MATLAB library, together with ionospheric electron density models (IRI, SAMI3, WACCM-X, GEMINI, GITM, WAM-IPE), collision frequency computation (NRLMSISE-00), geomagnetic grids (IGRF via PyIRI), and ray-homing solvers.
Bootstrap behaviour¶
On import the package checks for, and optionally downloads, the PHaRLAP
MATLAB helper library into ~/.hfpytrace/pharlap_lib/. Automatic
download is disabled by default; set HFPYTRACE_AUTO_BOOTSTRAP=1 to
enable it, or call :func:ensure_pharlap_lib explicitly.
Environment variables¶
HFPYTRACE_CACHE_DIR
Override the default cache root (default ~/.hfpytrace).
HFPYTRACE_AUTO_BOOTSTRAP
Set to 1, true, or yes to download PHaRLAP automatically.
HFPYTRACE_SKIP_PHARLAP_DOWNLOAD
Set to 1, true, or yes to suppress any download attempt.
HFPYTRACE_PHARLAP_ARCHIVE_URLS
Comma-separated list of archive URLs to try instead of the defaults.
Public API¶
ensure_pharlap_lib()
Download PHaRLAP library if absent (skipped when HFPYTRACE_SKIP_PHARLAP_DOWNLOAD set).
bootstrap_pharlap_lib()
Conditional wrapper called at import time.
HomingConfig, HomingResult, Homing2D, Homing3D
Lazily imported from :mod:hfpytrace.homing.
__getattr__(name)
¶
Lazy import of homing classes — keeps bootstrap side-effect free.
Source code in hfpytrace/__init__.py
ensure_pharlap_lib()
¶
Ensure the PHaRLAP library is present in the local cache.
Checks PHARLAP_LIB_PATH for any pharlap_* subdirectory. If none
is found and HFPYTRACE_SKIP_PHARLAP_DOWNLOAD is not set, the archive
is downloaded from GitHub and extracted.
Returns¶
Path Path to the pharlap_lib cache directory.
Raises¶
RuntimeError If all download candidates fail.
Source code in hfpytrace/__init__.py
bootstrap_pharlap_lib()
¶
Optional import-time bootstrap hook.
Enabled only when HFPYTRACE_AUTO_BOOTSTRAP=1|true|yes is set.
Source code in hfpytrace/__init__.py
Source Code¶
| hfpytrace/__init__.py | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | |