-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
57 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Attribute Types | ||
|
||
The Spacialist provides a big variety of different attribute types that can be used inside your [Data Model](/user/data-model). | ||
Named versions of those *Attribute Types* are used to populate the [Entity Types](./entity-type). | ||
|
||
In the next section we'll introduce all available attribute types, what they are used for and how the import data has to be formatted. | ||
|
||
|
||
## Boolean | ||
|
||
Used for single checkbox to represent the binary values `true`and `false`. | ||
|
||
### Import Format | ||
|
||
When importing only truthy values will be considered. When cells are empty those are considered as `false`. | ||
|
||
The values that are considered true are: | ||
|
||
- `x` | ||
- `t` or `true` | ||
- `w` or `wahr` | ||
- [numeric values](https://www.php.net/manual/de/function.is-numeric.php) > 0 | ||
|
||
### Date | ||
|
||
Represents a single date attribute, that is rendered with a default calender input field in the application. | ||
|
||
## Import Format | ||
|
||
It only accepts dates in the format `YYYY-MM-DD`: e.g. `2024-10-30` | ||
|
||
|
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,3 @@ | ||
# Attribute | ||
|
||
An attribute is a certain implementation of an Attribute in combination with a [Dictionary Label](./thesaurex). |
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,5 @@ | ||
# Data Importer | ||
|
||
The data importer is used to import already existing data to the spacialist software using CSV files. | ||
As there are many different non-trivial [Attribute Types](./attribute-types) supported, which require the data to be formatted properly | ||
Visit the [Attribute Types](./attribute-types) page to get an overview of all attribute types and their respective import format. |
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,3 @@ | ||
# Data Model | ||
|
||
The *Data Model* is contains all the _blueprints_ (in Spacialist: [Entity Types](/data/entity-type.md)) for the data you want to collect. |
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
# Entity Type | ||
|
||
An *Entity Type* is like the blueprint of one of your data objects. In the [Data Model Editor](./data-model) you design multiple *Entity Types* to fit your projects needs. You should make sure to include all relevant [Attributes](./attribute) |
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,5 @@ | ||
# Dictionary (Thesaurus) | ||
|
||
Spacialist comes with a companion software - Thesaurex - which is responsible for managing a project-driven, centralized, standardized, multilingual, hierarchical vocabulary. | ||
|
||
This vocabulary is used for [attribute labels](./attribute) and dropdown lists. |