# Conversion temporelle

## Convertir heures décimales en heure et en minutes

Astuces pour convertir des heures décimales en heure et en minutes.

{% hint style="info" %}
Exemple avec : 1,5, 2,4, 6,9 et 0,2
{% endhint %}

Pour une meilleure compréhension, nous utiliserons la partie entière en heures et la partie décimale après la virgule sera les minutes (vous devez multiplier par 60) :

**1,5** = 1 h + (0,5\*60) = 1 h + 30 min = **1 h 30 min**

**2,4** = 2 h + (0,4\*60) = 2 h + 24 min = **2 h 24 min**

**6,9** = 6 h + (0,9\*60) = 6 h + 54 min = **6 h 54 min**

**0,2** = 0 h + (0,2\*60) = 0 h + 12 min = **0 h 12 min**


---

# 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://wiki.chamallow.com/1.-technologie/articles/conversion-temporelle.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.
