mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-03-16 07:09:20 +01:00
feat: ajouter le projet "Wind Risk Modeling - The 1999 Martin Storm" avec description et méthodologie
This commit is contained in:
@@ -96,63 +96,65 @@ const grouped_projects = computed(() => {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="space-y-2">
|
<div class="space-y-2">
|
||||||
<div class="flex items-center gap-2">
|
<h1 class="font-bold">
|
||||||
<h1 class="font-bold">
|
{{ project.title }}
|
||||||
{{ project.title }}
|
</h1>
|
||||||
</h1>
|
|
||||||
<UTooltip
|
|
||||||
text="Favorite"
|
|
||||||
:delay-duration="4"
|
|
||||||
>
|
|
||||||
<UBadge
|
|
||||||
v-if="project.favorite"
|
|
||||||
color="amber"
|
|
||||||
variant="subtle"
|
|
||||||
size="sm"
|
|
||||||
icon="i-ph-star-four-duotone"
|
|
||||||
/>
|
|
||||||
</UTooltip>
|
|
||||||
<UTooltip
|
|
||||||
text="In Progress"
|
|
||||||
:delay-duration="4"
|
|
||||||
>
|
|
||||||
<UBadge
|
|
||||||
v-if="project.status === 'In progress'"
|
|
||||||
color="blue"
|
|
||||||
variant="soft"
|
|
||||||
size="sm"
|
|
||||||
icon="i-ph-hourglass-duotone"
|
|
||||||
/>
|
|
||||||
</UTooltip>
|
|
||||||
<UTooltip
|
|
||||||
text="Archived"
|
|
||||||
:delay-duration="4"
|
|
||||||
>
|
|
||||||
<UBadge
|
|
||||||
v-if="project.status === 'Archived'"
|
|
||||||
color="gray"
|
|
||||||
variant="soft"
|
|
||||||
size="sm"
|
|
||||||
icon="i-ph-archive-duotone"
|
|
||||||
/>
|
|
||||||
</UTooltip>
|
|
||||||
</div>
|
|
||||||
<p class="italic text-xs text-muted">
|
<p class="italic text-xs text-muted">
|
||||||
{{ project.shortDescription }}
|
{{ project.shortDescription }}
|
||||||
</p>
|
</p>
|
||||||
<div
|
<div class="flex items-center justify-between">
|
||||||
v-if="project.tags?.length"
|
<div
|
||||||
class="flex flex-wrap gap-1.5"
|
v-if="project.tags?.length"
|
||||||
>
|
class="flex flex-wrap gap-1.5"
|
||||||
<UBadge
|
|
||||||
v-for="tag in project.tags"
|
|
||||||
:key="tag"
|
|
||||||
color="neutral"
|
|
||||||
variant="outline"
|
|
||||||
size="xs"
|
|
||||||
>
|
>
|
||||||
{{ tag }}
|
<UBadge
|
||||||
</UBadge>
|
v-for="tag in project.tags"
|
||||||
|
:key="tag"
|
||||||
|
color="neutral"
|
||||||
|
variant="outline"
|
||||||
|
size="xs"
|
||||||
|
>
|
||||||
|
{{ tag }}
|
||||||
|
</UBadge>
|
||||||
|
</div>
|
||||||
|
<div class="flex gap-2 items-center justify-center">
|
||||||
|
<UTooltip
|
||||||
|
text="Favorite"
|
||||||
|
:delay-duration="4"
|
||||||
|
>
|
||||||
|
<UBadge
|
||||||
|
v-if="project.favorite"
|
||||||
|
color="amber"
|
||||||
|
variant="subtle"
|
||||||
|
size="sm"
|
||||||
|
icon="i-ph-star-four-duotone"
|
||||||
|
/>
|
||||||
|
</UTooltip>
|
||||||
|
<UTooltip
|
||||||
|
text="In Progress"
|
||||||
|
:delay-duration="4"
|
||||||
|
>
|
||||||
|
<UBadge
|
||||||
|
v-if="project.status === 'In progress'"
|
||||||
|
color="blue"
|
||||||
|
variant="soft"
|
||||||
|
size="sm"
|
||||||
|
icon="i-ph-hourglass-duotone"
|
||||||
|
/>
|
||||||
|
</UTooltip>
|
||||||
|
<UTooltip
|
||||||
|
text="Archived"
|
||||||
|
:delay-duration="4"
|
||||||
|
>
|
||||||
|
<UBadge
|
||||||
|
v-if="project.status === 'Archived'"
|
||||||
|
color="gray"
|
||||||
|
variant="soft"
|
||||||
|
size="sm"
|
||||||
|
icon="i-ph-archive-duotone"
|
||||||
|
/>
|
||||||
|
</UTooltip>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
76
content/projects/climate-issues.md
Normal file
76
content/projects/climate-issues.md
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
---
|
||||||
|
slug: climate-issues
|
||||||
|
title: Wind Risk Modeling - The 1999 Martin Storm
|
||||||
|
type: Academic Project
|
||||||
|
description: An advanced study on wind risk modeling and meteorological hazard assessment, focusing on the historical Martin Storm of December 1999. Combines data analysis, statistical modeling, and GIS mapping to quantify natural disaster impacts.
|
||||||
|
shortDescription: A comprehensive analysis of wind risk modeling during the 1999 Martin Storm using statistical methods and spatial analysis.
|
||||||
|
publishedAt: 2026-02-17
|
||||||
|
readingTime: 5
|
||||||
|
status: Completed
|
||||||
|
tags:
|
||||||
|
- Meteorology
|
||||||
|
- Risk Assessment
|
||||||
|
- Data Analysis
|
||||||
|
- Climate Science
|
||||||
|
- GIS
|
||||||
|
- Statistics
|
||||||
|
icon: i-ph-wind-duotone
|
||||||
|
---
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
This project is a detailed study of **wind risk assessment and modeling** in the context of natural disasters, using the **December 1999 Martin Storm** as a case study. The analysis combines statistical methods, meteorological data, and spatial analysis techniques to understand and quantify the impacts of extreme wind events.
|
||||||
|
|
||||||
|
## 🎯 Objectives
|
||||||
|
|
||||||
|
The primary objectives of this research were:
|
||||||
|
|
||||||
|
1. **Characterize extreme meteorological events** and their propagation patterns
|
||||||
|
2. **Model wind risk** using statistical and probabilistic approaches
|
||||||
|
3. **Assess spatial distribution** of hazards using GIS mapping techniques
|
||||||
|
4. **Quantify economic and environmental impacts** of the storm
|
||||||
|
5. **Develop predictive models** for future risk assessment and disaster preparedness
|
||||||
|
|
||||||
|
## 📊 Methodology
|
||||||
|
|
||||||
|
### Data Sources
|
||||||
|
- Historical meteorological records from the 1999 Martin Storm
|
||||||
|
- Wind speed measurements from weather stations across France
|
||||||
|
- Satellite imagery and atmospheric pressure data
|
||||||
|
- Damage assessments and economic loss records
|
||||||
|
|
||||||
|
### Analytical Techniques
|
||||||
|
- **Time-series analysis** of wind speed and atmospheric pressure
|
||||||
|
- **Spatial interpolation** using kriging and other geostatistical methods
|
||||||
|
- **Probability distribution fitting** (Weibull, Gumbel, and Log-Normal distributions)
|
||||||
|
- **Return period estimation** for extreme wind events
|
||||||
|
- **Geographic Information Systems (GIS)** for hazard mapping and visualization
|
||||||
|
|
||||||
|
### Statistical Models
|
||||||
|
- Extreme Value Theory (EVT) for tail risk analysis
|
||||||
|
- Generalized Extreme Value (GEV) distributions
|
||||||
|
- Peak-over-threshold (POT) methods
|
||||||
|
- Spatial correlation analysis
|
||||||
|
|
||||||
|
## 🌍 Key Findings
|
||||||
|
|
||||||
|
The analysis revealed:
|
||||||
|
- Wind speeds exceeding 100 km/h across multiple regions
|
||||||
|
- Non-uniform spatial distribution of damage intensity
|
||||||
|
- Correlation patterns between meteorological variables and structural damage
|
||||||
|
- Seasonal and geographical risk variations
|
||||||
|
- Return period estimations for comparable extreme events
|
||||||
|
|
||||||
|
## 💡 Applications
|
||||||
|
|
||||||
|
The methodologies developed in this project have applications in:
|
||||||
|
- **Disaster risk reduction and preparedness** planning
|
||||||
|
- **Insurance and risk assessment** for natural hazards
|
||||||
|
- **Urban planning** and infrastructure resilience
|
||||||
|
- **Climate adaptation** strategies
|
||||||
|
- **Early warning systems** for extreme weather events
|
||||||
|
|
||||||
|
## 📄 Detailed Report
|
||||||
|
|
||||||
|
<iframe src="/projects/climate-issues.pdf" width="100%" height="1000px">
|
||||||
|
</iframe>
|
||||||
BIN
public/projects/climate-issues.pdf
Normal file
BIN
public/projects/climate-issues.pdf
Normal file
Binary file not shown.
Reference in New Issue
Block a user