> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nikaplanet.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Mean Sea Level Effect On Coastal Regions

> Sea level rise impact analysis for Manila, Philippines using DEM-based scenarios and IPCC AR6 projections

# Mean Sea Level Effect On Coastal Regions

<img src="https://mintcdn.com/nika/KF-c86_3b0KWdTjW/industrial-solutions/mean-sea-level-coastal-regions.png?fit=max&auto=format&n=KF-c86_3b0KWdTjW&q=85&s=fa8fbd9ae64d26cbe9ffe163ca2adf23" alt="Mean Sea Level Effect On Coastal Regions" width="2180" height="1218" data-path="industrial-solutions/mean-sea-level-coastal-regions.png" />

## Sea Level Rise Impact Analysis for Manila, Philippines

### Purpose

This notebook provides two approaches to analyze the impact of sea level rise on Manila's coastal areas:

1. **DEM-based fixed sea level rise scenarios** (0.5m, 1m, 2.5m) using Copernicus DEM and population density
2. **IPCC AR6 regional sea level projections** for selected SSP scenarios and years, combined with DEM and population density

### Date

Thursday, July 3, 2025

## Required Libraries

* **earthengine-api**
* **geemap**
* **numpy**
* **matplotlib**

## Data Sources

### DEM

**Copernicus DEM GLO-30** (30m resolution) from Google Earth Engine

### Population Density

**GPWv411** from Google Earth Engine

### Sea Level Projections

**IPCC AR6 Sea Level Projections Regional (Medium Confidence)** from Google Earth Engine

***

<div className="solution-cta">
  <div className="solution-cta-content">
    <h3>🚀 Ready to implement this solution?</h3>
    <p>Access the complete code, step-by-step instructions, and interactive notebook in Nika Hub.</p>

    <a href="https://planet.nika.eco/en/hub/solutions/f39a0d8d-0aed-401f-871c-2665d86b97f0" target="_blank" className="solution-button">
      View Full Solution →
    </a>
  </div>
</div>

<style jsx>
  {`
    .solution-cta {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 12px;
      padding: 2rem;
      margin: 2rem 0;
      color: white;
      text-align: center;
      box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    }

    .solution-cta-content h3 {
      margin: 0 0 0.5rem 0;
      font-size: 1.5rem;
      font-weight: 600;
    }

    .solution-cta-content p {
      margin: 0 0 1.5rem 0;
      opacity: 0.9;
      font-size: 1.1rem;
    }

    .solution-button {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .solution-button:hover {
      background: rgba(255, 255, 255, 0.3);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    `}
</style>
