ricker_wavelet2d-1.0.0

Two dimensional Ricker Wavelet model.

Description

Two dimensional Ricker Wavelet model.

Outline

Schema Definitions

This node must validate against all of the following:

  • This type is an object with the following properties:

    • amplitude

      objectRequired

      Amplitude.

      This node must validate against any of the following:

    • x_0

      objectRequired

      x position of the peak.

      This node must validate against any of the following:

    • y_0

      objectRequired

      y position of the peak.

      This node must validate against any of the following:

    • sigma

      objectRequired

      Width of the Ricker wavelet.

      This node must validate against any of the following:

Examples

\[f(x)={10.0\left(1-\frac{\left(x-0.5\right)^{2}-(y-1.5)^2}{2.0^{2}}\right)e^{-\frac{\left(x-0.5\right)^{2}-(y-1.5)^2)}{2*2.0^{2}}}}\]
!transform/ricker_wavelet2d-1.0.0 {amplitude: 10.0, sigma: 2.0, x_0: 0.5, y_0: 1.5}

Original Schema

%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "http://stsci.edu/schemas/asdf/transform/ricker_wavelet2d-1.0.0"
title: >
  Two dimensional Ricker Wavelet model.

description: >
  Two dimensional Ricker Wavelet model.

examples:
  -
    - $$f(x)={10.0\left(1-\frac{\left(x-0.5\right)^{2}-(y-1.5)^2}{2.0^{2}}\right)e^{-\frac{\left(x-0.5\right)^{2}-(y-1.5)^2)}{2*2.0^{2}}}}$$
    - |
      !transform/ricker_wavelet2d-1.0.0 {amplitude: 10.0, sigma: 2.0, x_0: 0.5, y_0: 1.5}

allOf:
  - $ref: "transform-1.2.0"
  - type: object
    properties:
      amplitude:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: Amplitude.
      x_0:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: x position of the peak.
      y_0:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: y position of the peak.
      sigma:
        anyOf:
          - $ref: "../unit/quantity-1.1.0"
          - type: number
        description: Width of the Ricker wavelet.

    required: ['amplitude', 'x_0', 'y_0', 'sigma']
...