|
--- |
|
license: mit |
|
--- |
|
|
|
Certainly! Here’s the dataset description in Markdown format: |
|
|
|
--- |
|
|
|
# All Universities in Turkey Dataset |
|
|
|
## Description |
|
This dataset contains detailed information about various universities. Each record represents a single university and includes attributes such as the university's name, type, city, website, address, logo URL, and a button for accessing additional details. This data is typically extracted from a web page listing universities. |
|
|
|
## Fields |
|
|
|
### 1. `id` |
|
- **Type**: String |
|
- **Description**: A unique identifier for the university, extracted from the `data-id` attribute in the HTML. This ID is used to identify the university in other related datasets or systems. |
|
- **Example**: `"173499"` |
|
|
|
### 2. `name` |
|
- **Type**: String |
|
- **Description**: The full name of the university, as displayed on the web page. This is the official name of the institution. |
|
- **Example**: `"ABDULLAH GÜL ÜNİVERSİTESİ"` |
|
|
|
### 3. `type` |
|
- **Type**: String |
|
- **Description**: The type of the university, such as whether it is a public (`Devlet`) or private (`Özel`) institution. |
|
- **Example**: `"Devlet"` |
|
|
|
### 4. `city` |
|
- **Type**: String |
|
- **Description**: The city where the university is located. |
|
- **Example**: `"Kayseri"` |
|
|
|
### 5. `website` |
|
- **Type**: String |
|
- **Description**: The official website URL of the university. This is a hyperlink that leads to the university's official website. |
|
- **Example**: `"http://www.agu.edu.tr"` |
|
|
|
### 6. `address` |
|
- **Type**: String |
|
- **Description**: The physical address of the university. This typically includes the street name, neighborhood, and city. |
|
- **Example**: `"Barbaros Mahallesi Sümer Kampüsü Kocasinan-KAYSERİ"` |
|
|
|
### 7. `logo` |
|
- **Type**: String (URL) |
|
- **Description**: The URL of the university's logo image. This link points to an image file representing the university's logo. |
|
- **Example**: `"assets/img/logo/173499.png"` |
|
|
|
### 8. `details_button` |
|
- **Type**: Object |
|
- **Description**: Information about the button used to access additional details about the university. |
|
- **`text`**: The text displayed on the button. |
|
- **Type**: String |
|
- **Example**: `"Üniversite Detayı"` |
|
- **`id`**: The HTML `id` attribute of the button. |
|
- **Type**: String |
|
- **Example**: `"uniDetay"` |
|
- **`modal_target`**: The target modal attribute, indicating the modal window that will open when the button is clicked. |
|
- **Type**: String |
|
- **Example**: `"#universiteModal"` |
|
|
|
--- |
|
|
|
This Markdown description provides a detailed overview of each field in the dataset, including type, description, and examples. |