Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,8 @@ from smolagents import CodeAgent, DuckDuckGoSearchTool, HfApiModel, load_tool, t
|
|
2 |
import datetime
|
3 |
import pytz
|
4 |
import yaml
|
5 |
-
from skyfield.api import load
|
|
|
6 |
from skyfield import almanac
|
7 |
from tools.final_answer import FinalAnswerTool
|
8 |
from Gradio_UI import GradioUI
|
@@ -122,10 +123,11 @@ def get_moon_info(date_time: str) -> dict:
|
|
122 |
"""
|
123 |
Returns Moon's Zodiac position, phase, and fertility and pruning indices for the given date/time.
|
124 |
|
125 |
-
The fertility and pruning indices are calculated as sum of sign and phase
|
|
|
126 |
It is observed that when Moon is in different Zodiac signs, the fertility of new plants and impact of pruning differs.
|
127 |
When Moon is in fertile sign the plant is in the active phase, when all processes are particularly intense, and any intervention
|
128 |
-
such as pruning can be
|
129 |
Most fertile signs: Taurus, Pisces, Cancer - Plants are in the active growth phase, juices and nutrients actively circulate
|
130 |
in the plant, and it is best time for fertilizers, harvasting cutting, vaccination, rooting.
|
131 |
Conditionally fertile: Scorpio
|
|
|
2 |
import datetime
|
3 |
import pytz
|
4 |
import yaml
|
5 |
+
from skyfield.api import load
|
6 |
+
, Topos, load_file
|
7 |
from skyfield import almanac
|
8 |
from tools.final_answer import FinalAnswerTool
|
9 |
from Gradio_UI import GradioUI
|
|
|
123 |
"""
|
124 |
Returns Moon's Zodiac position, phase, and fertility and pruning indices for the given date/time.
|
125 |
|
126 |
+
The fertility and pruning indices are calculated as sum of sign and phase fertility values of the Moon position. Moon sign fertility
|
127 |
+
amounts up to 2.0 value and phase fertility value could be 1.0 max.
|
128 |
It is observed that when Moon is in different Zodiac signs, the fertility of new plants and impact of pruning differs.
|
129 |
When Moon is in fertile sign the plant is in the active phase, when all processes are particularly intense, and any intervention
|
130 |
+
such as pruning can be very traumatic for the plant. Here:
|
131 |
Most fertile signs: Taurus, Pisces, Cancer - Plants are in the active growth phase, juices and nutrients actively circulate
|
132 |
in the plant, and it is best time for fertilizers, harvasting cutting, vaccination, rooting.
|
133 |
Conditionally fertile: Scorpio
|