स्थानांतरण चार्ट API
ग्रहों को रखो, नक्शा बदलो। एक relocation chart हर जन्म के ग्रहों की लम्बाई को ठीक वैसा ही रखता है लेकिन नए स्थान के लिए house framework - Ascendant, Midheaven, cusps - को फिर से बनाता है। natal data और target location भेजो, दोनों charts और angular delta पाओ। Swiss Ephemeris की सटीकता, JSON आउट।
स्थानांतरण चार्ट API
relocation endpoint supplied birth data से natal chart निकालता है, फिर दूसरे स्थान के लिए house framework को फिर से बनाता है जबकि planetary positions को जैसा है वैसा ही रखता है। ग्रह अपने जन्म के sign और degree रखते हैं - ये moment का function है, जगह का नहीं - लेकिन Ascendant, Midheaven और सभी house cusps को target latitude और longitude से फिर से गणना किया जाता है, जिससे हर ग्रह नया house ले लेता है। response मूल natal chart और relocated chart को साथ-साथ देता है, साथ में एक delta object जो बताता है angles कितनी moved: ascendantShift और mcShift। यह delta बताता है relocation chart के emphasis को कितना बदलता है - बड़ा shift मतलब houses, और इसलिए जीवन के वो क्षेत्र जहाँ ग्रह सक्रिय होते हैं, काफी बदलते हैं जबकि ग्रह खुद नहीं हिले।
POST/v1/relocation
curl -X POST https://api.astroway.info/v1/relocation \
-H "X-Api-Key: aw_live_..." \
-H "Content-Type: application/json" \
-d '{
"natal": {
"date": "1990-05-15",
"time": "14:30:00",
"timezoneOffset": 3,
"latitude": 50.45,
"longitude": 30.52
},
"target": {
"latitude": 40.71,
"longitude": -74.01,
"city": "New York"
}
}' {
"ok": true,
"data": {
"natal": {
"houses": {
"ascendant": 160.4,
"mc": 70.1
}
},
"relocated": {
"houses": {
"ascendant": 243.8,
"mc": 152.6
}
},
"delta": {
"ascendantShift": 83.4,
"mcShift": 82.5
}
}
} Parameters
| name | type | Required | |
|---|---|---|---|
| natal | object | yes | Natal birth data as an object: date, time, timezoneOffset, latitude, longitude. |
| target | object | yes | Target relocation place as an object: latitude, longitude, and an optional city label. |
When to use it
relocation chart को astrocartography-संबंधित सवालों के लिए इस्तेमाल करो - 'अगर मैं इस शहर में रहता तो मेरा chart कैसे दिखता', किसी को move करने की सोच में relocation report, या travel feature जो दिखाता है कौन-से houses destination पर light up होते हैं। यह तब natural है जब location मायने रखती है लेकिन birth data fixed है: planetary makeup constant रहता है, सिर्फ angular और house emphasis shift होते हैं। दोनों charts और angle delta एक response में देने से तू before-and-after सीधे दिखा सकता है, और delta से आसानी से पता चलता है कौन-से relocations barely change होते हैं और कौन-से Ascendant या Midheaven को sign या उससे ज्यादा बदलते हैं। relocated houses को interpretation में डाल के बता कि जगह कैसे वही nativity की felt emphasis को बदलती है।
Notes
सिर्फ house framework relocate होता है; planetary longitudes, signs, और inter-planet aspects natal chart के जैसे ही रहते हैं क्योंकि वे birth moment पर निर्भर हैं, जगह पर नहीं। response दोनों charts और एक delta {ascendantShift, mcShift} देता है ताकि तू angular movement माप सके। target optional city label को display के लिए accept करता है। Houses तेरे चुने हुए system को फॉलो करते हैं; tropical zodiac और Swiss Ephemeris पूरे में।
Try the स्थानांतरण चार्ट API
Grab a key and make your first call in under a minute.