Baselight

World Geographic And Climatic Dataset

Mega Cities, Mountain Ranges and Global Warming

@kaggle.madhurpant_world_geographic_and_climatic_dataset

Loading...
Loading...

About this Dataset

World Geographic And Climatic Dataset

1) capital_cities.csv:
  • continent
  • country
  • capital_city
  • capital_population
2) greenhouse_emission.csv:
  • country
  • total_co2
  • c02_per_capita
  • total_methane
  • methane_per_capita
3) mega_cities.csv:
  • mega_city
  • country
  • population
4) mountain_ranges.csv:
  • mountain_range
  • highest_mount
  • height
  • countries

Tables

Capital Cities

@kaggle.madhurpant_world_geographic_and_climatic_dataset.capital_cities
  • 10.49 kB
  • 240 rows
  • 4 columns
Loading...
CREATE TABLE capital_cities (
  "continent" VARCHAR,
  "country" VARCHAR,
  "capital_city" VARCHAR,
  "capital_population" BIGINT
);

Greenhouse Emission

@kaggle.madhurpant_world_geographic_and_climatic_dataset.greenhouse_emission
  • 8.14 kB
  • 102 rows
  • 5 columns
Loading...
CREATE TABLE greenhouse_emission (
  "country" VARCHAR,
  "total_co2" VARCHAR,
  "co2_per_capita" VARCHAR,
  "total_methane" VARCHAR,
  "methane_per_capita" VARCHAR
);

Mega Cities

@kaggle.madhurpant_world_geographic_and_climatic_dataset.mega_cities
  • 4.14 kB
  • 57 rows
  • 3 columns
Loading...
CREATE TABLE mega_cities (
  "mega_city" VARCHAR,
  "country" VARCHAR,
  "population" BIGINT
);

Mountain Ranges

@kaggle.madhurpant_world_geographic_and_climatic_dataset.mountain_ranges
  • 6.81 kB
  • 81 rows
  • 4 columns
Loading...
CREATE TABLE mountain_ranges (
  "mountain_range" VARCHAR,
  "highest_mount" VARCHAR,
  "height" BIGINT,
  "countries" VARCHAR
);

Share link

Anyone who has the link will be able to view this.