cheminfo / nmrium

React component to display and process nuclear magnetic resonance (NMR) spectra.
https://docs.nmrium.org
MIT License
55 stars 26 forks source link

Migration of 1D apodization filter #3266

Closed lpatiny closed 1 week ago

lpatiny commented 1 month ago

There is a new format for apodization parameters

@jobo322

{
  "sineBell": {
    "apply": true, //false if the shape should be ignored
    "shape": {
      "kind": "sineBell",
      "options": {
        "exponent": 2,
        "offset": 0 //0.5 for cosine
      }
    }
  },
  "exponential": {
    "apply": true, //false if the shape should be ignored
    "shape": {
      "kind": "exponential",
      "options": {
        "lb": 1
      }
    }
  }
}
lpatiny commented 1 month ago

@jobo322