Difference between revisions of "Nookipedia:Project Database"

From Nookipedia, the Animal Crossing wiki
m (→‎List of tables: Bold link)
Line 71: Line 71:
 
| {{Table cell| Yes}}
 
| {{Table cell| Yes}}
 
| Missing rarity data (common name for rarity percentages has to be determined).
 
| Missing rarity data (common name for rarity percentages has to be determined).
 +
|-
 +
| villager
 +
| {{SER}} villagers
 +
| {{Table cell|Green}}
 +
| {{Table cell| Yes}}
 +
| -
 +
|-
 +
| nh_villager
 +
| {{NH}} villagers (using in villager endpoint)
 +
| {{Table cell|Green}}
 +
| {{Table cell| Yes}}
 +
| -
 
|}
 
|}
  

Revision as of 13:56, August 26, 2020

Tom Nook NH Character Icon.png
This project is led by SuperHamster.
As the leader, SuperHamster directs the project and its objectives. You can contact them directly on their talk page to discuss the project.
Tom Nook NH Character Icon.png
This project is led by SuperHamster.
As the leader, SuperHamster directs the project and its objectives. You can contact them directly on their talk page to discuss the project.


Welcome to Project Database, the Nookipedia Project dedicated to establishing and maintaining a database covering the Animal Crossing series.

Cargo

Nookipedia uses Cargo, a MediaWiki extension that provides a way to store data from templates into a database. This means that we can define data about a subject in just one location, and then re-use it across the wiki through querying. It also enables external users to re-use our data, through the MediaWiki API, api.nookipedia.com, and other services.

Basics

On the wiki, editors can interact with Cargo through parser functions:

  • #cargo_declare - Defines the schema for a table. Placed within the noinclude part of a template.
  • #cargo_store - Stores one row of data to a Cargo table. Placed within the include part of a template.
  • #cargo_query - Queries Cargo data tables, using SQL components.
  • #cargo_attach - Defines a template as adding rows to a table declared elsewhere.
  • #cargo_compound_query - displays the results of multiple queries in one place.

For full usage documentation, see mw:Extension:Cargo/Storing data and mw:Extension:Cargo/Querying data.

Best practices

  • All table and column names should be completely lowercase, with words being separated by an underscore.
  • All table and column names should be singular, not plural. An exception is when a column's values are lists (e.g. a column that holds arrays of materials may be called materials).
  • Column names that refer to the same data should generally be consistent between tables, especially for the same "category" of tables.
    • For example, our item tables refer to the width and length of items as width and length, while our critter tables refer to these values as tank_width and tank_length. The reason for the difference is to clarify that the width of a critter refers to its tank size, and not the critter itself. The important thing here is that the column names are consistent between all item tables across all games, and all critter tables across all games.
  • Values should be plain text (no HTML or wikitext), unless that column is explicitly being used for display.
    • This is so that the data can be queried elsewhere (on both the wiki and externally) without having to worry about formatting issues.
    • Example 1: nh_furniture has columns buy1_price, buy1_currency, and buy1_wikitext. The first two hold an integer and string respectively; the last one holds the value inside of Template:Currency, for easy reference on the wiki.
    • Example 2: In Template:NHFishInfo, the catchphrase parameter stores the catchphrase as a normal string, while catchphrase-display stores the catchphrase with any included HTML. The nh_fish Cargo table stores the former, while the template displays the latter.

List of tables

Lloid NH.png
This article or section is in the process of an expansion or major restructuring.
You are welcome to assist in its construction by editing it as well. If this article or section has not been edited in several days, please remove this template.
Lloid NH.png
This article or section is in the process of an expansion or major restructuring.
You are welcome to assist in its construction by editing it as well. If this article or section has not been edited in several days, please remove this template.

A full up-to-date list of tables (and their associated declare/attachment templates) is available at Special:CargoTables.

The following table lists tables, descriptions, and their status. Note that this table is manually updated,

Green Production: This table's structure is finalized, and has been fully populated with data. It can reliably be used for querying on-wiki or externally.
Yellow Beta: This table is approaching completion. Structure is near finalized, and/or nearly all data has been populated.
Gray Dev: This table is brand new. Columns may be added, removed, or changed, and/or is still missing a lot of data.
Table Description Status API [nb 1] Notes
nh_fish Animal Crossing: New Horizons fish Green Yes Missing rarity data (common name for rarity percentages has to be determined).
nh_bug Animal Crossing: New Horizons fish Green Yes Missing rarity data (common name for rarity percentages has to be determined).
nh_sea_creature Animal Crossing: New Horizons sea creatures Green Yes Missing rarity data (common name for rarity percentages has to be determined).
villager Animal Crossing series villagers Green Yes -
nh_villager Animal Crossing: New Horizons villagers (using in villager endpoint) Green Yes -

Helpful links

General

Inputting data

Retrieving data

Notes

  1. A check in the API column indicates that the table is queried via api.nookipedia.com