From 71800e6b57f9d45bd6b8a1d1615f9e66598958fa Mon Sep 17 00:00:00 2001
From: Daniel Vedder <daniel.vedder@idiv.de>
Date: Sun, 28 May 2023 23:37:01 +0200
Subject: [PATCH] Created `world` module.

Closes #52
---
 Makefile                         | 5 ++++-
 src/{core => world}/landscape.jl | 0
 src/world/weather.jl             | 7 +++++++
 3 files changed, 11 insertions(+), 1 deletion(-)
 rename src/{core => world}/landscape.jl (100%)
 create mode 100644 src/world/weather.jl

diff --git a/Makefile b/Makefile
index 1a206c3..0683312 100644
--- a/Makefile
+++ b/Makefile
@@ -19,8 +19,11 @@ docs:
 	sed -i -e "s/\*Last updated:.*/\*Last updated: ${commit}\*/" docs/src/index.md
 	cd docs; julia builddocs.jl
 
+container:
+	echo "Not yet implemented (#43)"
+
 release:
 	echo "Not yet implemented."
 
 install:
-	echo: "Not relevant. Use `julia run.jl` to run Persefone."
+	echo "Not relevant. Use `julia run.jl` to run Persefone."
diff --git a/src/core/landscape.jl b/src/world/landscape.jl
similarity index 100%
rename from src/core/landscape.jl
rename to src/world/landscape.jl
diff --git a/src/world/weather.jl b/src/world/weather.jl
new file mode 100644
index 0000000..2a66875
--- /dev/null
+++ b/src/world/weather.jl
@@ -0,0 +1,7 @@
+### Persefone - a socio-economic-ecological model of European agricultural landscapes.
+###
+### This file reads in weather data for the selected location and makes it available
+### to the rest of the model.
+###
+
+##TODO (issue #8)
-- 
GitLab