You can use _get_utc_local_offset_ or _set_utc_local_offset_ public methods to get or set it.
#### Timezones sites
### Converting timezone
You can use _ts2utc(ts)_ and _utc2ts(ts)_ methods to convert timestamps from utc to a specific and from a specific timezone or utc. (_utc2ts(ts)_ is currently under construction).
### Converting offset
You can use offset_seconds2string(offset_seconds)_ and utc_string2seconds(offset_string)_ methods to convert offsets from seconds to string and from string to seconds.
### Timezones sites
Some timezones sites can help you to determine tour timezone.
*[24timezones](https://24timezones.com/);
*[Time.is](https://time.is/time_zones)
*[Time_zone](https://en.wikipedia.org/wiki/Time_zone) on Wikipedia.
### Reference epoch
## Reference epoch
the reference epoch of the AaaaHorodatage class stored in _epoch_ class attribute
Default is 1900. Range: 0 <= _epoch_ <= 9999.
...
...
@@ -36,7 +43,7 @@ You can use _get_epoch_ or _set_epoch_ class methods to get or set it.
Please, be consistent with yourself! e.g., you must encode and decode the same timestamp with the same epoch; or the results will be incoherent. It's why this method is a class method.
Remember this: The only way to know what is the reference epoch of a time stamp, is to remember it.