Province
Search
K
Comment on page

Land Data

This is technical documentation intended for developers and data analysts.

Land Data

Field Descriptions

Id: string representation of plot_int
plot_int: integer representing the key of the land plot
owner: string - ethereum address starting in ‘0x’, 42 characters in length.
timestamp: Epoch time of the record entry in milliseconds
fertility: double - decimal from 0 to 1. No more than 3 decimal points
minerals: double - decimal from 0 to 1. No more than 3 decimal points
land_status: string (required)
The land status can be one of: "forest", "clearing", "building".
“building”: the land has a building placed on it. If building is provided, 1 of 5 buildings will be provided in the building_type field.
“clearing”: the land is currently being cleared. Should have a bulldozer / tractor displaying while the land is in this status.
“forest”: this is the natural / default state of the land before any changes have been made.
"cleared": land has been cleared, and is ready for a building.

building_type: int (required if land_status == "building")

The building_type is an integer of range 0-4 corresponding to a specific building.
1: Home 2. Lumber Mill 3. Warehouse 4. Grain Storage 5. Farm

Test Cases

landstatus == "forest" plot_int == 50
landstatus == "clearing" plot_int == 78
land_status == "building", building_type = 1 plot_int == 51
land_status == "building", buildingtype = 2 plot_int == 52
land_status == "building", buildingtype = 3 plot_int == 53
land_status == "building", buildingtype = 4 plot_int == 54
land_status == "building", buildingtype = 5 plot_int == 55
land_status == "cleared", plot_int == 56