saturn·

waterfalls waterfalls worldwide

source /home/coolhand/html/datavis/data_trove/data/geographic/waterfalls/waterfalls_worldwide.json 80,678 rows 9 columns profiled 2026-05-01 raw JSON static .html .ipynb Report Notebook

Reading

dataset summary · high confidence anthropic:claude-opus-4-7

This dataset catalogues 80,678 waterfalls worldwide, sourced entirely from OpenStreetMap with latitude/longitude coordinates and minimal descriptive metadata. The most striking feature is how sparse the descriptive fields are: 'category' and 'source' are constant, 'date' and 'country' are essentially empty (country is blank for 80,650 of 80,678 rows), and 89.9% of 'description' entries are simply 'Waterfall'. The 'name' field is similarly thin — 'Unnamed Waterfall' accounts for 48,168 rows and the duplicate rate is 65.7%. The real analytical signal lives in the geographic coordinates, where latitude skews toward the northern hemisphere (median 40.3) and longitude spans the full globe, making this primarily a spatial dataset rather than an attribute-rich one.

citing: country.top_rate · category.top_value · source.top_value · description.top_rate · description.top_values · name.duplicate_rate · name.top_values · latitude.median · latitude.skew · longitude.median · row_count

Schema

9 columns
Per-column summary. Click column name to jump to its detail.
Alerts
latitude numeric 0.0% 80,650
longitude numeric 0.0% 80,650
name text 0.0% 27,697
duplicates
description categorical 0.0% 775
long_tail
category categorical 0.0% 1
imbalance
date categorical 0.0% 1
imbalance
country categorical 0.0% 6
long_tail imbalance
height categorical 0.0% 775
long_tail
source categorical 0.0% 1
imbalance

latitude

numeric feature
Geographic latitude coordinates spanning -77.72 to 78.66, covering nearly the full habitable range of Earth. The distribution is left-skewed (-0.94) with a median of 40.31 sitting well above the mean of 27.15, suggesting a concentration of records in the Northern Hemisphere with a long tail reaching toward Antarctica. Near-uniqueness (80,650 distinct of 80,678) and zero nulls indicate clean, granular point data. Treatment: Pair with longitude for geospatial features; avoid treating as a standalone scalar in models. high · anthropic:claude-opus-4-7
n
80,678
nulls
0 (0.0%)
unique
80,650
min
-77.72
max
78.66
mean
27.15
median
40.31
std
30.05
q1
9.657
q3
47.48
iqr
37.82
skew
-0.9359
kurtosis
-0.2827
n_outliers
298
outlier_rate
0.003694
zero_rate
0

longitude

numeric feature
This is a longitude coordinate column spanning the full global range from -179.99 to 179.41, with 80,650 unique values across 80,678 rows and no nulls. The distribution is broad (std 76.86, IQR 100.27) and only mildly skewed (0.29), with the median at 7.80 sitting east of the prime meridian, hinting at a Europe/Africa-leaning sample. No outliers were flagged, consistent with values bounded by valid geographic limits. Treatment: Pair with latitude as a 2D geospatial feature; avoid treating as a standalone scalar. high · anthropic:claude-opus-4-7
n
80,678
nulls
0 (0.0%)
unique
80,650
min
-180
max
179.4
mean
0.9626
median
7.803
std
76.86
q1
-61.71
q3
38.56
iqr
100.3
skew
0.2865
kurtosis
-0.4119
n_outliers
0
outlier_rate
0
zero_rate
0

name

text label duplicates
This is the human-readable name of a waterfall, averaging 2 words and 16 characters. The column is dominated by the placeholder 'Unnamed Waterfall' (48,168 of 80,678 rows), driving a 65.7% duplicate rate; multiple languages appear in the vocabulary (cachoeira, cascada, cascata, salto, fossen) alongside English 'falls'. Treatment: Treat 'Unnamed Waterfall' as missing and avoid using this field as a unique key. high · anthropic:claude-opus-4-7
n
80,678
nulls
0 (0.0%)
unique
27,697
len_min
1
len_max
67
len_mean
16.12
len_median
17
len_p95
21
word_mean
2.091
word_median
2
n_empty
0
n_duplicates
52,981
duplicate_rate
0.6567
vocab_size
8,093
readability_flesch_mean
17.61
emoji_rate
1.239e-05
url_rate
0
one_word_rate
0.1112
allcaps_rate
0.03462
boilerplate_rate
0

description

categorical feature long_tail
This is a categorical descriptor column, overwhelmingly dominated by the value "Waterfall" which accounts for 72,565 of 80,678 rows (top_rate 0.899). The remaining 774 categories appear to be variants annotated with heights (e.g. "Waterfall, 3m", "Waterfall, 5m"), suggesting a structured suffix pattern rather than free text. Entropy is very low (1.14, ratio 0.119) and the long_tail alert fires, so most signal collapses into one label. Treatment: Parse the height suffix into a numeric feature and collapse the rest to a binary is_waterfall flag. high · anthropic:claude-opus-4-7
n
80,678
nulls
0 (0.0%)
unique
775
top_value
Waterfall
top_rate
0.8994
cardinality
775
entropy
1.14
entropy_ratio
0.1188

category

categorical metadata imbalance
This column is a constant categorical tag, holding the literal value "usgs_waterfalls" for all 80678 rows. With cardinality 1, entropy 0, and a top_rate of 1.0, it carries no information and likely just records the source dataset or ingestion batch. Treatment: Drop before modelling; retain only as a provenance label if combining with other sources. high · anthropic:claude-opus-4-7
n
80,678
nulls
0 (0.0%)
unique
1
top_value
usgs_waterfalls
top_rate
1
cardinality
1
entropy
0
entropy_ratio
0

date

categorical metadata imbalance
This column is named 'date' but contains a single value—an empty string—across all 80678 rows. Cardinality is 1, top_rate is 1.0, and entropy is 0.0, so the field carries no information. It looks like a date field that was never populated. Treatment: Drop; the column is constant (empty string) and has zero signal. high · anthropic:claude-opus-4-7
n
80,678
nulls
0 (0.0%)
unique
1
top_value
top_rate
1
cardinality
1
entropy
0
entropy_ratio
0

country

categorical metadata long_tail imbalance
This is an ISO country code field that is effectively empty: 80650 of 80678 rows (top_rate 0.9996) hold the blank string, leaving only 28 actual codes spread across VE (24), and one each for DE, LB, HN, and BR. Entropy is 0.0048 (entropy_ratio 0.0019), so the column carries almost no information despite having no nulls. The non-blank values look plausible but are far too sparse to support segmentation or modelling. Treatment: Drop or collapse to a binary has_country flag; too sparse to use as a feature. high · anthropic:claude-opus-4-7
n
80,678
nulls
0 (0.0%)
unique
6
top_value
top_rate
0.9997
cardinality
6
entropy
0.004794
entropy_ratio
0.001854

height

categorical feature long_tail
A nominally numeric height field stored as strings, but 89.9% of the 80,678 rows are empty and the remaining values spread across 775 distinct tokens with very low entropy ratio (0.119). The populated values look like small integers (3, 2, 5, 10...) with no obvious unit, suggesting inconsistent or truncated entry rather than a clean measurement. Treatment: Treat empty string as missing, cast to numeric, and expect ~90% nulls before use; likely drop unless imputation is justified. high · anthropic:claude-opus-4-7
n
80,678
nulls
0 (0.0%)
unique
775
top_value
top_rate
0.8994
cardinality
775
entropy
1.14
entropy_ratio
0.1188

source

categorical metadata imbalance
This column records the data provenance, with every one of the 80678 rows tagged as "OpenStreetMap". Cardinality is 1 and entropy is 0, so the field carries no information for modelling or filtering. Treatment: drop, constant column with a single value. high · anthropic:claude-opus-4-7
n
80,678
nulls
0 (0.0%)
unique
1
top_value
OpenStreetMap
top_rate
1
cardinality
1
entropy
0
entropy_ratio
0