-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
typo fixes and german function help update
- Loading branch information
Showing
13 changed files
with
77 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<h3>Funktion $scale</h3> | ||
Liefert den aktuellen Maßstab der Kartenanzeige. | ||
<br> | ||
Hinweis: Die Funktion ist nur in einigen Zusammenhängen verfügbar und sonst 0. | ||
<h4>Syntax</h4> | ||
<code>$scale</code><br> | ||
|
||
<h4>Beispiel</h4> | ||
<!-- Show example of function.--> | ||
<code>$scale → 10000</code><br> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<h3>Funktion coalesce()</h3> | ||
Liefert den ersten Wert, der nicht NULL ist, einer Ausdruckliste. | ||
<br> | ||
Diese Funktion kann beliebig viele Argumente haben. | ||
<h4>Syntax</h4> | ||
<code>coalesce(ausdruck1, ausdruck2...)</code><br> | ||
|
||
<h4>Argumente</h4> | ||
<code>ausdruck</code> - ein gültige Ausdruck jeden Typs | ||
<br> | ||
|
||
<h4>Beispiel</h4> | ||
<!-- Show example of function.--> | ||
<code>coalesce(NULL, 2) → 2</code><br> | ||
<code>coalesce(NULL, 2, 3) → 2</code><br> | ||
<code>coalesce(7, NULL, 3*2) → 7</code><br><br> | ||
<code>coalesce("attributA", "anderesFeld", 'FEHLER') → Wert des Attributs attributA falls es nicht NULL ist, | ||
sonst der Wert des Attributes "anderesFeld" oder die Zeichenkette 'FEHLER', wenn beide NULL sind.</code><br> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<h3>Funktion format_number()</h3> | ||
Liefert eine mit dem lokalen Tausendertrenner versehene Zahl zurück und | ||
beschränkt die Zahl auch auf die angegebene Anzahl von Nachkommastellen. | ||
<h4>Syntax</h4> | ||
<code>format_number(zahl,nachkommastellen)</code><br> | ||
|
||
<h4>Argumente</h4> | ||
<code>zahl</code> - ist Zahl. Die zu formatierende Zahl | ||
<br> | ||
<code>places</code> - ist Ganzzahl. Die Anzahl der Nachkommastellen. | ||
|
||
<h4>Beispiel</h4> | ||
<!-- Show example of function.--> | ||
<code>format_number(10000000.332,2) → 10.000.000,33</code> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<h3>Funktion round()</h3> | ||
Rundet eine Zahl auf eine gegebene Anzahl von Nachkommastellen. | ||
<br> | ||
Dies Funktion kann ein oder zwei Argumente haben. | ||
<h4>Syntax</h4> | ||
<code>round(zahl,stellen)</code><br> | ||
<code>round(zahl)</code><br> | ||
|
||
<h4>Argumente</h4> | ||
<code>zahl</code> - ist eine Zahl. Die Zahl die gerundet werden soll. | ||
<br> | ||
<code>stellen</code> - ist Ganzahl. Die Anzahl der Nachkommastellen auf die gerundet werden soll. Kann negativ sein. | ||
|
||
<h4>Beispiel</h4> | ||
<!-- Show example of function.--> | ||
<code>round(1234.567, 2) → 1234.57</code><br> | ||
Um zur nächsten ganzen Zahl zu runden: <code>round(zahl)</code><br> | ||
<code>round(1234.567) → 1235</code><br> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -458,3 +458,4 @@ vaild:valid | |
opps:oops | ||
arount:around | ||
acheive:achieve | ||
specifed:specified |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters