Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -40,7 +40,8 @@ ZODIAC_SIGNS = [
|
|
40 |
# Moon phase boundaries (0° to 360° phase angle) for display purposes
|
41 |
MOON_PHASES = [
|
42 |
("New Moon", 0, 45),
|
43 |
-
("Waxing Crescent",
|
|
|
44 |
("First Quarter", 90, 135),
|
45 |
("Waxing Gibbous", 135, 180),
|
46 |
("Full Moon", 180, 225),
|
@@ -121,7 +122,27 @@ def get_moon_info(date_time: str) -> dict:
|
|
121 |
"fertility_root_crop": 1.5,
|
122 |
"pruning": 2.0
|
123 |
}
|
124 |
-
fertility
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
0 - minimal expected fertility,
|
126 |
3.0 - most favorable fertility for platining,
|
127 |
and depends on type of plant (root crop or produce above ground).
|
|
|
40 |
# Moon phase boundaries (0° to 360° phase angle) for display purposes
|
41 |
MOON_PHASES = [
|
42 |
("New Moon", 0, 45),
|
43 |
+
("Waxing Crescent",
|
44 |
+
45, 90),
|
45 |
("First Quarter", 90, 135),
|
46 |
("Waxing Gibbous", 135, 180),
|
47 |
("Full Moon", 180, 225),
|
|
|
122 |
"fertility_root_crop": 1.5,
|
123 |
"pruning": 2.0
|
124 |
}
|
125 |
+
It is observed that when Moon is in different Zodiac signs, the fertility of new plants and impact of pruning differs.
|
126 |
+
The fertility of the sign means the active life of the plant, when all processes are particularly intense, and any intervention
|
127 |
+
such as pruning can be more traumatic for the plant. Here:
|
128 |
+
Most fertile signs: Taurus, Pisces, Cancer - Plants are in the active growth phase, juices and nutrients actively circulate
|
129 |
+
in the plant, and it is best time for fertilizers, harvasting cutting, vaccination, rooting. Pruning during this period
|
130 |
+
can lead to:
|
131 |
+
Increased sap production from the cut points
|
132 |
+
Increased vulnerability to infections
|
133 |
+
Delayed wound healing
|
134 |
+
Possible weakening of the plant.
|
135 |
+
Instead of pruning into fertile signs, you can do:
|
136 |
+
Crown formation
|
137 |
+
Pinching the shoots
|
138 |
+
Removing dead branches
|
139 |
+
Sanitary treatment
|
140 |
+
Conditionally fertile: Scorpio
|
141 |
+
Neutral: Aries, Leo, Sagittarius, Capricorn
|
142 |
+
Conditionally sterile: Libra
|
143 |
+
Sterile: Gemini, Virgo, Aquarius
|
144 |
+
|
145 |
+
Fertility indices ranges from 0 to 3 where proportionaly
|
146 |
0 - minimal expected fertility,
|
147 |
3.0 - most favorable fertility for platining,
|
148 |
and depends on type of plant (root crop or produce above ground).
|