2018-12-09 13:02:46 +01:00
|
|
|
/**
|
2022-09-17 15:44:26 +02:00
|
|
|
* @preserve Copyright (c) 2018-2022 NN Solex, www.sublunar.space
|
2018-12-09 13:02:46 +01:00
|
|
|
* License MIT: http://www.opensource.org/licenses/MIT
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_moon = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Moon Sign",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[0],
|
|
|
|
|
[{
|
|
|
|
|
"id": "1",
|
|
|
|
|
"action": "Moon in Aries",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon aries fire mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "2",
|
|
|
|
|
"action": "Moon in Taurus (Exalted)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon taurus earth venus exalted"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "3",
|
|
|
|
|
"action": "Moon in Gemini",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon gemini air mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "4",
|
|
|
|
|
"action": "Moon in Cancer (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "cancer water moon domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "5",
|
|
|
|
|
"action": "Moon in Leo",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon leo fire sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "6",
|
|
|
|
|
"action": "Moon in Virgo",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon virgo earth mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "7",
|
|
|
|
|
"action": "Moon in Libra",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon libra air venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "8",
|
|
|
|
|
"action": "Moon in Scorpio (Fall)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon scorpio water mars fall"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "9",
|
|
|
|
|
"action": "Moon in Sagittarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon sagittarius fire jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "10",
|
|
|
|
|
"action": "Moon in Capricorn (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon capricorn earth saturn detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "11",
|
|
|
|
|
"action": "Moon in Aquarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon aquarius air saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "12",
|
|
|
|
|
"action": "Moon in Pisces",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "moon pisces water jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return SL.Astro.Logy.getZodiac(m.ephemeris.moon.deg).sign;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
return definitions.actions[property];
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_mercury = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Mercury Sign",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[0],
|
|
|
|
|
[{
|
|
|
|
|
"id": "1",
|
|
|
|
|
"action": "Mercury in Aries",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury aries fire mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "2",
|
|
|
|
|
"action": "Mercury in Taurus",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury taurus earth venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "3",
|
|
|
|
|
"action": "Mercury in Gemini (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury gemini air domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "4",
|
|
|
|
|
"action": "Mercury in Cancer",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "cancer water moon mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "5",
|
|
|
|
|
"action": "Mercury in Leo",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury leo fire sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "6",
|
|
|
|
|
"action": "Mercury in Virgo (Domicile/Exaltation)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury virgo earth domicile exaltation"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "7",
|
|
|
|
|
"action": "Mercury in Libra",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury libra air venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "8",
|
|
|
|
|
"action": "Mercury in Scorpio",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury scorpio water mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "9",
|
|
|
|
|
"action": "Mercury in Sagittarius (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury sagittarius fire jupiter detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "10",
|
|
|
|
|
"action": "Mercury in Capricorn",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury capricorn earth saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "11",
|
|
|
|
|
"action": "Mercury in Aquarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury aquarius air saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "12",
|
|
|
|
|
"action": "Mercury in Pisces (Fall)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mercury pisces water jupiter fall"
|
2018-12-09 13:02:46 +01:00
|
|
|
}]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return SL.Astro.Logy.getZodiac(m.ephemeris.mercury.deg).sign;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
return definitions.actions[property];
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_venus = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Venus Sign",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[0],
|
|
|
|
|
[{
|
|
|
|
|
"id": "1",
|
|
|
|
|
"action": "Venus in Aries (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus aries fire mars detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "2",
|
|
|
|
|
"action": "Venus in Taurus",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus taurus earth",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "3",
|
|
|
|
|
"action": "Venus in Gemini",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus gemini air mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "4",
|
|
|
|
|
"action": "Venus in Cancer",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "cancer water moon venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "5",
|
|
|
|
|
"action": "Venus in Leo",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus leo fire sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "6",
|
|
|
|
|
"action": "Venus in Virgo (Fall)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus virgo earth mercury fall"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "7",
|
|
|
|
|
"action": "Venus in Libra (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus libra air domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "8",
|
|
|
|
|
"action": "Venus in Scorpio (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus scorpio water mars detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "9",
|
|
|
|
|
"action": "Venus in Sagittarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus sagittarius fire jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "10",
|
|
|
|
|
"action": "Venus in Capricorn",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus capricorn earth saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "11",
|
|
|
|
|
"action": "Venus in Aquarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus aquarius air saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "12",
|
|
|
|
|
"action": "Venus in Pisces (Exaltation)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "venus pisces water jupiter exaltation"
|
2018-12-09 13:02:46 +01:00
|
|
|
}]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return SL.Astro.Logy.getZodiac(m.ephemeris.venus.deg).sign;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
return definitions.actions[property];
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_sun = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Sun Sign",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[0],
|
|
|
|
|
[{
|
|
|
|
|
"id": "1",
|
|
|
|
|
"action": "Sun in Aries (Exaltation)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun aries fire mars exaltation"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "2",
|
|
|
|
|
"action": "Sun in Taurus",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun taurus earth venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "3",
|
|
|
|
|
"action": "Sun in Gemini",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun gemini air mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "4",
|
|
|
|
|
"action": "Sun in Cancer",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "cancer water moon sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "5",
|
|
|
|
|
"action": "Sun in Leo (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun leo fire domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "6",
|
|
|
|
|
"action": "Sun in Virgo",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun virgo earth mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "7",
|
|
|
|
|
"action": "Sun in Libra (Fall)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun libra air venus fall"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "8",
|
|
|
|
|
"action": "Sun in Scorpio",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun scorpio water mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "9",
|
|
|
|
|
"action": "Sun in Sagittarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun sagittarius fire jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "10",
|
|
|
|
|
"action": "Sun in Capricorn",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun capricorn earth saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "11",
|
|
|
|
|
"action": "Sun in Aquarius (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun aquarius air saturn detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "12",
|
|
|
|
|
"action": "Sun in Pisces",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sun pisces water jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return SL.Astro.Logy.getZodiac(m.ephemeris.sun.deg).sign;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
return definitions.actions[property];
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_mars = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Mars Sign",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[0],
|
|
|
|
|
[{
|
|
|
|
|
"id": "1",
|
|
|
|
|
"action": "Mars in Aries (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars aries fire domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "2",
|
|
|
|
|
"action": "Mars in Taurus (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars taurus earth venus detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "3",
|
|
|
|
|
"action": "Mars in Gemini",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars gemini air mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "4",
|
|
|
|
|
"action": "Mars in Cancer (Fall)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "cancer water moon mars fall"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "5",
|
|
|
|
|
"action": "Mars in Leo",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars leo fire sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "6",
|
|
|
|
|
"action": "Mars in Virgo",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars virgo earth mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "7",
|
|
|
|
|
"action": "Mars in Libra (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars libra air venus detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "8",
|
|
|
|
|
"action": "Mars in Scorpio (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars scorpio water domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "9",
|
|
|
|
|
"action": "Mars in Sagittarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars sagittarius fire jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "10",
|
|
|
|
|
"action": "Mars in Capricorn (Exalted)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars capricorn earth saturn exalted"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "11",
|
|
|
|
|
"action": "Mars in Aquarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars aquarius air saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "12",
|
|
|
|
|
"action": "Mars in Pisces",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "mars pisces water jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return SL.Astro.Logy.getZodiac(m.ephemeris.mars.deg).sign;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
return definitions.actions[property];
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_jupiter = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Jupiter Sign",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[0],
|
|
|
|
|
[{
|
|
|
|
|
"id": "1",
|
|
|
|
|
"action": "Jupiter in Aries",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter aries fire mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "2",
|
|
|
|
|
"action": "Jupiter in Taurus",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter taurus earth venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "3",
|
|
|
|
|
"action": "Jupiter in Gemini (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter gemini air mercury detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "4",
|
|
|
|
|
"action": "Jupiter in Cancer (Exaltation)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "cancer water moon jupiter exaltation"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "5",
|
|
|
|
|
"action": "Jupiter in Leo",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter leo fire sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "6",
|
|
|
|
|
"action": "Jupiter in Virgo (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter virgo earth mercury detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "7",
|
|
|
|
|
"action": "Jupiter in Libra",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter libra air venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "8",
|
|
|
|
|
"action": "Jupiter in Scorpio",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter scorpio water mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "9",
|
|
|
|
|
"action": "Jupiter in Sagittarius (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter sagittarius fire domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "10",
|
|
|
|
|
"action": "Jupiter in Capricorn (Fall)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter capricorn earth saturn fall"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "11",
|
|
|
|
|
"action": "Jupiter in Aquarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter aquarius air saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "12",
|
|
|
|
|
"action": "Jupiter in Pisces (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "jupiter pisces water domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return SL.Astro.Logy.getZodiac(m.ephemeris.jupiter.deg).sign;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
return definitions.actions[property];
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_saturn = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Saturn Sign",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[0],
|
|
|
|
|
[{
|
|
|
|
|
"id": "1",
|
|
|
|
|
"action": "Saturn in Aries (Fall)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn aries fire mars fall"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "2",
|
|
|
|
|
"action": "Saturn in Taurus",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn taurus earth venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "3",
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Saturn in Gemini",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn gemini air mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "4",
|
|
|
|
|
"action": "Saturn in Cancer (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "cancer water moon saturn detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "5",
|
|
|
|
|
"action": "Saturn in Leo (Detriment)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn leo fire sun detriment"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "6",
|
|
|
|
|
"action": "Saturn in Virgo",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn virgo earth mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "7",
|
|
|
|
|
"action": "Saturn in Libra (Exaltation)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn libra air venus exaltation"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "8",
|
|
|
|
|
"action": "Saturn in Scorpio",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn scorpio water mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "9",
|
|
|
|
|
"action": "Saturn in Sagittarius",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn sagittarius fire jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "10",
|
|
|
|
|
"action": "Saturn in Capricorn (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn capricorn earth domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "11",
|
|
|
|
|
"action": "Saturn in Aquarius (Domicile)",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn aquarius air domicile"
|
2018-12-09 13:02:46 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "12",
|
|
|
|
|
"action": "Saturn in Pisces",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "saturn pisces water jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"hide": "info"
|
|
|
|
|
}]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return SL.Astro.Logy.getZodiac(m.ephemeris.saturn.deg).sign;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
return definitions.actions[property];
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-12-23 22:02:32 +01:00
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_ascendant = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Rising Sign",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[0],
|
|
|
|
|
[{
|
|
|
|
|
"id": "1",
|
|
|
|
|
"action": "Aries Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "aries fire mars"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "2",
|
|
|
|
|
"action": "Taurus Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "taurus earth venus"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "3",
|
|
|
|
|
"action": "Gemini Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "gemini air mercury"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "4",
|
|
|
|
|
"action": "Cancer Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "cancer water moon"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "5",
|
|
|
|
|
"action": "Leo Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "leo fire sun"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "6",
|
|
|
|
|
"action": "Virgo Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "virgo earth mercury"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "7",
|
|
|
|
|
"action": "Libra Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "libra air venus"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "8",
|
|
|
|
|
"action": "Scorpio Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "scorpio water mars"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "9",
|
|
|
|
|
"action": "Sagittarius Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "sagittarius fire jupiter"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "10",
|
|
|
|
|
"action": "Capricorn Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "capricorn earth saturn"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "11",
|
|
|
|
|
"action": "Aquarius Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "aquarius air saturn"
|
2018-12-23 22:02:32 +01:00
|
|
|
}], [{
|
|
|
|
|
"id": "12",
|
|
|
|
|
"action": "Pisces Rising",
|
2019-01-21 21:24:48 +01:00
|
|
|
"tags": "pisces water jupiter"
|
2018-12-23 22:02:32 +01:00
|
|
|
}]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return SL.Astro.Logy.getZodiac(m.ephemeris.asc.deg).sign;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
return definitions.actions[property];
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-12-09 13:02:46 +01:00
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_aspects = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Major Aspects",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 1,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☌ Mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon conjunction mercury"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 2,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☌ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon conjunction venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 3,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☌ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon conjunction sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 4,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☌ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon conjunction mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 5,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☌ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon conjunction jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 6,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☌ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon conjunction saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 7,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☌ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury conjunction venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 8,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☌ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury conjunction sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 9,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☌ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury conjunction mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 10,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☌ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury conjunction jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 11,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☌ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury conjunction saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 12,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus ☌ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus conjunction sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 13,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus ☌ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus conjunction mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 14,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus ☌ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus conjunction jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 15,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus ☌ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus conjunction saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 16,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun ☌ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun conjunction mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 17,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun ☌ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun conjunction jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 18,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun ☌ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun conjunction saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 19,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mars ☌ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars conjunction jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 20,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mars ☌ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars conjunction saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 21,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Jupiter ☌ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "jupiter conjunction saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 22,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Moon ⚹ Mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon sextile mercury"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 23,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Moon ⚹ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon sextile venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 24,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Moon ⚹ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon sextile sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 25,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Moon ⚹ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon sextile mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 26,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Moon ⚹ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon sextile jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 27,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Moon ⚹ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon sextile saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 28,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Mercury ⚹ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury sextile venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 29,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Mercury ⚹ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury sextile sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 30,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Mercury ⚹ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury sextile mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 31,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Mercury ⚹ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury sextile jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 32,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Mercury ⚹ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury sextile saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 33,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Venus ⚹ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus sextile sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 34,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Venus ⚹ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus sextile mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 35,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Venus ⚹ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus sextile jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 36,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Venus ⚹ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus sextile saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 37,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Sun ⚹ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun sextile mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 38,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Sun ⚹ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun sextile jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 39,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Sun ⚹ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun sextile saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 40,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Mars ⚹ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars sextile jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 41,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Mars ⚹ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars sextile saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 42,
|
2019-01-29 13:55:33 +01:00
|
|
|
"action": "Jupiter ⚹ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "jupiter sextile saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 43,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon □ Mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon square mercury"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 44,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon □ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon square venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 45,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon □ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon square sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 46,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon □ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon square mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 47,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon □ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon square jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 48,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon □ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon square saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 49,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury □ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury square venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 50,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury □ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury square sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 51,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury □ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury square mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 52,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury □ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury square jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 53,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury □ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury square saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 54,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus □ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus square sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 55,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus □ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus square mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 56,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus □ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus square jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 57,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus □ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus square saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 58,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun □ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun square mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 59,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun □ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun square jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 60,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun □ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun square saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 61,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mars □ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars square jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 62,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mars □ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars square saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 63,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Jupiter □ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "jupiter square saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 64,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon △ Mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon trine mercury"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 65,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon △ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon trine venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 66,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon △ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon trine sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 67,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon △ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon trine mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 68,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon △ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon trine jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 69,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon △ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon trine saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 70,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury △ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury trine venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 71,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury △ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury trine sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 72,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury △ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury trine mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 73,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury △ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury trine jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 74,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury △ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury trine saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 75,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus △ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus trine sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 76,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus △ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus trine mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 77,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus △ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus trine jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 78,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus △ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus trine saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 79,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun △ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun trine mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 80,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun △ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun trine jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 81,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun △ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun trine saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 82,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mars △ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars trine jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 83,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mars △ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars trine saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 84,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Jupiter △ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "jupiter trine saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 85,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☍ Mercury",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon opposition mercury"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 86,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☍ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon opposition venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 87,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☍ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon opposition sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 88,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☍ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon opposition mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 89,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☍ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon opposition jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 90,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Moon ☍ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "moon opposition saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 91,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☍ Venus",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury opposition venus"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 92,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☍ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury opposition sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 93,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☍ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury opposition mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 94,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☍ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury opposition jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 95,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mercury ☍ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mercury opposition saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 96,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus ☍ Sun",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus opposition sun"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 97,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus ☍ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus opposition mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 98,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus ☍ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus opposition jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 99,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Venus ☍ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "venus opposition saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 100,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun ☍ Mars",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun opposition mars"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 101,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun ☍ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun opposition jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 102,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Sun ☍ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "sun opposition saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 103,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mars ☍ Jupiter",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars opposition jupiter"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 104,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Mars ☍ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "mars opposition saturn"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
"id": 105,
|
2019-01-15 13:17:02 +01:00
|
|
|
"action": "Jupiter ☍ Saturn",
|
2018-12-09 13:02:46 +01:00
|
|
|
"tags": "jupiter opposition saturn"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return m.ephemeris;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
var chaldean = ["void", "moon", "mercury", "venus", "sun", "mars", "jupiter", "saturn"];
|
|
|
|
|
var combo = [[1,2],[1,3],[1,4],[1,5],[1,6],[1,7],[2,3],[2,4],[2,5],[2,6],[2,7],[3,4],[3,5],[3,6],[3,7],[4,5],[4,6],[4,7],[5,6],[5,7],[6,7]];
|
|
|
|
|
var ret = [];
|
|
|
|
|
combo.forEach(function(c, idx) {
|
|
|
|
|
var diff = eval("property."+chaldean[c[0]]+".deg") - eval("property."+chaldean[c[1]]+".deg");
|
|
|
|
|
var angle = Math.min( Math.abs(diff), 360-Math.abs(diff) );
|
|
|
|
|
var orb = 3.0;
|
|
|
|
|
if ( c[0] == 1 ) orb = 13.0;
|
|
|
|
|
if ( c[0] == 4 || c[1] == 4) orb = 15.0;
|
|
|
|
|
if ( angle <= orb ) ret.push(definitions.actions[idx][0]);
|
|
|
|
|
if ( c[0] == 1 || c[0] == 4 || c[1] == 4) orb = 3.1;
|
|
|
|
|
if ( c[0] == 1 && c[1] == 4) orb = 3.2;
|
|
|
|
|
if ( Math.abs(angle - 60) <= orb ) ret.push(definitions.actions[idx+21][0]);
|
|
|
|
|
if ( Math.abs(angle - 90) <= orb ) ret.push(definitions.actions[idx+21*2][0]);
|
|
|
|
|
if ( Math.abs(angle - 120) <= orb ) ret.push(definitions.actions[idx+21*3][0]);
|
|
|
|
|
if ( Math.abs(angle - 180) <= orb ) ret.push(definitions.actions[idx+21*4][0]);
|
|
|
|
|
});
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//Defines Calendar Objects and Methods
|
|
|
|
|
var module_motion = {
|
|
|
|
|
|
|
|
|
|
definitions: {
|
|
|
|
|
core: true,
|
|
|
|
|
name: "Stations + Retrogrades",
|
|
|
|
|
group: {
|
|
|
|
|
id: "astrology",
|
|
|
|
|
text: "Astrology",
|
|
|
|
|
info: "true"
|
|
|
|
|
},
|
|
|
|
|
actions: [
|
|
|
|
|
[0],
|
|
|
|
|
[{
|
|
|
|
|
"id": "1",
|
|
|
|
|
"action": "Mercury Station",
|
|
|
|
|
"tags": "mercury station retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "2",
|
|
|
|
|
"action": "Mercury Retrograde",
|
|
|
|
|
"tags": "mercury retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "3",
|
|
|
|
|
"action": "Venus Station",
|
|
|
|
|
"tags": "venus station retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "4",
|
|
|
|
|
"action": "Venus Retrograde",
|
|
|
|
|
"tags": "venus retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "5",
|
|
|
|
|
"action": "Mars Station",
|
|
|
|
|
"tags": "mars station retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "6",
|
|
|
|
|
"action": "Mars Retrograde",
|
|
|
|
|
"tags": "mars retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "7",
|
|
|
|
|
"action": "Jupiter Station",
|
|
|
|
|
"tags": "jupiter station retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "8",
|
|
|
|
|
"action": "Jupiter Retrograde",
|
|
|
|
|
"tags": "jupiter retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "9",
|
|
|
|
|
"action": "Saturn Station",
|
|
|
|
|
"tags": "saturn station retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "10",
|
|
|
|
|
"action": "Saturn Retrograde",
|
|
|
|
|
"tags": "saturn retrograde"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "11",
|
|
|
|
|
"action": "Mercury Direct",
|
|
|
|
|
"tags": "mercury direct",
|
|
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "12",
|
|
|
|
|
"action": "Venus Direct",
|
|
|
|
|
"tags": "venus direct",
|
|
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "13",
|
|
|
|
|
"action": "Mars Direct",
|
|
|
|
|
"tags": "mars direct",
|
|
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "14",
|
|
|
|
|
"action": "Jupiter Direct",
|
|
|
|
|
"tags": "jupiter direct",
|
|
|
|
|
"hide": "info"
|
|
|
|
|
}], [{
|
|
|
|
|
"id": "15",
|
|
|
|
|
"action": "Saturn Direct",
|
|
|
|
|
"tags": "saturn direct",
|
|
|
|
|
"hide": "info"
|
|
|
|
|
}]
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
property: function(m) {
|
|
|
|
|
return m.ephemeris;
|
|
|
|
|
},
|
|
|
|
|
calculate: function(definitions, property) {
|
|
|
|
|
var chaldean = ["moon", "mercury", "venus", "mars", "jupiter", "saturn"];
|
|
|
|
|
var ret = [];
|
|
|
|
|
chaldean.forEach(function(c, idx) {
|
|
|
|
|
var speed = eval("property."+c+".speed");
|
|
|
|
|
if ( c == "mercury" && speed > 0.01 ) ret.push(definitions.actions[11][0]);
|
|
|
|
|
if ( c == "mercury" && speed < 0.01 && speed > -0.01 ) ret.push(definitions.actions[1][0]);
|
|
|
|
|
if ( c == "mercury" && speed < -0.01 ) ret.push(definitions.actions[2][0]);
|
|
|
|
|
if ( c == "venus" && speed > 0.01 ) ret.push(definitions.actions[12][0]);
|
|
|
|
|
if ( c == "venus" && speed < 0.01 && speed > -0.01 ) ret.push(definitions.actions[3][0]);
|
|
|
|
|
if ( c == "venus" && speed < -0.01 ) ret.push(definitions.actions[4][0]);
|
|
|
|
|
if ( c == "mars" && speed > 0.01 ) ret.push(definitions.actions[13][0]);
|
|
|
|
|
if ( c == "mars" && speed < 0.01 && speed > -0.01 ) ret.push(definitions.actions[5][0]);
|
|
|
|
|
if ( c == "mars" && speed < -0.01 ) ret.push(definitions.actions[6][0]);
|
|
|
|
|
if ( c == "jupiter" && speed > 0.001 ) ret.push(definitions.actions[14][0]);
|
|
|
|
|
if ( c == "jupiter" && speed < 0.001 && speed > -0.001 ) ret.push(definitions.actions[7][0]);
|
|
|
|
|
if ( c == "jupiter" && speed < -0.001 ) ret.push(definitions.actions[8][0]);
|
|
|
|
|
if ( c == "saturn" && speed > 0.001 ) ret.push(definitions.actions[15][0]);
|
|
|
|
|
if ( c == "saturn" && speed < 0.001 && speed > -0.001 ) ret.push(definitions.actions[9][0]);
|
|
|
|
|
if ( c == "saturn" && speed < -0.001 ) ret.push(definitions.actions[10][0]);
|
|
|
|
|
});
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
};
|