Seterra Speedrun Leaderboards Dataset
Collection of speedrun leaderboards for Seterra
@kaggle.asaniczka_seterra_speedrun_leaderboards_dataset
Collection of speedrun leaderboards for Seterra
@kaggle.asaniczka_seterra_speedrun_leaderboards_dataset
This dataset provides a comprehensive collection of speedrun leaderboards for the game Seterra from the popular speedrunning website Speedrun.com.
It includes both gamewide category leaderboards and level-specific category leaderboards.
With this dataset, you can explore various aspects of the Seterra speedrunning community, such as fastest completion times, verified runs, timing types, platforms used, player information, and more.
If you find this dataset valuable, don't forget to hit the upvote button! 😊💝
There are 2 main types of leaderboards.
Per level leaderboards are futher divided into different categories. Depending on the game, there maybe multiple categories for each level and each category will contain it's own leaderboard.
place
column refers to the players rank in that leaderboard
CREATE TABLE seterraold (
"run_id" VARCHAR,
"player_id" VARCHAR,
"place" BIGINT,
"speedrun_time" DOUBLE,
"is_verified" BOOLEAN,
"verify_date" TIMESTAMP,
"submitted_date" TIMESTAMP,
"examiner_id" VARCHAR,
"timing_type" VARCHAR,
"platform_id" VARCHAR,
"platform_name" VARCHAR,
"platform_released_year" BIGINT,
"is_level_cat" BOOLEAN,
"level_id" VARCHAR,
"level_name" VARCHAR,
"level_rules" VARCHAR,
"game_id" VARCHAR,
"category_id" VARCHAR,
"cat_name" VARCHAR,
"cat_rules" VARCHAR,
"player_name" VARCHAR,
"player_country" VARCHAR,
"player_pronouns" VARCHAR,
"player_signup_date" TIMESTAMP
);
Anyone who has the link will be able to view this.