US Tennis Courts
Tennis Courts in the US
@kaggle.thedevastator_us_tennis_courts_capacity_and_amenities
Tennis Courts in the US
@kaggle.thedevastator_us_tennis_courts_capacity_and_amenities
Looking for a place to play tennis? Look no further than this dataset on tennis courts in the United States! This dataset includes information on the capacity and amenities of each court, making it easy to find the perfect court for your needs.
How to use this dataset
This dataset can be used to find tennis courts in the United States with information on capacity and amenities. The data can be used to find the number of courts, type of court, and other amenities at each location
- Analyzing the distribution of tennis courts across the United States
- Determining which states have the most tennis courts per capita
- Identifying which amenities are most common at tennis courts across the country
License
> License: Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
> - You are free to:
> - Share - copy and redistribute the material in any medium or format for any purpose, even commercially.
> - Adapt - remix, transform, and build upon the material for any purpose, even commercially.
> - You must:
> - Give appropriate credit - Provide a link to the license, and indicate if changes were made.
> - ShareAlike - You must distribute your contributions under the same license as the original.
File: tennis_courts.csv
| Column name | Description |
|---|---|
| name | The name of the tennis court. (String) |
| address | The address of the tennis court. (String) |
| city | The city the tennis court is located in. (String) |
| state | The state the tennis court is located in. (String) |
| zip_code | The zip code of the tennis court. (String) |
| type | The type of tennis court. (String) |
| count | The number of tennis courts of this type in the area. (Integer) |
| clay | Whether or not the tennis court has a clay surface. (Boolean) |
| wall | Whether or not the tennis court has a wall. (Boolean) |
| grass | Whether or not the tennis court has a grass surface. (Boolean) |
| indoor | Whether or not the tennis court is indoors. (Boolean) |
| lights | Whether or not the tennis court has lights. (Boolean) |
| proshop | Whether or not the tennis court has a pro shop. (Boolean) |
| latitude | The latitude of the tennis court. (Float) |
| longitude | The longitude of the tennis court. (Float) |
CREATE TABLE tennis_courts (
"index" BIGINT,
"name" VARCHAR,
"address" VARCHAR,
"city" VARCHAR,
"state" DOUBLE,
"zip_code" VARCHAR,
"type" BIGINT,
"count" BOOLEAN,
"clay" BOOLEAN,
"wall" BOOLEAN,
"grass" BOOLEAN,
"indoor" BOOLEAN,
"lights" BOOLEAN,
"proshop" DOUBLE,
"latitude" DOUBLE,
"longitude" VARCHAR
);Anyone who has the link will be able to view this.