# Formati Ora

{% hint style="success" %}
Tutti i formati temporali (unità, intervalli di tempo, tempi di giro e unità di tempo doppie) possono essere convertiti liberamente tra loro
{% endhint %}

### Unità di Tempo Comuni

| Nome      | Simbolo | Definizione         |
| --------- | ------- | ------------------- |
| Seconda   | s, sec  | Unità base di tempo |
| Minuto    | min     | 60 secondi          |
| Ora       | h, hr   | 60 minuti           |
| Giorno    | day     | 24 ore              |
| Settimana | wk      | 7 giorni            |
| Mese      | mo      | 30.436875 giorni    |
| Anno      | yr      | 365.2425 giorni     |

### Intervalli di Tempo (Timespans)

Un intervallo di tempo è una quantità di tempo che visualizza componenti multiple (dal anno fino al secondo).

```
5.5 minuti come intervallo di tempo | 5 min 30 s
4.54 ore come intervallo di tempo  | 4 ore 32 minuti 24 secondi
72 giorni come intervallo di tempo     | 10 settimane 2 giorni
```

Gli intervalli di tempo possono essere espressi e formattati in vari modi.

<pre><code>3 ore 5 minuti 10 secondi             | 3 ore 5 minuti 10 secondi
<strong>3h 5m 10s    | 3 ore 5 minuti 10 secondi
</strong>
3h 5m 10s in secondi | 11,110 s
</code></pre>

### Tempi di Giro (Laptimes)

Un tempo di giro è una quantità di tempo nel formato HH:MM:SS.MS (ora:minuto:secondo.millisecondo), comunemente utilizzato dai cronometri.

```
5.5 minuti come tempo di giro | 00:05:30
```

È possibile eseguire calcoli con i tempi di giro:

```
03:04:05 + 01:02:03 | 04:06:08
00:12:05 − 00:04:09 | 00:07:56
```

{% hint style="info" %}
Un tempo di giro deve includere due due punti affinché Soulver possa distinguerlo da un orario.

Ad esempio, per specificare un tempo di giro di 1.5 secondi, usare 00:00:01.5
{% endhint %}

È possibile convertire tra tempi di giro e intervalli di tempo.

```
03:04:05 come intervallo di tempo                   | 3 ore 4 minuti 5 secondi
3 ore 4 minuti 5 secondi come tempo di giro | 03:04:05
```

### Unità di Tempo Doppie

```
12.5 minuti in minuti e secondi | 12 min 30 s
1.4 settimane in ore e minuti      | 235 ore 12 min
4.5 settimane in giorni e ore         | 31 giorni 12 ore
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.soulver.app/it/riferimento-sintassi/time/timespans-and-laptimes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
