मूल चित्र(SVG फ़ाइल, साधारणतः 429 × 375 पिक्सेल, फ़ाइल का आकार: 16 KB)

इस चित्र को . में ढालें

सारांश

विवरण
Català: Versió vectorial generada en metapost de Positional astronomy.png.
English: Metapost-generated vector version of Positional astronomy.png.
दिनांक
स्रोत Positional astronomy.png
लेखक Wmheric
दूसरे संस्करण
Other related versions:[सम्पादन]
SVG genesis
InfoField
 
The SVG code is valid.
 
इस वेक्टर चित्र को MetaPost की मदद से बनाया गया था।
 
 This file uses embedded text that can be easily translated using a text editor.
मूल कोड
InfoField

PostScript code

metapost-source
def drawangle(expr A,X,B,r,w,col) =
    draw (X + r*unitvector(A-X))
         { r*unitvector(A-X) rotated 90 }
         ..
         { r*unitvector(B-X) rotated 90 }
         (X + r*unitvector(B-X)) withpen pencircle scaled w withcolor col;
enddef;

def drawcircle(expr X,r,w,col,shade,angle) =
    draw (X + (r,0))..(X + (0,r))..(X - (r,0))..(X - (0,r))..cycle withpen pencircle scaled w withcolor col;
    if shade: fill (X + (r,0))--(X - (r,0))..(X - (0,r))..(X + (r,0))..cycle rotatedaround (X,angle); fi;
enddef;

def drawcircleS(expr X,r,w,col,angle) =
    drawcircle(X,r,w,col,true,angle);
enddef;

s = 2cm;
r = 2.2mm;
path p;
pair A, B, C, D;
pair GEE;  % greatest eastern elongation
pair GWE;  % greatest western elongation
pair EQ;  % eastern quadrature
pair WQ;  % western quadrature
pair Sun;  % position of the Sun, defines the origin
  Sun = (0,0);
pair Earth;  % position of the Earth
pair planet;
numeric GEEangle, GWEangle, EQangle, WQangle, planetangle;
GEEangle = 300;
GWEangle = 60;
EQangle = 311.8103;
WQangle = 48.1897;  % arccos(2/3)

pair Conj;  % conjunction
pair Opp;  % opposition
pair SupConj;  % superior conjunction
pair InfConj;  % inferior conjunction

% draw the circles and define points of interest
for i=0 upto 2:
  A := (s + i*s,0);
  B := A rotated 90;
  C := B rotated 90;
  D := C rotated 90;
  p := A..B..C..D..cycle;
  draw p withpen pencircle scaled 1pt;
  
  if i=1:
    Earth := D;
  fi;
  
  if i=0:
    GEE := D rotated GEEangle;
    GWE := D rotated GWEangle;
  fi;
  
  if i=2:
    EQ := D rotated EQangle;
    WQ := D rotated WQangle;  % arccos(2/3)
  fi;
  
  % naming special points for further labeling references
  if i=0:
    SupConj := B;
    InfConj := D;
  fi;
  if i=2:
    Conj := B;
    Opp := D;
  fi;
endfor;

% draw small circles at points of interest
drawcircleS(Conj,r,1pt,black,180);
drawcircleS(SupConj,r,1pt,black,180);
drawcircleS(Opp,r,1pt,black,0);
drawcircleS(InfConj,r,1pt,black,0);

drawcircle(Earth,2.5mm,1pt,black,false,0);
drawcircleS(GEE,r,1pt,black,GEEangle);
drawcircleS(GWE,r,1pt,black,GWEangle);
drawcircleS(EQ,r,1pt,black,EQangle);
drawcircleS(WQ,r,1pt,black,WQangle);

drawcircle(Sun,1.6mm,1pt,black,false,0);
pair out; out = (0,0.6cm);
pair inlft; inlft = (0,2.5mm) rotated 15;
pair inrt; inrt = (0,2.5mm) rotated (-15);
path q;
for i=0 step 30 until 360:
  q := (inlft--out--inrt) rotated i;
  draw q;
endfor;

numeric planetAngle; planetAngle = 330;
planet := D rotated planetAngle;
drawcircleS(planet,r,1pt,black,planetAngle);

% draw the dashed lines
draw B--D withpen pencircle scaled 1pt dashed evenly;
draw EQ--WQ withpen pencircle scaled 1pt dashed evenly;
draw GEE--Earth--GWE withpen pencircle scaled 1pt dashed evenly;
draw Sun--planet--Earth withpen pencircle scaled 1pt dashed evenly;

% draw the Sun and the Earth
drawangle(Earth,planet,Sun,1.0cm,1pt,black);
drawangle(Sun,Earth,planet,0.7cm,1pt,black);

% labelling
label(btex $\alpha$ etex, planet) shifted (1cm,0.8cm);
label(btex $\varepsilon$ etex, Earth) shifted (-0.8cm,0.6cm);

lbl = 0.2cm;

label.lrt("Earth", Earth) shifted (lbl,-lbl);
label.urt("Sun", Sun) shifted (lbl,3*lbl);

label.bot("Opposition", Opp) shifted (0,-lbl);
label.top("Conjunction", Conj) shifted (0,lbl);
label.top("Superior conjunction", SupConj) shifted (0,lbl);

label.top("Inferior", InfConj) shifted (0,3*lbl);
label.top("conjunction", InfConj) shifted (0,lbl);

label.lrt("Western quadrature", WQ) shifted (0,-lbl);
label.llft("Eastern quadrature", EQ) shifted (0,-lbl);

label.top("Greatest western", GWE) shifted (8*lbl,lbl);
label.top("elongation", GWE) shifted (6*lbl,-lbl);
label.top("Greatest eastern", GEE) shifted (-8*lbl,lbl);
label.top("elongation", GEE) shifted (-6*lbl,-lbl);

% arrows
pair OPO,EO,IPO;
OPO := Conj rotated 32;
EO := Earth rotated (180+42);
IPO := SupConj rotated 80;

pair sft; sft := (-lbl,lbl);

drawarrow ((OPO + 3*sft)--(OPO + sft));
drawarrow ((EO + 10*sft)--(EO + sft));
drawarrow ((IPO + 18*sft)--(IPO + sft));

label.top("Outer planet's", (OPO + 3*sft)) shifted (3*lbl,1.8*lbl);
label.top("orbit", (OPO + 3*sft)) shifted (0,0.5*lbl);

label.top("Earth's orbit", (EO + 10*sft)) shifted (0,0.5*lbl);

label.top("Inner planet's", (IPO + 18*sft)) shifted (0,0.7*lbl);
label.top("orbit", (IPO + 18*sft)) shifted (-3*lbl,-0.5*lbl);
इस फ़ाइल को अनुवादित करें इस SVG फ़ाइल में एम्बेड किया हुआ टेक्स्ट है जिसे आप अपनी भाषा में किसी भी सक्षम SVG एडिटर, टेक्स्ट एडिटर, या फिर SVG Translate उपकरण की मदद से अनुवादित कर सकते हैं। अधिक जानकारी के लिए देखें: SVG फ़ाइलों को अनुवादित करने के बारे में
इस फ़ाइल को SVG <switch> तत्वों की मदद से अनुवादित किया जाता है। सभी अनुवाद एक ही फ़ाइल में रखे जाते हैं! अधिक जानें

ज़्यादातर विकिपीडिया परियोजनाओं के लिए आप फ़ाइल को आम तरीके से (बिना lang पैरामीटर के) एम्बेड कर सकते हैं। अगर SVG फ़ाइल में विकिपीडिया की वह भाषा समर्थित हो, तो उसी का इस्तेमाल किया जाएगा। उदाहरणस्वरूप, अगर SVG फ़ाइल में जर्मन भाषा हो तो जर्मन विकिपीडिया पर उसी का इस्तेमाल किया जाएगा। इस फ़ाइल को किसी विशिष्ट भाषा में एम्बेड करने के लिए उचित भाषा कोड के साथ lang पैरामीटर का इस्तेमाल करें, जैसे हिन्दी संस्करण के लिए [[File:Positional astronomy.svg|lang=hi]]। अगर lang पैरामीटर की ज़रूरत नहीं तो इसे निर्दिष्ट न करें। यह पैरामीटर बाद में आवश्यक किसी अनुवाद को रोक देगा।

टेक्स्ट को अपनी भाषा में अनुवादित करने के लिए आप SVG Translate उपकरण का इस्तेमाल कर सकते हैं। वैकल्पिक रूप से, आप फ़ाइल को अपने कंप्यूटर पर डाउनलोड करके, आप जिस भी सॉफ़्टवेयर के अनुकूल हैं उससे अनुवाद जोड़कर, इसी नाम से इसे अपलोड कर सकते हैं। अगर आपको इस प्रक्रिया में कोई संदेह है, आप ग्राफ़िक्स लैब पर सहायता माँग सकते हैं।

लाइसेंस

w:hi:क्रिएटिव कॉमन्स
श्रेय समानसांझा
इस फ़ाइल को क्रिएटिव कॉमन्स श्रेय-समानसांझा 3.0 अनरिपोर्टेड लाइसेंस के अंतर्गत लाइसेंस किया गया है।
आप खुलकर:
  • बाँट सकते हैं – रचना की प्रतिलिपि बना सकते हैं, बाँँट सकते हैं और संचारित कर सकते हैं
  • रीमिक्स कर सकते हैं – कार्य को अनुकूलित कर सकते हैं
निम्नलिखित शर्तों के अंतर्गत:
  • श्रेय – यह अनिवार्य है कि आप यथोचित श्रेय प्रदान करें, लाइसेंस की कड़ी प्रदान करें, और अगर कोई बदलाव हुए हों तो उन्हें इंगित करें। आप ऐसा किसी भी उचित तरीके से कर सकते हैं, लेकिन किसी भी तरह उससे यह नहीं संकेत नहीं किया जाना चाहिए कि लाइसेंसधारी द्वारा आपको अथवा आपके इस प्रयोग का समर्थन किया जा रहा हो।
  • समानसांझा – अगर आप इस रचना में कोई बदलाव करते हैं या इसपर आधारित कुछ रचित करते हैं तो आप अपने योगदान को सिर्फ इसी या इसके सामान किसी लाइसेंस के अंतर्गत बाँट सकते हैं।

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

चित्रण

MIME type अंग्रेज़ी

image/svg+xml

चित्र का इतिहास

फ़ाइलका पुराना अवतरण देखने के लिये दिनांक/समय पर क्लिक करें।

दिनांक/समयथंबनेलआकारसदस्यप्रतिक्रिया
वर्तमान14:45, 5 फ़रवरी 202414:45, 5 फ़रवरी 2024 के संस्करण का थंबनेल संस्करण429 × 375 (16 KB)ManlleusFile uploaded using svgtranslate tool (https://svgtranslate.toolforge.org/). Added translation for ca.
19:06, 23 जून 201919:06, 23 जून 2019 के संस्करण का थंबनेल संस्करण429 × 375 (11 KB)PbrksChange text to sans-serif; changed "inner planet" to "inferior planet" and "outer planet" to "superior planet" per cleanup request
02:55, 30 मार्च 201002:55, 30 मार्च 2010 के संस्करण का थंबनेल संस्करण429 × 375 (42 KB)Wmhericmistakes found for shading of the planets at opposition and at inferior conjunction
02:45, 30 मार्च 201002:45, 30 मार्च 2010 के संस्करण का थंबनेल संस्करण429 × 375 (42 KB)Wmhericmetapost generated svg version of Positional_astronomy.png Category:Astronomy sketches

निम्नलिखित पन्ने इस चित्र से जुडते हैं :

चित्र का वैश्विक उपयोग

इस चित्र का उपयोग इन दूसरे विकियों में किया जाता है:

इस चित्र के वैश्विक उपयोग की अधिक जानकारी देखें।

मेटाडेटा