# `Dicom.SR.Tcoord`
[🔗](https://github.com/Balneario-de-Cofrentes/dicom/blob/v0.9.1/lib/dicom/sr/tcoord.ex#L1)

Temporal coordinate reference for SR content items.

Defines a temporal region in a waveform or time series by specifying
a range type and one of: sample positions, time offsets, or datetime values.

# `t`

```elixir
@type t() :: %Dicom.SR.Tcoord{
  datetime_values: [String.t()],
  sample_positions: [pos_integer()],
  temporal_range_type: String.t(),
  time_offsets: [number()]
}
```

# `new`

```elixir
@spec new(
  String.t(),
  keyword()
) :: t()
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
