add keywords for all nodes

This commit is contained in:
2026-04-04 14:58:56 -07:00
parent 69f1d1bebd
commit a0d3b22f18
195 changed files with 437 additions and 198 deletions

View File

@@ -27,10 +27,12 @@ class LogPolarPSDF:
DESCRIPTION = (
"Compute the power spectral density function in log-polar coordinates. "
"The x-axis is the azimuthal angle (0360°) and y-axis is log(frequency). "
"The x-axis is the azimuthal angle (0-360°) and y-axis is log(frequency). "
"Better than Cartesian PSDF for anisotropy analysis. "
)
KEYWORDS = ("power spectrum", "azimuthal", "anisotropy", "directional", "fourier")
def process(self, field: DataField, n_phi: int, n_r: int) -> tuple:
data = np.asarray(field.data, dtype=np.float64)
yres, xres = data.shape