Commit ·
d8b2c33
1
Parent(s): 6986d7c
add data description to README
Browse files
README.md
CHANGED
|
@@ -6,3 +6,46 @@ language:
|
|
| 6 |
# National Taiwan Normal University Course Catalog
|
| 7 |
|
| 8 |
Range: 109-1 ~ 112-1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
# National Taiwan Normal University Course Catalog
|
| 7 |
|
| 8 |
Range: 109-1 ~ 112-1
|
| 9 |
+
|
| 10 |
+
## Data
|
| 11 |
+
|
| 12 |
+
Each dataset is an array of objects, each object represents a course:
|
| 13 |
+
|
| 14 |
+
```ts
|
| 15 |
+
interface Course {
|
| 16 |
+
serial: number
|
| 17 |
+
code: string
|
| 18 |
+
name: string
|
| 19 |
+
ename: string
|
| 20 |
+
type: string
|
| 21 |
+
department: string
|
| 22 |
+
form: string
|
| 23 |
+
credit: number
|
| 24 |
+
duration: string
|
| 25 |
+
gu_domain: string
|
| 26 |
+
description: string
|
| 27 |
+
goals: [goal: string, capability: string][]
|
| 28 |
+
teacher: string[]
|
| 29 |
+
schedule: string
|
| 30 |
+
methods: [method: string, description: string][]
|
| 31 |
+
evaluations: [weight: number, type: string, description: string][]
|
| 32 |
+
material: string
|
| 33 |
+
enrollment: number
|
| 34 |
+
limit: number
|
| 35 |
+
schedules: {
|
| 36 |
+
day: number
|
| 37 |
+
period: [from: number, to: number]
|
| 38 |
+
location: string
|
| 39 |
+
classroom: string
|
| 40 |
+
}[]
|
| 41 |
+
programs: string[]
|
| 42 |
+
comment: string
|
| 43 |
+
restriction: string
|
| 44 |
+
}
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Copyright
|
| 48 |
+
|
| 49 |
+
The copyright is owned by National Taiwan Normal University.
|
| 50 |
+
|
| 51 |
+
Source: <https://courseap2.itc.ntnu.edu.tw/acadmOpenCourse/index.jsp>
|