Agricultural Land (% Of Land Area)
Gapminder datapoints for 'agricultural_land_percent_of_land_area'
@gapminder.agricultural_land_percent_of_land_area
Gapminder datapoints for 'agricultural_land_percent_of_land_area'
@gapminder.agricultural_land_percent_of_land_area
Agricultural land refers to the share of land area that is arable, under permanent crops, and under permanent pastures. Arable land includes land defined by the FAO as land under temporary crops (double-cropped areas are counted once), temporary meadows for mowing or for pasture, land under market or kitchen gardens, and land temporarily fallow. Land abandoned as a result of shifting cultivation is excluded. Land under permanent crops is land cultivated with crops that occupy the land for long periods and need not be replanted after each harvest, such as cocoa, coffee, and rubber. This category includes land under flowering shrubs, fruit trees, nut trees, and vines, but excludes land under trees grown for wood or timber. Permanent pasture is land used for five or more years for forage, including natural and cultivated crops.
HOW TO JOIN WITH METADATA
• Concepts (labels/units)
– Use the concept id agricultural_land_percent_of_land_area
to look up labels and units in @gapminder.metadata.concepts.
SELECT * FROM @gapminder.metadata.concepts WHERE concept = 'agricultural_land_percent_of_land_area'
.
• Countries and names
– Join your datapoints on geo to @gapminder.metadata.entities_geo_country to get readable country/area names
(e.g., name
) and membership attributes such as world_4region
, income_groups
.
• Regions and other group labels
– After you have a region code from the country table (e.g., world_4region
),
you can join to:
· @gapminder.metadata.entities_geo_world_4region on world_4region
→ region names/colors/shapes
· @gapminder.metadata.entities_geo_world_6region on world_6region
→ region names
· @gapminder.metadata.entities_geo_income_groups on income_groups
→ income group names
Example:
SELECT d.time,
c.name AS country,
d.agricultural_land_percent_of_land_area AS value
FROM @gapminder.agricultural_land_percent_of_land_area.agricultural_land_percent_of_land_area_by_geo_time d
LEFT JOIN @gapminder.metadata.entities_geo_country c ON d.geo = c.country;
CREATE TABLE agricultural_land_percent_of_land_area_by_geo_time (
"geo" VARCHAR,
"time" BIGINT,
"agricultural_land_percent_of_land_area" DOUBLE
);
Anyone who has the link will be able to view this.