From ab0142fc41ee9da30fc066dae8bebac88dda32a1 Mon Sep 17 00:00:00 2001
From: ptresson <paul.tresson@ird.fr>
Date: Thu, 5 Dec 2024 16:45:02 +0100
Subject: [PATCH] document meta-data issues

---
 docs/source/issues.md | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/docs/source/issues.md b/docs/source/issues.md
index d0bcd9d..928b12c 100644
--- a/docs/source/issues.md
+++ b/docs/source/issues.md
@@ -69,3 +69,16 @@ import umap
 ```
 
 Then save the change, reload the plug-in and try again.
+
+
+## Major tilling efects
+
+After encoding, it is common to see tilling effect, however, sometimes, these effects are overwhelming (for instance if you can only see a color gradient on every tile and no local features).
+The issue might be a normalization issue, with every tile fed to the network being wrongfully normalized.
+The root of the problem may be the meta-data of your raster, check that the `STATISTICS_MEAN` and `STATISTICS_STDDEV` are correct, because these are the ones used by the plugin if they exist.
+
+The following command could potentially solve meta-data issues.
+
+```
+gdal_edit.py -stats your_file.tif
+```
-- 
GitLab