sem |
---|
This version encodes the semester following some internal JMU standard whose documentation I cannot find where the semester is represented as a 4-digit integer in base 10 with:
0
for 1900
and 1
for 2000
For example, Fall 2025 semester is 1258
:
The only issue is that course code has too many digits, so we drop the leading digit representing the millennium
(Fall 2025
is then 258
).
sem |
---|