This is an old revision of the document!
Swatch Internet Time / .beat Time
<fs xx-large>
Wikipedia has an article all about Swatch Time!
</WRAP>
===== How does it work? =====
It divides the day into 1000 “beats”. Instead of using hours, minutes, and seconds to represent time, Swatch Internet Time uses a single decimal number ranging from 000 to 999. Each beat is equivalent to 1 minute and 26.4 seconds. Sometimes you'll also see some extra numbers like “.56” that are microbeats and are similar to seconds.
Swatch time is usually preceded by an @ symbol; this helps you know it's swatch time and not some random number! For example @123 or @542.69
000 in Swatch time is the same as Midnight UTC+1; but because swatch time does not use timezones, midnight will be different for everyone. The goal of swatch time is not to provide the relative time you can use in your daily life; it's for worldwide events that all need to happen at the same time!
===== How can I use swatch time in my life? =====
Easy; just use swatch time when you are planning your events or meetups and get your friends to do the same! There are even some apps that can help you!
Swatch Time Apps for various platforms:
* All Apple devices, including Apple Watch - BeatTime
* Android Phones - Swatch .beat clock, Swatch Time
* Pebble Smart Watches - See Beat apps
* macOS Menubar - dotbeat
* GNOME Extension - Swatch Clock
* Cinnamon Applet - Internet Time
* Win 95/XP - iBeat, Works with Wine and OS's running Windows 7+ as well, not guaranteed to work in the year 2038
* Winamp & WaCUP - Big Clock, Comes bundled with every copy of WaCUP (and Winamp, I think?), Right click on the big clock, then click on .beat time
* iPad - Beat: Internet time
* Color - RGBeat, changes color depending on what time it is, in beat; Melon, Unick
===== Other useful links! =====
* Swatch time discussion thread on our forum!
* The Swatch intro video from 1998
* Swatch Time History on Wikipedia
* Decimal Time on Wikipedia https://en.wikipedia.org/wiki/Decimal_time
—-
===== Code Snippets =====
You can also include a swatch clock on your website; here are some premade code snippets you can use!
==== JavaScript: ====
JavaScript - Easy Option
Here is a premade JavaScript clock for your website! Just paste this code onto your page wherever you want your clock to be and it will work!
<code>
@000
<script defer src=“https://melonking.net/scripts/swatchTime.js”></script>
</code>
JavaScript - Full Code
<code>
Returns the current Swatch beat
function GetSwatchTime(showDecimals = true) {
get date in UTC/GMT
var date = new Date();
var hours = date.getUTCHours();
var minutes = date.getUTCMinutes();
var seconds = date.getUTCSeconds();
var milliseconds = date.getUTCMilliseconds();
add hour to get time in Switzerland
hours = hours == 23 ? 0 : hours + 1;
time in seconds
var timeInMilliseconds = 1)