♟️
zarr
  • Zarr Cloud Data Conversion
  • AI Ready Checklist
  • AI
  • Preprocessing
    • Indexing Public Bucket
    • Raw Data
    • Time Convention
    • Bottom Detection L0
    • Xarray
    • Zarr
    • Uncalibrated Data
    • Boto3 Notes
    • Dask
    • Geospatial Indexing
    • Regrid & Interpolate
  • Cloud
    • Lambda
      • Delete Folder PDS Bucket
      • Indexing Lambda
      • Raw To Zarr Lambda
    • CloudWatch Filter Pattern
    • Processing Power
    • SNS SQS
    • Dead Letter Queue SNS DLQ
    • Billing Estimate
  • Analysis
    • Calculating Sv Mean
    • Dimension Reduction
    • Plotting
    • Colab Notebooks
    • Experimental
    • Segment Anything
  • Web
    • Colors
  • Ideas
  • Reading
  • Mapping
  • Notes
  • Datasets
  • Echopype
    • Echopype
Powered by GitBook
On this page

Was this helpful?

  1. Analysis

Calculating Sv Mean

Calculations are performed in the linear domain not the decibel domain.

LogoSv_mean

ds_Sv = np.array([-30, -50])
da_Sv = 10 ** (ds_Sv / 10)
10 * np.log10(da_Sv.mean())
# -32.967086218813385
PreviousAnalysisNextDimension Reduction

Last updated 1 year ago

Was this helpful?