Michigan Timber Auctions
Data on Timber Auctions from the Michigan Department of Natural Resources
@kaggle.erichschulman_michigan_timber_auctions
Data on Timber Auctions from the Michigan Department of Natural Resources
@kaggle.erichschulman_michigan_timber_auctions
I obtained this data from the Michigan Department of Natural Resource (MDoNR) website which is freely available and posted to an https server. This state agency is in charge of the management of state forests in Michigan. The MDoNR provides very detailed information concerning the timber, such as the various species in the lot, the volumes of each species, the percentage of saw timber and the minimum acceptable bid (the public reserve price).
For information on the datasets and analysis, see the corresponding github repository.
https://github.com/ericschulman/michigan_timber
CREATE TABLE mich_bids (
"unnamed_0" BIGINT -- Unnamed: 0,
"appraised_value_per_unit" DOUBLE,
"bid_open_date" TIMESTAMP,
"bid_open_location" VARCHAR,
"bid_open_time" VARCHAR,
"bid_per_unit" DOUBLE,
"bid_non_bid_species" VARCHAR,
"bidder_name" VARCHAR,
"estimated_volume" DOUBLE,
"highest" VARCHAR,
"no_bid_sale" VARCHAR,
"product" VARCHAR,
"sale" VARCHAR -- Sale #,
"sale_name" VARCHAR,
"species" VARCHAR,
"units" VARCHAR
);
CREATE TABLE mich_sales (
"unnamed_0" BIGINT -- Unnamed: 0,
"acres" DOUBLE,
"date" TIMESTAMP,
"date_1" TIMESTAMP,
"date_2" TIMESTAMP,
"expiration" BIGINT,
"length_days" BIGINT -- Length(days),
"purchaser_name" VARCHAR,
"received" DOUBLE,
"sale_name" VARCHAR,
"sale_number" BIGINT,
"seq" BIGINT,
"value" DOUBLE,
"volume" DOUBLE
);
Anyone who has the link will be able to view this.