Upload 14 files
Browse files- analysis/analyze_lcz_distribution.py +122 -0
- analysis/analyze_lst_distribution.py +115 -0
- analysis/analyze_lst_per_lcz.py +253 -0
- analysis/combined_distribution_plot.py +151 -0
- analysis/out/combined_distribution.png +3 -0
- analysis/out/kdd_evaluation_report.pdf +118 -0
- analysis/out/lcz_class_distribution.png +3 -0
- analysis/out/lcz_class_stats.txt +30 -0
- analysis/out/lst_per_lcz_means.png +3 -0
- analysis/out/lst_per_lcz_overlay.png +3 -0
- analysis/out/lst_per_lcz_stats.txt +26 -0
- analysis/out/lst_per_lcz_subplots.png +3 -0
- analysis/out/lst_temperature_distribution.png +3 -0
- analysis/out/lst_temperature_stats.txt +424 -0
analysis/analyze_lcz_distribution.py
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""LCZ Class Distribution Analysis - Bar Chart"""
|
| 3 |
+
|
| 4 |
+
import numpy as np
|
| 5 |
+
import rasterio
|
| 6 |
+
from rasterio.windows import Window
|
| 7 |
+
import matplotlib.pyplot as plt
|
| 8 |
+
from joblib import Parallel, delayed
|
| 9 |
+
from pathlib import Path
|
| 10 |
+
|
| 11 |
+
# Configuration
|
| 12 |
+
LCZ_FILE = Path("/workspace/storage/lst-earthformer/CONUS_LCZ.tif")
|
| 13 |
+
OUTPUT_DIR = Path("/workspace/storage/lst-earthformer")
|
| 14 |
+
N_JOBS = 124
|
| 15 |
+
MAX_CLASS = 19
|
| 16 |
+
|
| 17 |
+
LCZ_LABELS = {
|
| 18 |
+
1: "Compact high-rise",
|
| 19 |
+
2: "Compact mid-rise",
|
| 20 |
+
3: "Compact low-rise",
|
| 21 |
+
4: "Open high-rise",
|
| 22 |
+
5: "Open mid-rise",
|
| 23 |
+
6: "Open low-rise",
|
| 24 |
+
8: "Large low-rise",
|
| 25 |
+
10: "Heavy industry",
|
| 26 |
+
11: "Dense trees",
|
| 27 |
+
12: "Scattered trees",
|
| 28 |
+
13: "Bush, scrub",
|
| 29 |
+
14: "Low plants",
|
| 30 |
+
15: "Bare rock",
|
| 31 |
+
16: "Bare soil",
|
| 32 |
+
17: "Water",
|
| 33 |
+
18: "Custom/Unknown",
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
def process_chunk(lcz_file, y_start, chunk_height, width):
|
| 37 |
+
"""Process a horizontal strip of the raster."""
|
| 38 |
+
try:
|
| 39 |
+
with rasterio.open(lcz_file) as src:
|
| 40 |
+
window = Window(0, y_start, width, chunk_height)
|
| 41 |
+
data = src.read(1, window=window).flatten()
|
| 42 |
+
data = data[data != 0] # Exclude class 0 (no data)
|
| 43 |
+
counts = np.bincount(data.astype(np.int64), minlength=MAX_CLASS)
|
| 44 |
+
return counts
|
| 45 |
+
except Exception as e:
|
| 46 |
+
print(f"Error processing chunk at row {y_start}: {e}")
|
| 47 |
+
return np.zeros(MAX_CLASS, dtype=np.int64)
|
| 48 |
+
|
| 49 |
+
def main():
|
| 50 |
+
print("Opening LCZ raster...")
|
| 51 |
+
with rasterio.open(LCZ_FILE) as src:
|
| 52 |
+
height, width = src.height, src.width
|
| 53 |
+
print(f"Dimensions: {width:,} x {height:,} pixels ({width * height:,} total)")
|
| 54 |
+
|
| 55 |
+
# Divide into chunks
|
| 56 |
+
chunk_size = height // N_JOBS
|
| 57 |
+
chunks = []
|
| 58 |
+
for i in range(N_JOBS):
|
| 59 |
+
y_start = i * chunk_size
|
| 60 |
+
chunk_height = chunk_size if i < N_JOBS - 1 else height - y_start
|
| 61 |
+
chunks.append((y_start, chunk_height))
|
| 62 |
+
|
| 63 |
+
print(f"Processing {len(chunks)} chunks with {N_JOBS} workers...")
|
| 64 |
+
counts_list = Parallel(n_jobs=N_JOBS, prefer="processes", verbose=10)(
|
| 65 |
+
delayed(process_chunk)(str(LCZ_FILE), y, h, width) for y, h in chunks
|
| 66 |
+
)
|
| 67 |
+
|
| 68 |
+
print("Aggregating counts...")
|
| 69 |
+
total_counts = np.sum(counts_list, axis=0)
|
| 70 |
+
total_pixels = total_counts.sum()
|
| 71 |
+
|
| 72 |
+
# Filter to classes that exist (excluding class 0)
|
| 73 |
+
present_classes = [i for i in range(1, MAX_CLASS) if total_counts[i] > 0]
|
| 74 |
+
counts = [total_counts[i] for i in present_classes]
|
| 75 |
+
percentages = [c / total_pixels * 100 for c in counts]
|
| 76 |
+
|
| 77 |
+
# Dominant class
|
| 78 |
+
dominant_idx = np.argmax(counts)
|
| 79 |
+
dominant_class = present_classes[dominant_idx]
|
| 80 |
+
|
| 81 |
+
# Ranking by coverage
|
| 82 |
+
ranking = sorted(zip(present_classes, counts, percentages), key=lambda x: -x[1])
|
| 83 |
+
|
| 84 |
+
# Plot
|
| 85 |
+
print("Creating plot...")
|
| 86 |
+
plt.figure(figsize=(14, 8))
|
| 87 |
+
bars = plt.bar(range(len(present_classes)), counts, color="forestgreen", edgecolor="none")
|
| 88 |
+
plt.xticks(range(len(present_classes)), [str(c) for c in present_classes], fontsize=10)
|
| 89 |
+
plt.xlabel("LCZ Class", fontsize=12)
|
| 90 |
+
plt.ylabel("Pixel Count", fontsize=12)
|
| 91 |
+
plt.title(f"LCZ Class Distribution ({total_pixels:,} pixels, excluding class 0)", fontsize=14)
|
| 92 |
+
plt.grid(axis="y", alpha=0.3)
|
| 93 |
+
|
| 94 |
+
for bar, pct in zip(bars, percentages):
|
| 95 |
+
if pct >= 1:
|
| 96 |
+
plt.text(bar.get_x() + bar.get_width() / 2, bar.get_height(),
|
| 97 |
+
f"{pct:.1f}%", ha="center", va="bottom", fontsize=8)
|
| 98 |
+
|
| 99 |
+
plt.tight_layout()
|
| 100 |
+
plt.savefig(OUTPUT_DIR / "lcz_class_distribution.png", dpi=150)
|
| 101 |
+
plt.close()
|
| 102 |
+
print(f"Saved: lcz_class_distribution.png")
|
| 103 |
+
|
| 104 |
+
# Statistics file
|
| 105 |
+
with open(OUTPUT_DIR / "lcz_class_stats.txt", "w") as f:
|
| 106 |
+
f.write("LCZ Class Distribution Statistics\n")
|
| 107 |
+
f.write("=" * 60 + "\n\n")
|
| 108 |
+
f.write(f"Image dimensions: {width:,} x {height:,}\n")
|
| 109 |
+
f.write(f"Total pixels (excluding class 0): {total_pixels:,}\n\n")
|
| 110 |
+
f.write(f"Dominant class: {dominant_class} ({LCZ_LABELS.get(dominant_class, 'Unknown')})\n\n")
|
| 111 |
+
f.write("Class Ranking by Area Coverage:\n")
|
| 112 |
+
f.write("-" * 60 + "\n")
|
| 113 |
+
f.write("Rank Class Count Percentage Description\n")
|
| 114 |
+
f.write("-" * 60 + "\n")
|
| 115 |
+
for rank, (cls, cnt, pct) in enumerate(ranking, 1):
|
| 116 |
+
desc = LCZ_LABELS.get(cls, "Unknown")
|
| 117 |
+
f.write(f"{rank:<6}{cls:<8}{cnt:>15,}{pct:>11.4f}% {desc}\n")
|
| 118 |
+
f.write("\n" + "=" * 60 + "\n")
|
| 119 |
+
print(f"Saved: lcz_class_stats.txt")
|
| 120 |
+
|
| 121 |
+
if __name__ == "__main__":
|
| 122 |
+
main()
|
analysis/analyze_lst_distribution.py
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""LST Temperature Distribution Analysis - Probability Histogram"""
|
| 3 |
+
|
| 4 |
+
import glob
|
| 5 |
+
import numpy as np
|
| 6 |
+
import rasterio
|
| 7 |
+
import matplotlib.pyplot as plt
|
| 8 |
+
from joblib import Parallel, delayed
|
| 9 |
+
from pathlib import Path
|
| 10 |
+
|
| 11 |
+
# Configuration
|
| 12 |
+
LST_DIR = Path("/workspace/storage/lst-earthformer/Data/ML/Cities_Tiles")
|
| 13 |
+
OUTPUT_DIR = Path("/workspace/storage/lst-earthformer")
|
| 14 |
+
N_JOBS = 124
|
| 15 |
+
TEMP_MIN, TEMP_MAX = -189, 211
|
| 16 |
+
BINS = range(TEMP_MIN, TEMP_MAX + 2)
|
| 17 |
+
|
| 18 |
+
def process_file(filepath):
|
| 19 |
+
"""Process single TIF file, return histogram counts."""
|
| 20 |
+
try:
|
| 21 |
+
with rasterio.open(filepath) as src:
|
| 22 |
+
data = src.read(1).flatten()
|
| 23 |
+
data = data[data != 0] # Exclude 0F (no data)
|
| 24 |
+
counts, _ = np.histogram(data, bins=BINS)
|
| 25 |
+
return counts
|
| 26 |
+
except Exception as e:
|
| 27 |
+
print(f"Error processing {filepath}: {e}")
|
| 28 |
+
return np.zeros(len(BINS) - 1, dtype=np.int64)
|
| 29 |
+
|
| 30 |
+
def main():
|
| 31 |
+
print("Finding LST files...")
|
| 32 |
+
files = glob.glob(str(LST_DIR / "**" / "LST_*.tif"), recursive=True)
|
| 33 |
+
total_files = len(files)
|
| 34 |
+
print(f"Found {total_files:,} files")
|
| 35 |
+
|
| 36 |
+
if total_files == 0:
|
| 37 |
+
print("No files found. Exiting.")
|
| 38 |
+
return
|
| 39 |
+
|
| 40 |
+
print(f"Processing with {N_JOBS} workers...")
|
| 41 |
+
histograms = Parallel(n_jobs=N_JOBS, prefer="processes", verbose=10)(
|
| 42 |
+
delayed(process_file)(f) for f in files
|
| 43 |
+
)
|
| 44 |
+
|
| 45 |
+
print("Aggregating histograms...")
|
| 46 |
+
total_hist = np.sum(histograms, axis=0)
|
| 47 |
+
temperatures = np.arange(TEMP_MIN, TEMP_MAX + 1)
|
| 48 |
+
total_pixels = total_hist.sum()
|
| 49 |
+
|
| 50 |
+
# Probability distribution
|
| 51 |
+
probabilities = total_hist / total_pixels
|
| 52 |
+
|
| 53 |
+
# Statistics
|
| 54 |
+
weighted_temps = temperatures * total_hist
|
| 55 |
+
mean_temp = weighted_temps.sum() / total_pixels
|
| 56 |
+
mode_idx = np.argmax(total_hist)
|
| 57 |
+
mode_temp = temperatures[mode_idx]
|
| 58 |
+
|
| 59 |
+
# Cumulative for percentiles
|
| 60 |
+
cumsum = np.cumsum(total_hist)
|
| 61 |
+
percentiles = {}
|
| 62 |
+
for p in [10, 25, 50, 75, 90]:
|
| 63 |
+
idx = np.searchsorted(cumsum, total_pixels * p / 100)
|
| 64 |
+
percentiles[p] = temperatures[min(idx, len(temperatures) - 1)]
|
| 65 |
+
|
| 66 |
+
# Find actual min/max with data
|
| 67 |
+
nonzero = np.nonzero(total_hist)[0]
|
| 68 |
+
actual_min = temperatures[nonzero[0]] if len(nonzero) > 0 else TEMP_MIN
|
| 69 |
+
actual_max = temperatures[nonzero[-1]] if len(nonzero) > 0 else TEMP_MAX
|
| 70 |
+
|
| 71 |
+
# Variance for std
|
| 72 |
+
variance = np.sum(total_hist * (temperatures - mean_temp) ** 2) / total_pixels
|
| 73 |
+
std_temp = np.sqrt(variance)
|
| 74 |
+
|
| 75 |
+
# Plot
|
| 76 |
+
print("Creating plot...")
|
| 77 |
+
plt.figure(figsize=(14, 8))
|
| 78 |
+
plt.bar(temperatures, probabilities, width=1, edgecolor="none", color="steelblue")
|
| 79 |
+
plt.xlabel("Temperature (°F)", fontsize=12)
|
| 80 |
+
plt.ylabel("Probability", fontsize=12)
|
| 81 |
+
plt.title(f"LST Temperature Distribution ({total_files:,} files, {total_pixels:,} pixels, excluding 0°F)", fontsize=14)
|
| 82 |
+
plt.grid(axis="y", alpha=0.3)
|
| 83 |
+
plt.tight_layout()
|
| 84 |
+
plt.savefig(OUTPUT_DIR / "lst_temperature_distribution.png", dpi=150)
|
| 85 |
+
plt.close()
|
| 86 |
+
print(f"Saved: lst_temperature_distribution.png")
|
| 87 |
+
|
| 88 |
+
# Statistics file
|
| 89 |
+
with open(OUTPUT_DIR / "lst_temperature_stats.txt", "w") as f:
|
| 90 |
+
f.write("LST Temperature Distribution Statistics\n")
|
| 91 |
+
f.write("=" * 50 + "\n\n")
|
| 92 |
+
f.write(f"Total files processed: {total_files:,}\n")
|
| 93 |
+
f.write(f"Total pixels (excluding 0°F): {total_pixels:,}\n\n")
|
| 94 |
+
f.write(f"Min temperature: {actual_min}°F\n")
|
| 95 |
+
f.write(f"Max temperature: {actual_max}°F\n")
|
| 96 |
+
f.write(f"Mean temperature: {mean_temp:.2f}°F\n")
|
| 97 |
+
f.write(f"Median temperature: {percentiles[50]}°F\n")
|
| 98 |
+
f.write(f"Mode temperature: {mode_temp}°F\n")
|
| 99 |
+
f.write(f"Std deviation: {std_temp:.2f}°F\n\n")
|
| 100 |
+
f.write("Percentiles:\n")
|
| 101 |
+
for p, t in percentiles.items():
|
| 102 |
+
f.write(f" {p}th: {t}°F\n")
|
| 103 |
+
f.write("\n" + "=" * 50 + "\n")
|
| 104 |
+
f.write("Full Histogram Data\n")
|
| 105 |
+
f.write("Temp(°F)\tCount\t\tProbability\n")
|
| 106 |
+
f.write("-" * 50 + "\n")
|
| 107 |
+
for i, t in enumerate(temperatures):
|
| 108 |
+
c = total_hist[i]
|
| 109 |
+
p = probabilities[i]
|
| 110 |
+
if c > 0:
|
| 111 |
+
f.write(f"{t}\t\t{c:,}\t\t{p:.8f}\n")
|
| 112 |
+
print(f"Saved: lst_temperature_stats.txt")
|
| 113 |
+
|
| 114 |
+
if __name__ == "__main__":
|
| 115 |
+
main()
|
analysis/analyze_lst_per_lcz.py
ADDED
|
@@ -0,0 +1,253 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""LST Distribution per LCZ Class - Cross-references LST tiles with CONUS LCZ raster"""
|
| 3 |
+
|
| 4 |
+
import glob
|
| 5 |
+
import numpy as np
|
| 6 |
+
import rasterio
|
| 7 |
+
from rasterio.warp import transform_bounds, Resampling
|
| 8 |
+
from rasterio.transform import from_bounds
|
| 9 |
+
from rasterio.windows import from_bounds as window_from_bounds
|
| 10 |
+
import matplotlib.pyplot as plt
|
| 11 |
+
from joblib import Parallel, delayed
|
| 12 |
+
from pathlib import Path
|
| 13 |
+
import json
|
| 14 |
+
|
| 15 |
+
# Configuration
|
| 16 |
+
LST_DIR = Path("/workspace/storage/lst-earthformer/Data/ML/Cities_Tiles")
|
| 17 |
+
LCZ_FILE = Path("/workspace/storage/lst-earthformer/CONUS_LCZ.tif")
|
| 18 |
+
OUTPUT_DIR = Path("/workspace/storage/lst-earthformer")
|
| 19 |
+
N_JOBS = 64
|
| 20 |
+
TEMP_MIN, TEMP_MAX = -189, 211
|
| 21 |
+
NUM_BINS = TEMP_MAX - TEMP_MIN + 1
|
| 22 |
+
|
| 23 |
+
LCZ_LABELS = {
|
| 24 |
+
1: "Compact high-rise", 2: "Compact mid-rise", 3: "Compact low-rise",
|
| 25 |
+
4: "Open high-rise", 5: "Open mid-rise", 6: "Open low-rise",
|
| 26 |
+
8: "Large low-rise", 10: "Heavy industry",
|
| 27 |
+
11: "Dense trees", 12: "Scattered trees", 13: "Bush, scrub",
|
| 28 |
+
14: "Low plants", 15: "Bare rock", 16: "Bare soil",
|
| 29 |
+
17: "Water", 18: "Custom/Unknown",
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
# Short labels for plots
|
| 33 |
+
LCZ_SHORT = {
|
| 34 |
+
1: "Compact\nhigh", 2: "Compact\nmid", 3: "Compact\nlow",
|
| 35 |
+
4: "Open\nhigh", 5: "Open\nmid", 6: "Open\nlow",
|
| 36 |
+
8: "Large\nlow", 10: "Heavy\nindustry",
|
| 37 |
+
11: "Dense\ntrees", 12: "Scattered\ntrees", 13: "Bush\nscrub",
|
| 38 |
+
14: "Low\nplants", 15: "Bare\nrock", 16: "Bare\nsoil",
|
| 39 |
+
17: "Water", 18: "Custom",
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
MAX_LCZ = 19
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
def process_file(filepath, lcz_file):
|
| 46 |
+
"""Process one LST tile: read LST values, sample LCZ at same locations, return per-class histograms."""
|
| 47 |
+
try:
|
| 48 |
+
with rasterio.open(filepath) as lst_src:
|
| 49 |
+
lst_data = lst_src.read(1)
|
| 50 |
+
lst_bounds = lst_src.bounds
|
| 51 |
+
lst_crs = lst_src.crs
|
| 52 |
+
lst_h, lst_w = lst_data.shape
|
| 53 |
+
|
| 54 |
+
# Transform LST bounds to LCZ CRS (4326)
|
| 55 |
+
lcz_bounds = transform_bounds(lst_crs, 'EPSG:4326',
|
| 56 |
+
lst_bounds.left, lst_bounds.bottom,
|
| 57 |
+
lst_bounds.right, lst_bounds.top)
|
| 58 |
+
|
| 59 |
+
with rasterio.open(lcz_file) as lcz_src:
|
| 60 |
+
# Get window in LCZ raster corresponding to LST tile bounds
|
| 61 |
+
try:
|
| 62 |
+
win = window_from_bounds(*lcz_bounds, transform=lcz_src.transform)
|
| 63 |
+
except Exception:
|
| 64 |
+
return np.zeros((MAX_LCZ, NUM_BINS), dtype=np.int64)
|
| 65 |
+
|
| 66 |
+
# Read LCZ data for this window
|
| 67 |
+
lcz_data = lcz_src.read(1, window=win)
|
| 68 |
+
|
| 69 |
+
if lcz_data.size == 0:
|
| 70 |
+
return np.zeros((MAX_LCZ, NUM_BINS), dtype=np.int64)
|
| 71 |
+
|
| 72 |
+
# Resize LCZ to match LST tile (128x128) using nearest neighbor
|
| 73 |
+
from PIL import Image
|
| 74 |
+
lcz_resized = np.array(
|
| 75 |
+
Image.fromarray(lcz_data).resize((lst_w, lst_h), Image.NEAREST)
|
| 76 |
+
)
|
| 77 |
+
|
| 78 |
+
# Build per-LCZ-class histograms
|
| 79 |
+
histograms = np.zeros((MAX_LCZ, NUM_BINS), dtype=np.int64)
|
| 80 |
+
bins = np.arange(TEMP_MIN, TEMP_MAX + 2)
|
| 81 |
+
|
| 82 |
+
for lcz_class in range(1, MAX_LCZ):
|
| 83 |
+
mask = (lcz_resized == lcz_class) & (lst_data != 0)
|
| 84 |
+
if mask.any():
|
| 85 |
+
vals = lst_data[mask]
|
| 86 |
+
counts, _ = np.histogram(vals, bins=bins)
|
| 87 |
+
histograms[lcz_class] = counts
|
| 88 |
+
|
| 89 |
+
return histograms
|
| 90 |
+
|
| 91 |
+
except Exception as e:
|
| 92 |
+
return np.zeros((MAX_LCZ, NUM_BINS), dtype=np.int64)
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
def main():
|
| 96 |
+
print("Finding LST files...")
|
| 97 |
+
files = glob.glob(str(LST_DIR / "**" / "LST_*.tif"), recursive=True)
|
| 98 |
+
total_files = len(files)
|
| 99 |
+
print(f"Found {total_files:,} files")
|
| 100 |
+
|
| 101 |
+
if total_files == 0:
|
| 102 |
+
print("No files found.")
|
| 103 |
+
return
|
| 104 |
+
|
| 105 |
+
print(f"Processing with {N_JOBS} workers...")
|
| 106 |
+
results = Parallel(n_jobs=N_JOBS, prefer="processes", verbose=10)(
|
| 107 |
+
delayed(process_file)(f, str(LCZ_FILE)) for f in files
|
| 108 |
+
)
|
| 109 |
+
|
| 110 |
+
print("Aggregating histograms...")
|
| 111 |
+
total_hists = np.sum(results, axis=0) # shape: (MAX_LCZ, NUM_BINS)
|
| 112 |
+
temperatures = np.arange(TEMP_MIN, TEMP_MAX + 1)
|
| 113 |
+
|
| 114 |
+
# Find which LCZ classes have data
|
| 115 |
+
present_classes = [c for c in range(1, MAX_LCZ) if total_hists[c].sum() > 0]
|
| 116 |
+
print(f"LCZ classes with data: {present_classes}")
|
| 117 |
+
|
| 118 |
+
# Compute stats per class
|
| 119 |
+
stats = {}
|
| 120 |
+
for c in present_classes:
|
| 121 |
+
hist = total_hists[c]
|
| 122 |
+
total = hist.sum()
|
| 123 |
+
if total == 0:
|
| 124 |
+
continue
|
| 125 |
+
prob = hist / total
|
| 126 |
+
mean = np.sum(temperatures * hist) / total
|
| 127 |
+
var = np.sum(hist * (temperatures - mean) ** 2) / total
|
| 128 |
+
std = np.sqrt(var)
|
| 129 |
+
cumsum = np.cumsum(hist)
|
| 130 |
+
median_idx = np.searchsorted(cumsum, total * 0.5)
|
| 131 |
+
median = temperatures[min(median_idx, len(temperatures) - 1)]
|
| 132 |
+
nonzero = np.nonzero(hist)[0]
|
| 133 |
+
tmin = temperatures[nonzero[0]]
|
| 134 |
+
tmax = temperatures[nonzero[-1]]
|
| 135 |
+
stats[c] = {
|
| 136 |
+
'total_pixels': int(total),
|
| 137 |
+
'mean': float(mean),
|
| 138 |
+
'std': float(std),
|
| 139 |
+
'median': int(median),
|
| 140 |
+
'min': int(tmin),
|
| 141 |
+
'max': int(tmax),
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
# --- Plot 1: Overlay probability distributions ---
|
| 145 |
+
print("Creating overlay plot...")
|
| 146 |
+
fig, ax = plt.subplots(figsize=(14, 8))
|
| 147 |
+
cmap = plt.cm.tab20
|
| 148 |
+
for i, c in enumerate(present_classes):
|
| 149 |
+
hist = total_hists[c]
|
| 150 |
+
total = hist.sum()
|
| 151 |
+
if total == 0:
|
| 152 |
+
continue
|
| 153 |
+
prob = hist / total
|
| 154 |
+
label = f"LCZ {c}: {LCZ_LABELS.get(c, '?')}"
|
| 155 |
+
color = cmap(i / len(present_classes))
|
| 156 |
+
ax.plot(temperatures, prob, label=label, color=color, linewidth=1.2, alpha=0.8)
|
| 157 |
+
|
| 158 |
+
ax.set_xlabel("Temperature (F)", fontsize=12)
|
| 159 |
+
ax.set_ylabel("Probability", fontsize=12)
|
| 160 |
+
ax.set_title("LST Distribution by LCZ Class", fontsize=14)
|
| 161 |
+
ax.set_xlim(0, 180)
|
| 162 |
+
ax.legend(fontsize=8, ncol=2, loc='upper left')
|
| 163 |
+
ax.grid(axis='y', alpha=0.3)
|
| 164 |
+
plt.tight_layout()
|
| 165 |
+
plt.savefig(OUTPUT_DIR / "lst_per_lcz_overlay.png", dpi=150)
|
| 166 |
+
plt.close()
|
| 167 |
+
print("Saved: lst_per_lcz_overlay.png")
|
| 168 |
+
|
| 169 |
+
# --- Plot 2: Subplots per LCZ class ---
|
| 170 |
+
print("Creating subplot grid...")
|
| 171 |
+
n_classes = len(present_classes)
|
| 172 |
+
ncols = 4
|
| 173 |
+
nrows = (n_classes + ncols - 1) // ncols
|
| 174 |
+
fig, axes = plt.subplots(nrows, ncols, figsize=(16, 3.5 * nrows), sharex=True, sharey=False)
|
| 175 |
+
axes = axes.flatten()
|
| 176 |
+
|
| 177 |
+
for i, c in enumerate(present_classes):
|
| 178 |
+
ax = axes[i]
|
| 179 |
+
hist = total_hists[c]
|
| 180 |
+
total = hist.sum()
|
| 181 |
+
prob = hist / total
|
| 182 |
+
s = stats[c]
|
| 183 |
+
ax.bar(temperatures, prob, width=1, color='steelblue', edgecolor='none')
|
| 184 |
+
ax.set_title(f"LCZ {c}: {LCZ_LABELS.get(c, '?')}", fontsize=10)
|
| 185 |
+
ax.set_xlim(0, 180)
|
| 186 |
+
ax.axvline(s['mean'], color='red', linestyle='--', linewidth=0.8, label=f"Mean: {s['mean']:.1f}F")
|
| 187 |
+
ax.legend(fontsize=7, loc='upper left')
|
| 188 |
+
ax.grid(axis='y', alpha=0.3)
|
| 189 |
+
info = f"n={total:,}\nstd={s['std']:.1f}F"
|
| 190 |
+
ax.text(0.97, 0.95, info, transform=ax.transAxes, fontsize=7,
|
| 191 |
+
verticalalignment='top', horizontalalignment='right',
|
| 192 |
+
bbox=dict(boxstyle='round,pad=0.3', facecolor='wheat', alpha=0.5))
|
| 193 |
+
|
| 194 |
+
# Hide unused subplots
|
| 195 |
+
for i in range(n_classes, len(axes)):
|
| 196 |
+
axes[i].set_visible(False)
|
| 197 |
+
|
| 198 |
+
# Common labels
|
| 199 |
+
fig.text(0.5, 0.02, "Temperature (F)", ha='center', fontsize=12)
|
| 200 |
+
fig.text(0.02, 0.5, "Probability", va='center', rotation='vertical', fontsize=12)
|
| 201 |
+
fig.suptitle("LST Temperature Distribution by LCZ Class", fontsize=14, y=0.98)
|
| 202 |
+
plt.tight_layout(rect=[0.03, 0.03, 1, 0.96])
|
| 203 |
+
plt.savefig(OUTPUT_DIR / "lst_per_lcz_subplots.png", dpi=150)
|
| 204 |
+
plt.close()
|
| 205 |
+
print("Saved: lst_per_lcz_subplots.png")
|
| 206 |
+
|
| 207 |
+
# --- Plot 3: Box-whisker style summary ---
|
| 208 |
+
print("Creating summary plot...")
|
| 209 |
+
fig, ax = plt.subplots(figsize=(14, 6))
|
| 210 |
+
means = [stats[c]['mean'] for c in present_classes]
|
| 211 |
+
stds = [stats[c]['std'] for c in present_classes]
|
| 212 |
+
labels = [f"LCZ {c}" for c in present_classes]
|
| 213 |
+
x = range(len(present_classes))
|
| 214 |
+
|
| 215 |
+
bars = ax.bar(x, means, yerr=stds, capsize=4, color='steelblue', edgecolor='none', alpha=0.8)
|
| 216 |
+
ax.set_xticks(x)
|
| 217 |
+
ax.set_xticklabels([LCZ_SHORT.get(c, str(c)) for c in present_classes], fontsize=8)
|
| 218 |
+
ax.set_ylabel("Mean LST (F)", fontsize=12)
|
| 219 |
+
ax.set_title("Mean LST by LCZ Class (error bars = 1 std)", fontsize=14)
|
| 220 |
+
ax.grid(axis='y', alpha=0.3)
|
| 221 |
+
|
| 222 |
+
for i, (m, c) in enumerate(zip(means, present_classes)):
|
| 223 |
+
ax.text(i, m + stds[i] + 1, f"{m:.1f}", ha='center', fontsize=8)
|
| 224 |
+
|
| 225 |
+
plt.tight_layout()
|
| 226 |
+
plt.savefig(OUTPUT_DIR / "lst_per_lcz_means.png", dpi=150)
|
| 227 |
+
plt.close()
|
| 228 |
+
print("Saved: lst_per_lcz_means.png")
|
| 229 |
+
|
| 230 |
+
# --- Stats file ---
|
| 231 |
+
print("Writing stats...")
|
| 232 |
+
with open(OUTPUT_DIR / "lst_per_lcz_stats.txt", "w") as f:
|
| 233 |
+
f.write("LST Distribution per LCZ Class\n")
|
| 234 |
+
f.write("=" * 70 + "\n\n")
|
| 235 |
+
f.write(f"Total LST files processed: {total_files:,}\n")
|
| 236 |
+
f.write(f"LCZ classes with data: {len(present_classes)}\n\n")
|
| 237 |
+
f.write(f"{'Class':<8}{'Description':<25}{'Pixels':>15}{'Mean':>10}{'Std':>10}{'Median':>10}{'Min':>8}{'Max':>8}\n")
|
| 238 |
+
f.write("-" * 94 + "\n")
|
| 239 |
+
for c in present_classes:
|
| 240 |
+
s = stats[c]
|
| 241 |
+
desc = LCZ_LABELS.get(c, 'Unknown')
|
| 242 |
+
f.write(f"LCZ {c:<4}{desc:<25}{s['total_pixels']:>15,}{s['mean']:>10.2f}{s['std']:>10.2f}{s['median']:>10}{s['min']:>8}{s['max']:>8}\n")
|
| 243 |
+
f.write("\n")
|
| 244 |
+
|
| 245 |
+
total_all = sum(s['total_pixels'] for s in stats.values())
|
| 246 |
+
f.write(f"{'Total':<33}{total_all:>15,}\n")
|
| 247 |
+
|
| 248 |
+
print(f"Saved: lst_per_lcz_stats.txt")
|
| 249 |
+
print("Done!")
|
| 250 |
+
|
| 251 |
+
|
| 252 |
+
if __name__ == "__main__":
|
| 253 |
+
main()
|
analysis/combined_distribution_plot.py
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Combined LCZ + LST distribution plot in academic style."""
|
| 3 |
+
|
| 4 |
+
import numpy as np
|
| 5 |
+
import matplotlib.pyplot as plt
|
| 6 |
+
from matplotlib.ticker import FixedLocator, FuncFormatter
|
| 7 |
+
from scipy.interpolate import PchipInterpolator, make_interp_spline
|
| 8 |
+
|
| 9 |
+
plt.rcParams.update({
|
| 10 |
+
'font.family': 'serif',
|
| 11 |
+
'mathtext.fontset': 'dejavuserif',
|
| 12 |
+
'axes.linewidth': 0.6,
|
| 13 |
+
'xtick.major.width': 0.5,
|
| 14 |
+
'ytick.major.width': 0.5,
|
| 15 |
+
'xtick.major.size': 3,
|
| 16 |
+
'ytick.major.size': 3,
|
| 17 |
+
})
|
| 18 |
+
|
| 19 |
+
def human_format(x, pos):
|
| 20 |
+
if x >= 1e9:
|
| 21 |
+
return f'{x/1e9:g}B'
|
| 22 |
+
elif x >= 1e6:
|
| 23 |
+
return f'{x/1e6:g}M'
|
| 24 |
+
elif x >= 1e3:
|
| 25 |
+
return f'{x/1e3:g}K'
|
| 26 |
+
elif x >= 1:
|
| 27 |
+
return f'{x:g}'
|
| 28 |
+
return '0'
|
| 29 |
+
|
| 30 |
+
# ── Parse LST stats ──────────────────────────────────────────────
|
| 31 |
+
lst_temps, lst_counts = [], []
|
| 32 |
+
in_data = False
|
| 33 |
+
with open('/workspace/storage/lst-earthformer/lst_temperature_stats.txt') as f:
|
| 34 |
+
for line in f:
|
| 35 |
+
if line.startswith('Temp'):
|
| 36 |
+
in_data = True
|
| 37 |
+
continue
|
| 38 |
+
if line.startswith('---'):
|
| 39 |
+
continue
|
| 40 |
+
if in_data and line.strip():
|
| 41 |
+
parts = line.split()
|
| 42 |
+
lst_temps.append(int(parts[0]))
|
| 43 |
+
lst_counts.append(int(parts[1].replace(',', '')))
|
| 44 |
+
|
| 45 |
+
lst_temps = np.array(lst_temps)
|
| 46 |
+
lst_counts = np.array(lst_counts, dtype=np.float64)
|
| 47 |
+
|
| 48 |
+
mask = (lst_temps >= -50) & (lst_temps <= 175)
|
| 49 |
+
lst_temps_trim = lst_temps[mask]
|
| 50 |
+
lst_counts_trim = lst_counts[mask]
|
| 51 |
+
|
| 52 |
+
bin_width = 5
|
| 53 |
+
bin_edges = np.arange(-50, 176, bin_width)
|
| 54 |
+
bin_centers = bin_edges[:-1] + bin_width / 2
|
| 55 |
+
binned_counts = np.zeros(len(bin_centers), dtype=np.float64)
|
| 56 |
+
for i, (lo, hi) in enumerate(zip(bin_edges[:-1], bin_edges[1:])):
|
| 57 |
+
sel = (lst_temps_trim >= lo) & (lst_temps_trim < hi)
|
| 58 |
+
binned_counts[i] = lst_counts_trim[sel].sum()
|
| 59 |
+
|
| 60 |
+
# ── Parse LCZ stats ─────────────────────────────────────────────
|
| 61 |
+
lcz_classes, lcz_counts = [], []
|
| 62 |
+
in_data = False
|
| 63 |
+
with open('/workspace/storage/lst-earthformer/lcz_class_stats.txt') as f:
|
| 64 |
+
for line in f:
|
| 65 |
+
if line.startswith('Rank'):
|
| 66 |
+
in_data = True
|
| 67 |
+
continue
|
| 68 |
+
if line.startswith('---') or line.startswith('='):
|
| 69 |
+
if in_data and line.startswith('='):
|
| 70 |
+
in_data = False
|
| 71 |
+
continue
|
| 72 |
+
if in_data and line.strip():
|
| 73 |
+
parts = line.split()
|
| 74 |
+
lcz_classes.append(int(parts[1]))
|
| 75 |
+
lcz_counts.append(int(parts[2].replace(',', '')))
|
| 76 |
+
|
| 77 |
+
order = np.argsort(lcz_classes)
|
| 78 |
+
lcz_classes = np.array(lcz_classes)[order]
|
| 79 |
+
lcz_counts = np.array(lcz_counts, dtype=np.float64)[order]
|
| 80 |
+
total_lcz = lcz_counts.sum()
|
| 81 |
+
|
| 82 |
+
# ── Figure ───────────────────────────────────────────────────────
|
| 83 |
+
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 5.0))
|
| 84 |
+
fig.subplots_adjust(wspace=0.22, left=0.08, right=0.99, top=0.97, bottom=0.12)
|
| 85 |
+
|
| 86 |
+
bar_color = '#6BAED6'
|
| 87 |
+
curve_color = '#2171B5'
|
| 88 |
+
fmt = FuncFormatter(human_format)
|
| 89 |
+
|
| 90 |
+
# ── Left: LCZ class distribution ────────────────────────────────
|
| 91 |
+
x_pos = np.arange(len(lcz_classes))
|
| 92 |
+
ax1.bar(x_pos, lcz_counts, width=0.75, color=bar_color, edgecolor='white', linewidth=0.3)
|
| 93 |
+
|
| 94 |
+
# PCHIP: touches every bar top, smooth, no overshoot
|
| 95 |
+
pchip = PchipInterpolator(x_pos, lcz_counts)
|
| 96 |
+
x_fine = np.linspace(x_pos[0], x_pos[-1], 300)
|
| 97 |
+
y_fine = np.maximum(pchip(x_fine), 0)
|
| 98 |
+
ax1.plot(x_fine, y_fine, color=curve_color, linewidth=1.0)
|
| 99 |
+
|
| 100 |
+
ax1.yaxis.set_major_locator(FixedLocator([0, 1.2e6, 2.4e6]))
|
| 101 |
+
ax1.yaxis.set_major_formatter(fmt)
|
| 102 |
+
ax1.set_ylim(0, 3e6)
|
| 103 |
+
ax1.set_xticks(x_pos)
|
| 104 |
+
ax1.set_xticklabels([str(c) for c in lcz_classes], fontsize=16)
|
| 105 |
+
ax1.set_xlabel('LCZ Class', fontsize=16)
|
| 106 |
+
ax1.set_ylabel('Pixels', fontsize=16)
|
| 107 |
+
ax1.tick_params(axis='both', labelsize=16)
|
| 108 |
+
ax1.set_xlim(-0.6, len(lcz_classes) - 0.4)
|
| 109 |
+
|
| 110 |
+
dominant_cls = lcz_classes[np.argmax(lcz_counts)]
|
| 111 |
+
dominant_pct = lcz_counts.max() / total_lcz * 100
|
| 112 |
+
txt = f'Total pixels: ~{int(round(total_lcz, -6) // 1e6):.0f}M\nDominant: Class {dominant_cls} ({dominant_pct:.1f}%)'
|
| 113 |
+
ax1.text(0.97, 0.97, txt, transform=ax1.transAxes, fontsize=16,
|
| 114 |
+
verticalalignment='top', horizontalalignment='right',
|
| 115 |
+
bbox=dict(boxstyle='round,pad=0.3', facecolor='white', edgecolor='0.6', linewidth=0.5))
|
| 116 |
+
ax1.text(0.97, 0.78, 'LCZ Distribution', transform=ax1.transAxes, fontsize=16,
|
| 117 |
+
color='red', fontweight='bold', verticalalignment='top', horizontalalignment='right')
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
# ── Right: LST temperature distribution ──────────────────────────
|
| 121 |
+
ax2.bar(bin_centers, binned_counts, width=bin_width * 0.85, color=bar_color, edgecolor='white', linewidth=0.3)
|
| 122 |
+
|
| 123 |
+
# PCHIP for LST too
|
| 124 |
+
pchip2 = PchipInterpolator(bin_centers, binned_counts)
|
| 125 |
+
x_smooth2 = np.linspace(bin_centers[0], bin_centers[-1], 500)
|
| 126 |
+
y_smooth2 = np.maximum(pchip2(x_smooth2), 0)
|
| 127 |
+
ax2.plot(x_smooth2, y_smooth2, color=curve_color, linewidth=1.0)
|
| 128 |
+
|
| 129 |
+
ax2.yaxis.set_major_locator(FixedLocator([0, 5e8, 1e9, 1.5e9, 2e9]))
|
| 130 |
+
ax2.yaxis.set_major_formatter(fmt)
|
| 131 |
+
ax2.set_ylim(0, 2.2e9)
|
| 132 |
+
ax2.set_xlabel('Temperature (\u00b0F)', fontsize=16)
|
| 133 |
+
ax2.set_ylabel('Pixels', fontsize=16)
|
| 134 |
+
ax2.tick_params(axis='both', labelsize=16)
|
| 135 |
+
ax2.set_xlim(-55, 180)
|
| 136 |
+
|
| 137 |
+
total_pixels_lst = int(binned_counts.sum())
|
| 138 |
+
mean_t = np.average(bin_centers, weights=binned_counts)
|
| 139 |
+
variance = np.average((bin_centers - mean_t)**2, weights=binned_counts)
|
| 140 |
+
std_t = np.sqrt(variance)
|
| 141 |
+
txt2 = f'Total pixels: ~{total_pixels_lst / 1e9:.1f}B\nMean: {mean_t:.1f}\u00b0F Std: {std_t:.1f}\u00b0F'
|
| 142 |
+
ax2.text(0.97, 0.97, txt2, transform=ax2.transAxes, fontsize=16,
|
| 143 |
+
verticalalignment='top', horizontalalignment='right',
|
| 144 |
+
bbox=dict(boxstyle='round,pad=0.3', facecolor='white', edgecolor='0.6', linewidth=0.5))
|
| 145 |
+
ax2.text(0.97, 0.78, 'Temperature Distribution', transform=ax2.transAxes, fontsize=16,
|
| 146 |
+
color='red', fontweight='bold', verticalalignment='top', horizontalalignment='right')
|
| 147 |
+
|
| 148 |
+
|
| 149 |
+
plt.savefig('/workspace/storage/lst-earthformer/combined_distribution.png', dpi=300, facecolor='white')
|
| 150 |
+
plt.close()
|
| 151 |
+
print('Saved combined_distribution.png')
|
analysis/out/combined_distribution.png
ADDED
|
Git LFS Details
|
analysis/out/kdd_evaluation_report.pdf
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
%PDF-1.4
|
| 2 |
+
%���� ReportLab Generated PDF document (opensource)
|
| 3 |
+
1 0 obj
|
| 4 |
+
<<
|
| 5 |
+
/F1 2 0 R /F2 3 0 R /F3 4 0 R
|
| 6 |
+
>>
|
| 7 |
+
endobj
|
| 8 |
+
2 0 obj
|
| 9 |
+
<<
|
| 10 |
+
/BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font
|
| 11 |
+
>>
|
| 12 |
+
endobj
|
| 13 |
+
3 0 obj
|
| 14 |
+
<<
|
| 15 |
+
/BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font
|
| 16 |
+
>>
|
| 17 |
+
endobj
|
| 18 |
+
4 0 obj
|
| 19 |
+
<<
|
| 20 |
+
/BaseFont /Helvetica-BoldOblique /Encoding /WinAnsiEncoding /Name /F3 /Subtype /Type1 /Type /Font
|
| 21 |
+
>>
|
| 22 |
+
endobj
|
| 23 |
+
5 0 obj
|
| 24 |
+
<<
|
| 25 |
+
/Contents 11 0 R /MediaBox [ 0 0 612 792 ] /Parent 10 0 R /Resources <<
|
| 26 |
+
/Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
|
| 27 |
+
>> /Rotate 0 /Trans <<
|
| 28 |
+
|
| 29 |
+
>>
|
| 30 |
+
/Type /Page
|
| 31 |
+
>>
|
| 32 |
+
endobj
|
| 33 |
+
6 0 obj
|
| 34 |
+
<<
|
| 35 |
+
/Contents 12 0 R /MediaBox [ 0 0 612 792 ] /Parent 10 0 R /Resources <<
|
| 36 |
+
/Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
|
| 37 |
+
>> /Rotate 0 /Trans <<
|
| 38 |
+
|
| 39 |
+
>>
|
| 40 |
+
/Type /Page
|
| 41 |
+
>>
|
| 42 |
+
endobj
|
| 43 |
+
7 0 obj
|
| 44 |
+
<<
|
| 45 |
+
/Contents 13 0 R /MediaBox [ 0 0 612 792 ] /Parent 10 0 R /Resources <<
|
| 46 |
+
/Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ]
|
| 47 |
+
>> /Rotate 0 /Trans <<
|
| 48 |
+
|
| 49 |
+
>>
|
| 50 |
+
/Type /Page
|
| 51 |
+
>>
|
| 52 |
+
endobj
|
| 53 |
+
8 0 obj
|
| 54 |
+
<<
|
| 55 |
+
/PageMode /UseNone /Pages 10 0 R /Type /Catalog
|
| 56 |
+
>>
|
| 57 |
+
endobj
|
| 58 |
+
9 0 obj
|
| 59 |
+
<<
|
| 60 |
+
/Author (\(anonymous\)) /CreationDate (D:20260207010054+00'00') /Creator (\(unspecified\)) /Keywords () /ModDate (D:20260207010054+00'00') /Producer (ReportLab PDF Library - \(opensource\))
|
| 61 |
+
/Subject (\(unspecified\)) /Title (\(anonymous\)) /Trapped /False
|
| 62 |
+
>>
|
| 63 |
+
endobj
|
| 64 |
+
10 0 obj
|
| 65 |
+
<<
|
| 66 |
+
/Count 3 /Kids [ 5 0 R 6 0 R 7 0 R ] /Type /Pages
|
| 67 |
+
>>
|
| 68 |
+
endobj
|
| 69 |
+
11 0 obj
|
| 70 |
+
<<
|
| 71 |
+
/Filter [ /ASCII85Decode /FlateDecode ] /Length 2634
|
| 72 |
+
>>
|
| 73 |
+
stream
|
| 74 |
+
Gb"/(92jn2'#*rfo!/kH">\QG0.-N\"$JBN6h_)?c<fdF>UmmU+1*,oCs7s4PiYtDa9Ei7@h0Rp<!b"=8ps<EIVDZ`nO&f7-jBCUK]>iB."gUcW3?CUItN[@_7'O#8rCDni%a!WE<>jg9n./0J5^0cc%BSbRM\jkBjsd##s=_m_f?3EJ"3.KktMdkELt!h<Ni$F^f$I5>Wd[2Xo#<_I9om.Yl"jOT7@@!d@fCeo@t`uF@KDn9`pa!oAA_CEc!.WT\46njl50+[f-R4/Fou"W_VLEo^l55r^W]"Qt8#r@;@s(d,rWjQd'OQ2N8I;N:7c2m)B=EG;p*`GljW!9i6\b'A2.R0UoU/.saLjir28JJ%o6$&hO"fPBbo"l9qbj#_$cDAuWbAq?NHFC;trGGP9(80Q%S$Xp!s[^ouF>N>`Ao1s`1=\L6mCY-`itfGhR6rr\n.S=_E0:Va782@"rb5saHAs8Ljr_UU:E=jopXU"j[nQ,*'N.YKa/IW"W?qPj"S"/H^&BkJ;'IC4lo\u]EC+!=7?e_uJW1mhTP4^@m`H^:T(@1ej9@(q2O%'-t$:t@S%X@fG734jn00o)uh[W."-NPhRrVb)JrY@UTuV%-A*!B%4gImA)&I*)TilPcM-MIj=ZZs^G0E"Nl9G*<^kmOKn5lo)72X)IQRN?44IHMD-O;#]hQBCagMo!/j^o?0A$Q_.i#9k3,b1KXnl"`GAc`NJnKk`1(lIA8,a_&);P6F_GGTcS8C!#?6<EXs_oN=Q'DOu::2AdJ(:'938hf_gE&e>EsfqZ9e@..piL!lst>Nk]n"G"OH`dXAGk5,#4fs/ZYtXH!0'QsK&q6@0XsYA31K(cgNaM$uIJNoj2./_88He@O_KX:4(hAffRm-_,$\Q=GkV%RW5t1iga#X39f:P;KcH@0`ieNcNoc2"Ng[YQsPiHC@\!;`&f%4U+KuUn.tKidn^Or8jnD3Tks)^VP(730ra<]=+3:#Hm16R6H)dL2?OgPLt339jFJ>c0MIJGX?d;IX-2TR6`'IT-nWhQ"tsb1$,*eO^Q>*g1`$W[6@TZ*6PT-Y@#>CP]7*J6*HU66c)Q1m9AF<P$<K'Opg/fl*.H^m?\!1m94<WkSQ.fi+[;NLNngB+pjqVd(3E<#-ljE1<UbX0U*53M/,39qAthf&ZWX=ja\N/pis:;[e'E2GhjDt_5?03,^k<Y*P?9FRdd35*<_Ak$4ZG;qX#j`e,2rbP;*0`[Diimonfc.n.lOfd4'=p)$hX<ac`Q99NtqX_@BN$,NYAa]>_.@`7/CLWl((q0'c2@g'bKHPK/KP0muGb]2^9$0I9g8(dT0P.M\V2e'`b]l)S/T^&h(^CO3-f3!YBN:MY_t/*L*<_3I$d#<iFI(,[WpC^_LW_/Bd*V=<#;g*!)s*2L(b&P:_.YM+leG&17Sme5<YWG_X1q22rZrG:[.L@/I5Fba:IkiG/bms6DaaI4u/CKQes?8p<>L(T1!=YqA72&c#WY12pebF-tdr3U=#7f7.Hh<IIYIu/pfk.Xr%d@K9S4YNt`[PGG+cf;*Yq]^NO=dVYKUcI?sQS'CYTfK*I]-m0*KjR--Y,kTK>9+bN,`=^G@7H?Qf=-nKJR_uA<WYi0@I!2K3KA7p7ZE^pnYX`L2ej3f]6e!$PK-[Lik?l4FLpm/^A"aiUV!E&SY>J'[KY1;#S1N>.hemp6P6S,F;;_6O_7#Y+S%lfr^#Up&Gaojq+Tme=_'q6(a+2ME<g!bGnV!0_C&:VpSI@QS]pCJ4T8ud3F)t&qIK&Nko;mO"fBgs&q?D3O"p3!giqU#"Yp*r94#Bq8b1B\87W@frs=\*-eFt68V<fm!7sNl&UmF#1D"bnY*&5I7"1?\\GJHEc858W9elB[_uE><E/F&.j3_d.'E$1$Hsd-G1oS(]gL(68Tf-iuFLGiQj^"B%MJe*.)0+hqHr\Z/\]9=JL77/7np'5BF9]ujco%+C]0%.:2&6&$4<>#2N1Z+P4T>A6a"o'V+-04?.ODPZM_XR_8ERTqAD@qqX>HL:;r&%]CZbg%HF)9mS11'/&12Ca<MYEm0F2t%)9H6@`>pDnXHXIifIk55q0O#-CQd7[*"e8"o6bB]WfK*D>f4fb--7JeLh]2"M^]]-L?=1u;8o"YWZ[G6+'e_XS>hP1I3*5i@%M0.`fHJmNWT-bD7`ZHD@*2`"%F:uH(\F(*B,XqJhqgj5nn@La_6(&\69$^Q8=?spb_.$A#T"%qj<9qg?P.BOP1+k[B^:C&2nN[L13Z<6O779Dkc*:etqa$?`]f&N:r_&&L[9r2>=W:<qtjl3pJj0<N4.WFn_*@esP!^o?,VBY%:L6gg*qEMkc\-7!e^$8rc'HSf)C^\/n'cn%JEe"p:0ck(]=_)b9)W-iUjNai=tE:-I@dkZH8#hN&D6GYLIlZ,!VkPNM0SPo]6upKT_sKrQTAb,;6_(3%G'gp,hXEeO\@@^!7F]pK3jGK4TB.>307c^=Zs9'D6n)K3C;:nF@nKu9sYB0s<L^J(0-T+H,B13)<"_PWVp4*/ZU'-'B3(s+f,IlZ3/$2)r]ccJi;TgfJhH>&(eW31]'Y`;KB<^3.d:<OSuWuk/V'/XRQX^T#S>6^p.K6c6jf?c*nbVS280Aq"&?2~>endstream
|
| 75 |
+
endobj
|
| 76 |
+
12 0 obj
|
| 77 |
+
<<
|
| 78 |
+
/Filter [ /ASCII85Decode /FlateDecode ] /Length 3175
|
| 79 |
+
>>
|
| 80 |
+
stream
|
| 81 |
+
GauHN>BAQ/'n5n\^n\4nBEI+7BDSju7,)FHlnn7>1EF4q&gVHaOX`Z>j8JX6\<58EPjN]VhMiE2i8EMqE6e3?+Xi!cUAnJ7&c2/$h9H9M'KrN/M1Q!rgnRXU=9#rXerk\(8gk-(Yh..bVcdA,WgAHrjU&dT7#aI4T<<c.+s]lZON0qY0_h3e36L'-r7M"a?1LU+m+=MO0gi-M<i/qem@']q/Ll<_jlg-2Y1KB\:#/Al2geam@2bio&*Vs_o^L>OQornd)Vtb4.EW:Ppq/&L)'EY<M8ps$!g_<l.LkD$]HrP.O:RXl0;uoHc\$K'P6Om5hNGil5Xq&B5Wj$5-oFPPeZ)^cU2"[L'mn>!JSF*K.l!Va]+L%\-%;l[-)To@@!7?=E=T4K?X2TAhZ;jjj+)BIAK_@8dK^.GGQMDq*^kWh*`+LpOb'R8]CcBsSf>Bq@,[Lq.;!sn?,[aFDhRm!OS.t0!QpF1dm.%dP$A-IooR1bH/6S_Q=5mO+LO`p#AK_'(/>99qa)&UXSj$?$Fj5XS%VW9T,UYq<aCP`oboXDp!Q)CHV^FIVge/=3";'/KHkQs34VCC4?MUXEY)gB;l=[&hr4T"Y(AVYGs]mJn#sJl(OFLi0LT-7LeI@L>#[gfD<glB)YS#8Ms<I5b?\UAZmDk,);:HnA$1eV@Z'e?k%X<WOuP-mRAZa6;AN*bA"H.Q=U6<DpZSO&$<_!(0i+t8TDE1K>S14=P`WV"NURGj<QLA#<JK6G22/nI%s36/&W?+i\u8g.Zeh+aQs?BiLW!PCMso!eM794q=b7]uU%.Zj%9a=UW9(HiR(eikc!ola\sHm:CPlkdQb<-##q9k[67:<S$nHBrR9Pbad(r]%>m.]Z&+/+HK&\D;Np-"#0KLuP(*56;n<9G'@h+ZA]c=85'K3EVVX[Nb5bW9o@HcO60DPP$_e6?/FYCm4_AXR9#tl`Og=Amt.!XcM9Hjg22gIY^0b7s9#\8iYrCQ%@>@`q&J]+`;$`@7k^u#GS\_un/WuQ@G@4$E+AgVV_RD^F(r0pd2?d[K.!egTm96?(5KPV1g4iqncm%)fKO(fL;.24%jR/F"TJ,T<4PKu9!_BCBgXWaO.11)/gO[/<@o<*\:E)0UN,Y.8I+BDhC3J0Y_*!H<;(SC:=:@0Q@B2JlfS/fQ:p!2JVAX>`5%4,RteuEU%BrZ-iM[D9*08G4LWE5(@)a#dB-"]>=@*XNJ!/Y=!-9=L4_I'4AU,)r_RJM/_AIlIglm99(R.dE$)o+_uH!@>>]</]FeX0VhnLIot$:Q/i%>R'ihNc2qSkV1Rnd:*f1ANn;*ZB1FjJ*jkXJKS#nk&1O]P8./]$0*q9d.:3F]l)Og9LB^nEOgqO?AQ>"'s'HJP,e#k?\L6J4fZj76Nh]%PPGoHH+,p/o&T_1O)iq=(V?+J9jEa%mVG473+1/;",8r'^JOol<1h'C>erVBD.q6n*73?)mR>e!!]b@34_Z?%>Bu"qE%fo(PrBm]K,2;`2>o\RFD8fX!`5Pjpd14m5/.S*D=DY.FN+uIWh%FO%(UFA6\*o,N[7aPX"b;rle%21G@k9-7D+%_]PWN-]Gg)m1ulo<U^Vo34%j$Pg9?2>I:CL"Fi^t$]@/$45PRZPt/L^`nC8ifsdug6gp!R+dT(0OPl$kmn7hF.GB\JT4Pr.oN?QmkU2,K;tp,AdmTf3k\l&+EEcrG)h%%\>7fs^UJDkS$*8@Z_<kee"tkSLdchmA$%egt?q/`i5lrWA[&CGq%cmqgknKM`<J1cW6&oc8MJd-SM2DWl`OZXJU)DiFU=tEt%F?a.\)%,l4p9)-<4`WFDg58JUE<bCKI0'NYa5\4,qr6i$?\[ER!q<s73WtQ-R0*``mJQbZ=MZ6[!MU&8s^[eBum(M@0_bQrpE#7Xoo@ajE^>jm=R:q.-.*OG3Xg-Z8\!J/O(dD*$&5?J2j4/kBQhO4^QIIq?,5',6RU$EsiJZ'.CpTG0Zg1aQTkZZK6"e&l@==a7[)=+-H_*+_MR"ii2GdI;>\IdQP\"nO<[-VJtZoOCT%\%bupuM:*1\(s8d+agnIF3IAqq@=D.2o1ME'756L<aB@NDq^PmbO,%KRAU8t(a5DsN2V>q01kO<BUSo:Ac+B]T69^Sl84%o\(6u@V-eb;*4WM69rt5/\DJfJFEob47X(*+A9DhF$0[GYV$YmVW<.Y/$g-jR\^,2e>k[$dd\c2rgD;C`Aq@9FR:3uh<iROjVq=/5>G?V*pS5u7gZG8d]RSXam``o2P'@/:FBW]fdYr,2YFj6FX5Yd=QofF:2k;rV?n7k@^+28)%Lg!GF]MdQ03iP7d&.pJX579^`]pXK%fR;^qfC0E<.ZZ4Wm_-G!s,l=6\b)%Yl;OZJ''/*aW#qd-2"<R$BVAX+'[Z>0_"OB>T+B0kD$-l^[DJ\S"YSn?iN^us8`'l9]oL6il*=WP"\spqI,`5G'fGhroRVWSm:;eX4Xm_?bgZ@97qA0YVo_^V1e^'LJ>E!FKL$<FIu%b0433RsDa_l-pEq[UX2Kh.IHL1pb^Y^`,X>C^;:@BLEG/KnM[BTN7.jkC8r<4ebo!55/(AHe\otkiQFu<K09"tYqPl;o$*($;HgmsOaD<DFO<tVs--j<(>OEUtH:;k,3)XR%L5PB$J^Cj"C+i+:6J5T4TdTX-d689f4<[`u^VS[b[4.%qI60/D!p]lKlA#m8-n:m@(uqEka"2`qKgbDP8%R9tH<Br_c`<A8Kbh[C'-s5J.Yo$_h1DNiTI<0X>1nJDgD&r_#)+G?6?"6>PoKcR"ehB1Sp8_7;[N?#?]0PcK*^4@X\[jYKX:7MRs3%^JD&ua[)s!NH)X.rE`51oeC8QT>^b*`_&/&C]iR'*5ZZbD+fHA;!1Lfob@dq\q%?N]M+5b+X+aBsWttpiTut>N,H`*t9qJ=?/A(RY5lmS=%^8rE`=5'?_!N#][],sIf8+"CBT'RXO`eXd@+]S:=ApLPkG6HOD=-+D@gS1G.Nbk]<>[0BCPYm%pk`U2!4]2SkDLuFiqP)15<@JahpfEtiFVPWfnhTDTfm<$=T86O]gt0:No>#GSL\sf-[$$*[l)b2g$FObWD<#/q]F'IePRHWqk/,lBiC6`G-DWN`"3W.'Z%It4+Q_OjT_2LqW'Bb%24o]O9Ho^!ZY5-6#^nMiVT?eNZgknrr^1`a]\~>endstream
|
| 82 |
+
endobj
|
| 83 |
+
13 0 obj
|
| 84 |
+
<<
|
| 85 |
+
/Filter [ /ASCII85Decode /FlateDecode ] /Length 3427
|
| 86 |
+
>>
|
| 87 |
+
stream
|
| 88 |
+
Gat%'gMYe+&q/)-&D.e3&9:3;f6p;ta^>lUY`fo+/<C\$c+YH<aXa@Hj8&Nt>?-o6CgI5h1!Mm^,S*OjU"Gk\qM/GW^HWA%m[!eL,:?`XgF_A59?HQKo&9;ms'B\1VA0c?89.aG!Ssq*\5a^[EdPGiJ%FjCN1/hue*k@P`lMq9qa5iYVN5WO2@Xs3jU;%ZmIi?HDbe3KHIAkQe;OJi%>rYG34-:eO^kjt%7l-2)tNs)DAm]uo3m#6)RWN2VXC(TQLEP=]iS0\J,P*aWrB4cW"$:a)AV(O4Z*[Hn*38%N9!3G]6STtI/=;^q0mD?AH*be^Y<YpV3YcThl<S6[J"^T;uNAe\8Bao8B/=e6[aXP&bT6bVg?j&FY28d[Th:_FsNQ'eE]*M%;Hm>OL?+MTH<B)"*)S-m.G2E`m3V=Dd`@LhLaYXcX4+(01t"(,l)aNEjHd@D:m4`ClI&%pYGA5;0r/DVj@83DU]cROgmqa::Nu:-mfR0#sjq,F&?J$akS_si2r<ddZhhiTIJ2E;.TQ^en':A+Ne<s<i)<&3FPpbPtCqd&6W1>&NtWIcEtaGl:fAHTJM)3OH@c[q9lEgb3'-=l/^0WG-*QG^6!k?=U+RjDs;#-=^[;d>eNX*"SPA5X7o/LJNXXbl9,b_@#m^eHB3^bm#ah>mh)`)HXp[=lHB?W`*[Hh+e:9rLhiP73.uh-(HfX$aqri!5iW7OiVLAqrsXUia0ULnkglI'iogQam6rkYTd!-$-8Q;KDZ7*6pC!'2[')uYM%*g6E-iJF7B._efZuH<56p=2j/L*NpAG]s*&C,2/(8lshUcVFA"a!r8LF"RcMpmemt-iObL=H$5(EI&1Ph+L?b_Pd11O=PbVT(mp,RR>G>2NZU7YL'<SU)/@.mm,L62t$7[[N$+TgBu1<hKo*Om;)KuN;`a\@8Jc]]dMMVF0Tr6.Tnfmtn71kCGo<(I8&iq`u&BC*[J^O>tJ:C$o6aV(#e@/;VgQqcWu\rU"0m$d@DZcZjRkTq%`K&ctc9J-=sOGh<ROdiU4Pm\uj',S'u'pNKW;BNMbH-,Dk>XKHR&bDc5RO>[0oSP]f'<R'$d>GFVXU&/t.uK.IMTeksKaRdVT2pX9SE6$&eq.7Z%Xf"mJCuhd?T1rrg!`\nLBK:=,!ffAk@(f,Q/i_%27$/e!^=J)/Mpm))5%^WU&D:S>-l=Z]6<g5.q"+\nYkcWIJp(<%Qog[!^T]b(FBlIdA-h-``>rZ`Mu$c.RI("3P6Jr.OQn9co7'oR,R5%C".lTl>oT=!l1gp$XAMZYaVmBf8Dqje?j]'oj*qc)%j<-<eM6ILMR^!3oE$*!j,pP_1dqN^l84`d<#8bVumL!MR[nb\-Ph1)9jVg@n[W2g/j"g7B$47&_MW_"9O.8;o%TVFem(Ge;j3qV%*gi'h!/$3UU*/HFZa:6&Y&/j?0ci8osm<Bu8XP7C9`0Pj;#Y!L9WlZE31k0^bc<<g+&;KXD2qLjA3Q_m%a1^uPQ@IGJe>6Yt`uj^S!RCm\Qkj%+V2+(;bejjNsd,JSC;/9;qT<a?&YE5t/s78Wr-fP'%,>3^\AZ%.lZ[KqVk.GI2IMJNYh,#$VZ+Bdt899rb3<\/C'7A)Pkg<49D!8?_l?r)Qd45Xa!W(R?i"ed>nZcEI^JSY#aOVlP91:3uiD3eOZC4?,YS"b9'nI)!;m;[>l3-IN/n`:;^E^:n,gb]kqVVDQ1Z+63,>D2+4C?\Fk/[GH-:=laV^oRO&mlNEmd%L@('A`<R:AY3]"AgW.!ubXde,h=m=qP%l=k+tE*KRe.<a\%2AJIH^a%F<@/V)-;k/hSCl6CFC!4@2C/E=Q%%.Z)?`o^_$lG@-@:r@/.eA+Ba`k<EZl^ik**?-,7Z<Ln!epD4`p_[TT)eKkJZ-:puKrl,a\noW^Te*a/#+7'ie,,L9cq_!KmnNs*p@Y:E;jS'b>Jp]OS-b_s,22.H0FL6QC_gV!(q*[2Kn<leK,G%3/9U`"i&:mjmlNj$:g`sSmWHM71^.8FO,IPa/>.X>!\Tqp4M!GW:gH;=//Mr'1@CMa0Um[+pRNNO88Yhkqh&WRH>3tOWZQ>gi&si>JoMLb>XB.&lUj"72o9f<>GC5>h8#,,cn^^G$40JbGGKa32=?_>B+7"Jh1iL/J6Ws.dst\n7Yk<[Y!01<,OALc"%2MK$pZGjK"4c++I@`<pXNm^)S=I9:EQ2)qPXcZQO&\rj2)^r$YYlL=`ONZ9eML0ck'q%\Xf%U>XK0*3;-ciQWN,<I3fe`RT!GboWD9\:[Jq1"WE9:Oc/E7\VQ.if<-`B\Hp`'+U\tr#VB3AE/hYM$"nLsndIgFLZ-UfjtbKZ*lhKYThm#HJ9GKVQJHRe>XNmlkouAhhN.cMV(L*-#oV(J"duP^6dT-s&)1#M\)!(U"G#3R9ftdbOP5(f4@=LTi<#6b<X)e]6;(@*iu-19kjapO#\m(jVYZUIqfL=6!p!s5YK7=l5&3Ps1pL2*I:f/ZP>71#>X<MbF!\c?/6m"Q^A87(dtu`5U#/Z_*b^gY0?OhB6*"6,`=O,$Y7f/c=V6I!(+Pk:!49Uk"mIP_&6+_HnSg_-JT(nr[h8?s^_[,kRTOJ'arhI@b6,99[P2d;IRpW8)3b%J"ud<nY:r>j[VkOE`mO5NH5NSR#,mNkjT3jXEKqF$U8^k].l08@bk]i@;N&ndA_p?T]].m#bQ'Ghe\aqe]np+QH7\'5a2D[0=,E4.!`p7FLETQBf>&7jC!RnPDqKZb$IW"0!TpOL$pX!Z3K3)M\4^:?1u`8j`+T`aIMM/m<Y8VbiFS"+V1JBPLm6+`,#+$59a0c3^$Mk][XFm>_f4L1(EP2QKnIpoB,4QgAa;Z_(0ti%1@^l_-VL9/%B^X-E:s`Lb5X*gJiS%9WhnII3u\82]Z#jU<5qp@Ea='UnZT_XI$!0&(m?I\'$+&2IY-m+!Z\jX0_X<^?LMtBiR(:DW?SLT&hD9:UJ%Z`MFK"b![QChp-sEXBmb%<"I[a;cR3t6k^nEtNHLpl>cnH+d?R[^\PqouMfkXM.pX'kq#\mWoY2KO=I/G+kN&h]^]+(eV;uI-Zu^o4jegjqDjUIAp*NjhaT@0g^Eda3lXTg7g\,\CpZja2S+#lT^M2I%En50_[QgDID;)E_S]<U)gFq`0:##C5`OL:MDR(*<RE%0lTYZ*+[f-"aY%cYiC`_38D82U]2/V)$k&F,Mp*Yc<PBgF)V&&DVD;/FAj-mFDcfT4Ag\.Q:\>F-?`B:;;g\t_<DDI8g^1`,sVJZ3gH!Jh,rV8RYC"rW@?1N\TnV(9=KjF5&?1EVS/^.s<<=>R*f[Rd6Q56k^W5ZJ'[WSjt`?K:Y_6p$nj'<Sp1W"DD:X@NoI$0De?iOI)<p!VSQi9Wnr^<P2BUW+_:J-"$Vq0k\^%fn]%9**+TDX06+g:kU$+Q6H~>endstream
|
| 89 |
+
endobj
|
| 90 |
+
xref
|
| 91 |
+
0 14
|
| 92 |
+
0000000000 65535 f
|
| 93 |
+
0000000061 00000 n
|
| 94 |
+
0000000112 00000 n
|
| 95 |
+
0000000219 00000 n
|
| 96 |
+
0000000331 00000 n
|
| 97 |
+
0000000450 00000 n
|
| 98 |
+
0000000645 00000 n
|
| 99 |
+
0000000840 00000 n
|
| 100 |
+
0000001035 00000 n
|
| 101 |
+
0000001104 00000 n
|
| 102 |
+
0000001384 00000 n
|
| 103 |
+
0000001456 00000 n
|
| 104 |
+
0000004182 00000 n
|
| 105 |
+
0000007449 00000 n
|
| 106 |
+
trailer
|
| 107 |
+
<<
|
| 108 |
+
/ID
|
| 109 |
+
[<112ce70afde50720dbcbf78f979ec59c><112ce70afde50720dbcbf78f979ec59c>]
|
| 110 |
+
% ReportLab generated PDF document -- digest (opensource)
|
| 111 |
+
|
| 112 |
+
/Info 9 0 R
|
| 113 |
+
/Root 8 0 R
|
| 114 |
+
/Size 14
|
| 115 |
+
>>
|
| 116 |
+
startxref
|
| 117 |
+
10968
|
| 118 |
+
%%EOF
|
analysis/out/lcz_class_distribution.png
ADDED
|
Git LFS Details
|
analysis/out/lcz_class_stats.txt
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
LCZ Class Distribution Statistics
|
| 2 |
+
============================================================
|
| 3 |
+
|
| 4 |
+
Image dimensions: 45,096 x 18,379
|
| 5 |
+
Total pixels (excluding class 0): 3,978,683
|
| 6 |
+
|
| 7 |
+
Dominant class: 6 (Open low-rise)
|
| 8 |
+
|
| 9 |
+
Class Ranking by Area Coverage:
|
| 10 |
+
------------------------------------------------------------
|
| 11 |
+
Rank Class Count Percentage Description
|
| 12 |
+
------------------------------------------------------------
|
| 13 |
+
1 6 2,304,386 57.9183% Open low-rise
|
| 14 |
+
2 14 435,041 10.9343% Low plants
|
| 15 |
+
3 11 286,834 7.2093% Dense trees
|
| 16 |
+
4 16 198,951 5.0004% Bare soil
|
| 17 |
+
5 13 183,003 4.5996% Bush, scrub
|
| 18 |
+
6 8 135,060 3.3946% Large low-rise
|
| 19 |
+
7 17 128,621 3.2328% Water
|
| 20 |
+
8 12 128,592 3.2320% Scattered trees
|
| 21 |
+
9 15 77,947 1.9591% Bare rock
|
| 22 |
+
10 18 56,554 1.4214% Custom/Unknown
|
| 23 |
+
11 2 17,578 0.4418% Compact mid-rise
|
| 24 |
+
12 3 10,448 0.2626% Compact low-rise
|
| 25 |
+
13 10 6,202 0.1559% Heavy industry
|
| 26 |
+
14 4 4,514 0.1135% Open high-rise
|
| 27 |
+
15 5 2,839 0.0714% Open mid-rise
|
| 28 |
+
16 1 2,113 0.0531% Compact high-rise
|
| 29 |
+
|
| 30 |
+
============================================================
|
analysis/out/lst_per_lcz_means.png
ADDED
|
Git LFS Details
|
analysis/out/lst_per_lcz_overlay.png
ADDED
|
Git LFS Details
|
analysis/out/lst_per_lcz_stats.txt
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
LST Distribution per LCZ Class
|
| 2 |
+
======================================================================
|
| 3 |
+
|
| 4 |
+
Total LST files processed: 1,811,272
|
| 5 |
+
LCZ classes with data: 16
|
| 6 |
+
|
| 7 |
+
Class Description Pixels Mean Std Median Min Max
|
| 8 |
+
----------------------------------------------------------------------------------------------
|
| 9 |
+
LCZ 1 Compact high-rise 8,639,972 75.89 26.96 79 -189 148
|
| 10 |
+
LCZ 2 Compact mid-rise 77,403,212 77.34 26.79 81 -189 175
|
| 11 |
+
LCZ 3 Compact low-rise 47,478,288 78.88 29.14 83 -189 151
|
| 12 |
+
LCZ 4 Open high-rise 20,344,389 82.40 28.95 85 -189 164
|
| 13 |
+
LCZ 5 Open mid-rise 16,910,931 89.08 28.14 91 -189 161
|
| 14 |
+
LCZ 6 Open low-rise 11,185,948,355 82.78 28.56 85 -189 192
|
| 15 |
+
LCZ 8 Large low-rise 737,551,075 94.14 27.95 98 -189 187
|
| 16 |
+
LCZ 10 Heavy industry 28,123,635 82.89 31.39 85 -189 164
|
| 17 |
+
LCZ 11 Dense trees 1,234,477,681 67.21 25.56 71 -189 211
|
| 18 |
+
LCZ 12 Scattered trees 583,568,105 73.39 27.82 77 -189 211
|
| 19 |
+
LCZ 13 Bush, scrub 1,302,142,502 100.87 27.01 103 -189 179
|
| 20 |
+
LCZ 14 Low plants 2,372,490,276 82.20 29.32 84 -189 211
|
| 21 |
+
LCZ 15 Bare rock 501,687,608 97.59 26.48 100 -189 177
|
| 22 |
+
LCZ 16 Bare soil 1,654,509,721 103.50 27.53 108 -189 181
|
| 23 |
+
LCZ 17 Water 514,340,946 65.40 25.38 68 -189 169
|
| 24 |
+
LCZ 18 Custom/Unknown 194,038,393 97.10 26.06 99 -189 153
|
| 25 |
+
|
| 26 |
+
Total 20,479,655,089
|
analysis/out/lst_per_lcz_subplots.png
ADDED
|
Git LFS Details
|
analysis/out/lst_temperature_distribution.png
ADDED
|
Git LFS Details
|
analysis/out/lst_temperature_stats.txt
ADDED
|
@@ -0,0 +1,424 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
LST Temperature Distribution Statistics
|
| 2 |
+
==================================================
|
| 3 |
+
|
| 4 |
+
Total files processed: 1,811,272
|
| 5 |
+
Total pixels (excluding 0°F): 22,134,369,574
|
| 6 |
+
|
| 7 |
+
Min temperature: -189°F
|
| 8 |
+
Max temperature: 211°F
|
| 9 |
+
Mean temperature: 84.27°F
|
| 10 |
+
Median temperature: 85°F
|
| 11 |
+
Mode temperature: 89°F
|
| 12 |
+
Std deviation: 29.61°F
|
| 13 |
+
|
| 14 |
+
Percentiles:
|
| 15 |
+
10th: 51°F
|
| 16 |
+
25th: 66°F
|
| 17 |
+
50th: 85°F
|
| 18 |
+
75th: 104°F
|
| 19 |
+
90th: 121°F
|
| 20 |
+
|
| 21 |
+
==================================================
|
| 22 |
+
Full Histogram Data
|
| 23 |
+
Temp(°F) Count Probability
|
| 24 |
+
--------------------------------------------------
|
| 25 |
+
-189 36,251,640 0.00163780
|
| 26 |
+
-188 35,439 0.00000160
|
| 27 |
+
-187 35,904 0.00000162
|
| 28 |
+
-186 37,488 0.00000169
|
| 29 |
+
-185 38,206 0.00000173
|
| 30 |
+
-184 39,368 0.00000178
|
| 31 |
+
-183 40,322 0.00000182
|
| 32 |
+
-182 40,801 0.00000184
|
| 33 |
+
-181 41,656 0.00000188
|
| 34 |
+
-180 42,985 0.00000194
|
| 35 |
+
-179 43,742 0.00000198
|
| 36 |
+
-178 45,633 0.00000206
|
| 37 |
+
-177 46,522 0.00000210
|
| 38 |
+
-176 47,888 0.00000216
|
| 39 |
+
-175 49,239 0.00000222
|
| 40 |
+
-174 50,420 0.00000228
|
| 41 |
+
-173 51,431 0.00000232
|
| 42 |
+
-172 52,392 0.00000237
|
| 43 |
+
-171 53,077 0.00000240
|
| 44 |
+
-170 53,560 0.00000242
|
| 45 |
+
-169 55,053 0.00000249
|
| 46 |
+
-168 56,262 0.00000254
|
| 47 |
+
-167 56,998 0.00000258
|
| 48 |
+
-166 57,735 0.00000261
|
| 49 |
+
-165 58,097 0.00000262
|
| 50 |
+
-164 58,656 0.00000265
|
| 51 |
+
-163 60,379 0.00000273
|
| 52 |
+
-162 61,254 0.00000277
|
| 53 |
+
-161 62,235 0.00000281
|
| 54 |
+
-160 63,203 0.00000286
|
| 55 |
+
-159 62,793 0.00000284
|
| 56 |
+
-158 64,597 0.00000292
|
| 57 |
+
-157 65,391 0.00000295
|
| 58 |
+
-156 65,579 0.00000296
|
| 59 |
+
-155 65,337 0.00000295
|
| 60 |
+
-154 65,987 0.00000298
|
| 61 |
+
-153 66,491 0.00000300
|
| 62 |
+
-152 67,515 0.00000305
|
| 63 |
+
-151 66,940 0.00000302
|
| 64 |
+
-150 67,395 0.00000304
|
| 65 |
+
-149 68,243 0.00000308
|
| 66 |
+
-148 69,925 0.00000316
|
| 67 |
+
-147 70,823 0.00000320
|
| 68 |
+
-146 72,184 0.00000326
|
| 69 |
+
-145 72,311 0.00000327
|
| 70 |
+
-144 73,688 0.00000333
|
| 71 |
+
-143 76,386 0.00000345
|
| 72 |
+
-142 78,552 0.00000355
|
| 73 |
+
-141 80,552 0.00000364
|
| 74 |
+
-140 82,697 0.00000374
|
| 75 |
+
-139 84,048 0.00000380
|
| 76 |
+
-138 84,453 0.00000382
|
| 77 |
+
-137 87,801 0.00000397
|
| 78 |
+
-136 89,880 0.00000406
|
| 79 |
+
-135 93,504 0.00000422
|
| 80 |
+
-134 96,656 0.00000437
|
| 81 |
+
-133 100,018 0.00000452
|
| 82 |
+
-132 100,857 0.00000456
|
| 83 |
+
-131 102,183 0.00000462
|
| 84 |
+
-130 104,170 0.00000471
|
| 85 |
+
-129 105,650 0.00000477
|
| 86 |
+
-128 107,247 0.00000485
|
| 87 |
+
-127 106,616 0.00000482
|
| 88 |
+
-126 109,141 0.00000493
|
| 89 |
+
-125 110,852 0.00000501
|
| 90 |
+
-124 112,902 0.00000510
|
| 91 |
+
-123 112,019 0.00000506
|
| 92 |
+
-122 114,243 0.00000516
|
| 93 |
+
-121 113,886 0.00000515
|
| 94 |
+
-120 116,808 0.00000528
|
| 95 |
+
-119 119,117 0.00000538
|
| 96 |
+
-118 120,144 0.00000543
|
| 97 |
+
-117 122,225 0.00000552
|
| 98 |
+
-116 125,102 0.00000565
|
| 99 |
+
-115 127,927 0.00000578
|
| 100 |
+
-114 130,343 0.00000589
|
| 101 |
+
-113 133,200 0.00000602
|
| 102 |
+
-112 135,114 0.00000610
|
| 103 |
+
-111 137,823 0.00000623
|
| 104 |
+
-110 136,479 0.00000617
|
| 105 |
+
-109 139,720 0.00000631
|
| 106 |
+
-108 137,158 0.00000620
|
| 107 |
+
-107 139,854 0.00000632
|
| 108 |
+
-106 144,329 0.00000652
|
| 109 |
+
-105 146,899 0.00000664
|
| 110 |
+
-104 150,054 0.00000678
|
| 111 |
+
-103 151,248 0.00000683
|
| 112 |
+
-102 155,009 0.00000700
|
| 113 |
+
-101 157,033 0.00000709
|
| 114 |
+
-100 161,707 0.00000731
|
| 115 |
+
-99 162,157 0.00000733
|
| 116 |
+
-98 166,849 0.00000754
|
| 117 |
+
-97 167,537 0.00000757
|
| 118 |
+
-96 171,898 0.00000777
|
| 119 |
+
-95 175,085 0.00000791
|
| 120 |
+
-94 179,598 0.00000811
|
| 121 |
+
-93 180,098 0.00000814
|
| 122 |
+
-92 182,006 0.00000822
|
| 123 |
+
-91 187,332 0.00000846
|
| 124 |
+
-90 190,658 0.00000861
|
| 125 |
+
-89 197,191 0.00000891
|
| 126 |
+
-88 196,729 0.00000889
|
| 127 |
+
-87 202,424 0.00000915
|
| 128 |
+
-86 202,238 0.00000914
|
| 129 |
+
-85 209,128 0.00000945
|
| 130 |
+
-84 213,288 0.00000964
|
| 131 |
+
-83 222,725 0.00001006
|
| 132 |
+
-82 227,868 0.00001029
|
| 133 |
+
-81 237,465 0.00001073
|
| 134 |
+
-80 251,257 0.00001135
|
| 135 |
+
-79 260,433 0.00001177
|
| 136 |
+
-78 272,390 0.00001231
|
| 137 |
+
-77 290,171 0.00001311
|
| 138 |
+
-76 303,317 0.00001370
|
| 139 |
+
-75 313,309 0.00001415
|
| 140 |
+
-74 322,618 0.00001458
|
| 141 |
+
-73 334,632 0.00001512
|
| 142 |
+
-72 353,130 0.00001595
|
| 143 |
+
-71 359,524 0.00001624
|
| 144 |
+
-70 357,941 0.00001617
|
| 145 |
+
-69 351,211 0.00001587
|
| 146 |
+
-68 350,624 0.00001584
|
| 147 |
+
-67 349,559 0.00001579
|
| 148 |
+
-66 334,525 0.00001511
|
| 149 |
+
-65 326,821 0.00001477
|
| 150 |
+
-64 322,808 0.00001458
|
| 151 |
+
-63 323,929 0.00001463
|
| 152 |
+
-62 325,730 0.00001472
|
| 153 |
+
-61 323,769 0.00001463
|
| 154 |
+
-60 322,102 0.00001455
|
| 155 |
+
-59 328,793 0.00001485
|
| 156 |
+
-58 332,627 0.00001503
|
| 157 |
+
-57 340,329 0.00001538
|
| 158 |
+
-56 340,596 0.00001539
|
| 159 |
+
-55 341,012 0.00001541
|
| 160 |
+
-54 347,042 0.00001568
|
| 161 |
+
-53 355,861 0.00001608
|
| 162 |
+
-52 360,641 0.00001629
|
| 163 |
+
-51 358,276 0.00001619
|
| 164 |
+
-50 362,363 0.00001637
|
| 165 |
+
-49 367,568 0.00001661
|
| 166 |
+
-48 390,242 0.00001763
|
| 167 |
+
-47 404,833 0.00001829
|
| 168 |
+
-46 424,023 0.00001916
|
| 169 |
+
-45 436,665 0.00001973
|
| 170 |
+
-44 460,423 0.00002080
|
| 171 |
+
-43 478,526 0.00002162
|
| 172 |
+
-42 504,467 0.00002279
|
| 173 |
+
-41 530,549 0.00002397
|
| 174 |
+
-40 552,373 0.00002496
|
| 175 |
+
-39 566,420 0.00002559
|
| 176 |
+
-38 578,391 0.00002613
|
| 177 |
+
-37 588,748 0.00002660
|
| 178 |
+
-36 594,086 0.00002684
|
| 179 |
+
-35 625,401 0.00002825
|
| 180 |
+
-34 652,510 0.00002948
|
| 181 |
+
-33 657,182 0.00002969
|
| 182 |
+
-32 630,716 0.00002849
|
| 183 |
+
-31 635,643 0.00002872
|
| 184 |
+
-30 639,302 0.00002888
|
| 185 |
+
-29 657,737 0.00002972
|
| 186 |
+
-28 672,061 0.00003036
|
| 187 |
+
-27 690,315 0.00003119
|
| 188 |
+
-26 701,577 0.00003170
|
| 189 |
+
-25 712,666 0.00003220
|
| 190 |
+
-24 775,338 0.00003503
|
| 191 |
+
-23 894,227 0.00004040
|
| 192 |
+
-22 1,027,456 0.00004642
|
| 193 |
+
-21 1,107,940 0.00005006
|
| 194 |
+
-20 1,144,083 0.00005169
|
| 195 |
+
-19 1,168,537 0.00005279
|
| 196 |
+
-18 1,144,842 0.00005172
|
| 197 |
+
-17 1,154,787 0.00005217
|
| 198 |
+
-16 1,210,320 0.00005468
|
| 199 |
+
-15 1,206,142 0.00005449
|
| 200 |
+
-14 1,197,578 0.00005410
|
| 201 |
+
-13 1,207,750 0.00005456
|
| 202 |
+
-12 1,219,800 0.00005511
|
| 203 |
+
-11 1,412,073 0.00006380
|
| 204 |
+
-10 1,842,731 0.00008325
|
| 205 |
+
-9 1,935,957 0.00008746
|
| 206 |
+
-8 1,760,387 0.00007953
|
| 207 |
+
-7 1,783,568 0.00008058
|
| 208 |
+
-6 1,738,855 0.00007856
|
| 209 |
+
-5 1,666,534 0.00007529
|
| 210 |
+
-4 1,604,878 0.00007251
|
| 211 |
+
-3 1,683,082 0.00007604
|
| 212 |
+
-2 1,908,774 0.00008624
|
| 213 |
+
-1 2,295,132 0.00010369
|
| 214 |
+
1 5,288,349 0.00023892
|
| 215 |
+
2 5,363,497 0.00024232
|
| 216 |
+
3 5,104,251 0.00023060
|
| 217 |
+
4 5,120,197 0.00023132
|
| 218 |
+
5 6,102,346 0.00027570
|
| 219 |
+
6 6,687,498 0.00030213
|
| 220 |
+
7 6,435,962 0.00029077
|
| 221 |
+
8 6,472,710 0.00029243
|
| 222 |
+
9 6,525,365 0.00029481
|
| 223 |
+
10 6,434,344 0.00029069
|
| 224 |
+
11 6,754,415 0.00030516
|
| 225 |
+
12 7,826,022 0.00035357
|
| 226 |
+
13 8,929,130 0.00040341
|
| 227 |
+
14 9,645,440 0.00043577
|
| 228 |
+
15 9,948,900 0.00044948
|
| 229 |
+
16 10,493,584 0.00047409
|
| 230 |
+
17 10,831,234 0.00048934
|
| 231 |
+
18 11,395,308 0.00051482
|
| 232 |
+
19 12,091,541 0.00054628
|
| 233 |
+
20 14,048,469 0.00063469
|
| 234 |
+
21 16,700,032 0.00075448
|
| 235 |
+
22 18,984,842 0.00085771
|
| 236 |
+
23 20,147,106 0.00091022
|
| 237 |
+
24 20,985,736 0.00094811
|
| 238 |
+
25 21,421,466 0.00096779
|
| 239 |
+
26 22,748,678 0.00102775
|
| 240 |
+
27 24,605,197 0.00111163
|
| 241 |
+
28 26,070,994 0.00117785
|
| 242 |
+
29 28,734,290 0.00129818
|
| 243 |
+
30 31,255,320 0.00141207
|
| 244 |
+
31 36,587,154 0.00165296
|
| 245 |
+
32 43,714,099 0.00197494
|
| 246 |
+
33 47,944,312 0.00216606
|
| 247 |
+
34 51,763,802 0.00233862
|
| 248 |
+
35 55,332,810 0.00249986
|
| 249 |
+
36 57,005,442 0.00257543
|
| 250 |
+
37 59,242,241 0.00267648
|
| 251 |
+
38 62,218,734 0.00281096
|
| 252 |
+
39 67,461,422 0.00304781
|
| 253 |
+
40 72,502,195 0.00327555
|
| 254 |
+
41 77,665,614 0.00350882
|
| 255 |
+
42 85,132,479 0.00384617
|
| 256 |
+
43 90,827,939 0.00410348
|
| 257 |
+
44 98,760,930 0.00446188
|
| 258 |
+
45 106,472,252 0.00481027
|
| 259 |
+
46 114,927,802 0.00519228
|
| 260 |
+
47 121,931,391 0.00550869
|
| 261 |
+
48 132,489,709 0.00598570
|
| 262 |
+
49 142,506,828 0.00643826
|
| 263 |
+
50 154,691,491 0.00698875
|
| 264 |
+
51 163,021,106 0.00736507
|
| 265 |
+
52 172,606,469 0.00779812
|
| 266 |
+
53 180,839,336 0.00817007
|
| 267 |
+
54 187,992,665 0.00849325
|
| 268 |
+
55 196,754,265 0.00888908
|
| 269 |
+
56 199,502,795 0.00901326
|
| 270 |
+
57 210,031,648 0.00948894
|
| 271 |
+
58 218,436,703 0.00986867
|
| 272 |
+
59 228,996,685 0.01034575
|
| 273 |
+
60 230,665,178 0.01042113
|
| 274 |
+
61 237,091,158 0.01071145
|
| 275 |
+
62 244,724,710 0.01105632
|
| 276 |
+
63 255,201,905 0.01152967
|
| 277 |
+
64 261,793,910 0.01182748
|
| 278 |
+
65 271,549,964 0.01226825
|
| 279 |
+
66 278,993,685 0.01260455
|
| 280 |
+
67 281,980,067 0.01273947
|
| 281 |
+
68 285,372,456 0.01289273
|
| 282 |
+
69 283,307,887 0.01279946
|
| 283 |
+
70 285,363,255 0.01289231
|
| 284 |
+
71 284,645,948 0.01285991
|
| 285 |
+
72 286,792,859 0.01295690
|
| 286 |
+
73 285,792,272 0.01291170
|
| 287 |
+
74 289,034,733 0.01305819
|
| 288 |
+
75 286,985,938 0.01296563
|
| 289 |
+
76 288,909,317 0.01305252
|
| 290 |
+
77 289,657,794 0.01308634
|
| 291 |
+
78 293,539,672 0.01326171
|
| 292 |
+
79 293,076,033 0.01324077
|
| 293 |
+
80 296,869,227 0.01341214
|
| 294 |
+
81 300,753,645 0.01358763
|
| 295 |
+
82 302,268,952 0.01365609
|
| 296 |
+
83 304,020,469 0.01373522
|
| 297 |
+
84 301,344,003 0.01361430
|
| 298 |
+
85 303,175,634 0.01369705
|
| 299 |
+
86 304,005,869 0.01373456
|
| 300 |
+
87 308,227,622 0.01392529
|
| 301 |
+
88 308,207,005 0.01392436
|
| 302 |
+
89 311,048,022 0.01405272
|
| 303 |
+
90 308,870,895 0.01395436
|
| 304 |
+
91 309,264,212 0.01397213
|
| 305 |
+
92 304,613,407 0.01376201
|
| 306 |
+
93 303,834,943 0.01372684
|
| 307 |
+
94 301,155,871 0.01360580
|
| 308 |
+
95 295,871,230 0.01336705
|
| 309 |
+
96 293,654,991 0.01326692
|
| 310 |
+
97 286,626,709 0.01294940
|
| 311 |
+
98 282,394,059 0.01275817
|
| 312 |
+
99 274,784,524 0.01241438
|
| 313 |
+
100 270,250,104 0.01220952
|
| 314 |
+
101 261,583,266 0.01181797
|
| 315 |
+
102 256,233,553 0.01157628
|
| 316 |
+
103 248,190,112 0.01121288
|
| 317 |
+
104 243,688,065 0.01100949
|
| 318 |
+
105 236,204,740 0.01067140
|
| 319 |
+
106 231,230,712 0.01044668
|
| 320 |
+
107 224,615,989 0.01014784
|
| 321 |
+
108 217,485,314 0.00982568
|
| 322 |
+
109 213,539,165 0.00964740
|
| 323 |
+
110 207,600,985 0.00937912
|
| 324 |
+
111 204,845,866 0.00925465
|
| 325 |
+
112 199,374,355 0.00900746
|
| 326 |
+
113 196,267,975 0.00886711
|
| 327 |
+
114 190,677,974 0.00861457
|
| 328 |
+
115 186,896,222 0.00844371
|
| 329 |
+
116 180,366,460 0.00814871
|
| 330 |
+
117 175,628,335 0.00793464
|
| 331 |
+
118 168,576,388 0.00761605
|
| 332 |
+
119 163,891,505 0.00740439
|
| 333 |
+
120 158,339,755 0.00715357
|
| 334 |
+
121 152,004,656 0.00686736
|
| 335 |
+
122 148,242,654 0.00669740
|
| 336 |
+
123 142,985,849 0.00645990
|
| 337 |
+
124 138,781,969 0.00626998
|
| 338 |
+
125 132,309,630 0.00597756
|
| 339 |
+
126 127,439,801 0.00575755
|
| 340 |
+
127 121,528,626 0.00549049
|
| 341 |
+
128 117,109,018 0.00529082
|
| 342 |
+
129 110,912,196 0.00501086
|
| 343 |
+
130 105,690,880 0.00477497
|
| 344 |
+
131 99,314,409 0.00448689
|
| 345 |
+
132 94,578,692 0.00427293
|
| 346 |
+
133 88,992,329 0.00402055
|
| 347 |
+
134 83,942,044 0.00379238
|
| 348 |
+
135 78,241,347 0.00353484
|
| 349 |
+
136 71,796,863 0.00324368
|
| 350 |
+
137 65,802,215 0.00297285
|
| 351 |
+
138 58,835,132 0.00265809
|
| 352 |
+
139 52,806,867 0.00238574
|
| 353 |
+
140 45,785,786 0.00206854
|
| 354 |
+
141 39,333,531 0.00177703
|
| 355 |
+
142 32,839,643 0.00148365
|
| 356 |
+
143 27,371,476 0.00123661
|
| 357 |
+
144 22,342,985 0.00100942
|
| 358 |
+
145 18,609,252 0.00084074
|
| 359 |
+
146 15,669,975 0.00070795
|
| 360 |
+
147 13,125,320 0.00059298
|
| 361 |
+
148 10,622,728 0.00047992
|
| 362 |
+
149 8,399,505 0.00037948
|
| 363 |
+
150 6,439,153 0.00029091
|
| 364 |
+
151 4,624,799 0.00020894
|
| 365 |
+
152 3,277,751 0.00014808
|
| 366 |
+
153 2,205,303 0.00009963
|
| 367 |
+
154 1,514,014 0.00006840
|
| 368 |
+
155 994,773 0.00004494
|
| 369 |
+
156 661,861 0.00002990
|
| 370 |
+
157 464,605 0.00002099
|
| 371 |
+
158 344,147 0.00001555
|
| 372 |
+
159 245,319 0.00001108
|
| 373 |
+
160 182,734 0.00000826
|
| 374 |
+
161 136,406 0.00000616
|
| 375 |
+
162 102,601 0.00000464
|
| 376 |
+
163 75,784 0.00000342
|
| 377 |
+
164 54,608 0.00000247
|
| 378 |
+
165 39,544 0.00000179
|
| 379 |
+
166 26,263 0.00000119
|
| 380 |
+
167 19,053 0.00000086
|
| 381 |
+
168 11,656 0.00000053
|
| 382 |
+
169 6,728 0.00000030
|
| 383 |
+
170 3,819 0.00000017
|
| 384 |
+
171 2,571 0.00000012
|
| 385 |
+
172 1,943 0.00000009
|
| 386 |
+
173 539 0.00000002
|
| 387 |
+
174 205 0.00000001
|
| 388 |
+
175 130 0.00000001
|
| 389 |
+
176 102 0.00000000
|
| 390 |
+
177 62 0.00000000
|
| 391 |
+
178 75 0.00000000
|
| 392 |
+
179 59 0.00000000
|
| 393 |
+
180 46 0.00000000
|
| 394 |
+
181 53 0.00000000
|
| 395 |
+
182 49 0.00000000
|
| 396 |
+
183 47 0.00000000
|
| 397 |
+
184 39 0.00000000
|
| 398 |
+
185 31 0.00000000
|
| 399 |
+
186 42 0.00000000
|
| 400 |
+
187 39 0.00000000
|
| 401 |
+
188 24 0.00000000
|
| 402 |
+
189 22 0.00000000
|
| 403 |
+
190 15 0.00000000
|
| 404 |
+
191 27 0.00000000
|
| 405 |
+
192 12 0.00000000
|
| 406 |
+
193 13 0.00000000
|
| 407 |
+
194 17 0.00000000
|
| 408 |
+
195 21 0.00000000
|
| 409 |
+
196 31 0.00000000
|
| 410 |
+
197 15 0.00000000
|
| 411 |
+
198 11 0.00000000
|
| 412 |
+
199 17 0.00000000
|
| 413 |
+
200 10 0.00000000
|
| 414 |
+
201 6 0.00000000
|
| 415 |
+
202 15 0.00000000
|
| 416 |
+
203 14 0.00000000
|
| 417 |
+
204 12 0.00000000
|
| 418 |
+
205 10 0.00000000
|
| 419 |
+
206 11 0.00000000
|
| 420 |
+
207 8 0.00000000
|
| 421 |
+
208 10 0.00000000
|
| 422 |
+
209 11 0.00000000
|
| 423 |
+
210 3 0.00000000
|
| 424 |
+
211 298 0.00000001
|