earth-skizze-2.tex 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. \documentclass{article}
  2. \usepackage{xcolor}
  3. \definecolor{sky}{HTML}{AAEEEE}
  4. \definecolor{lgreen}{HTML}{77DD11}
  5. \usepackage[pdftex,active,tightpage]{preview}
  6. \setlength\PreviewBorder{2mm}
  7. \usepackage{tikz}
  8. \usetikzlibrary{calc, decorations.pathmorphing, decorations.text}
  9. \begin{document}
  10. \begin{preview}
  11. \begin{tikzpicture}[scale=3.5,dot/.style={circle,fill=black,minimum size=4pt,inner sep=0pt,
  12. outer sep=-1pt}]
  13. \draw[fill=sky!20] (180:1.2cm) arc (180:0:1.2cm);
  14. \draw[fill=brown!20] (180:1cm) arc (180:0:1cm);
  15. \draw (-1.2cm,0) -- node {} (1.2cm, 0);
  16. \draw (0,0) -- node {} (0, 1cm);
  17. \node at (0,1.1cm) {N} ;
  18. \coordinate (DEnd) at (0.867cm,0.5cm) ;
  19. \draw[dashed] (-0.86cm,0.5cm) -- node[above] {} (DEnd);
  20. \node[above] at (-0.4cm, 0.45cm) {25. Breitengrad};
  21. \node[above, text width=1cm] at (0.15cm, 0.5cm) {\scriptsize Burdsch\\Chalifa};
  22. \node[above, text width=1cm] at (0.7cm, 0.5cm) {\scriptsize Mileiha};
  23. \path [decorate,
  24. decoration={
  25. text along path,
  26. text={6370 km},
  27. text align={align=center}
  28. }
  29. ] (0,0) -- (DEnd);
  30. \draw (0,0) -- node {} (DEnd);
  31. \draw[arrows={stealth-stealth}] (-1cm,-0.05cm) -- node[below] {6370 km} (0,-0.05cm);
  32. \node[dot, lgreen] at (0.2cm,0.5cm) (S) {};
  33. \node[dot, lgreen] at (0.5cm,0.5cm) (E) {};
  34. \draw[lgreen, thick] (S) -- node {} (E);
  35. \begin{scope}[shift={(DEnd)}]
  36. \draw[fill=gray!20] (0,0) -- (180:0.3cm) arc (180:210:0.3cm);
  37. \draw (195:0.2cm) node {$\scriptstyle 25^\circ$};
  38. \end{scope}
  39. \end{tikzpicture}
  40. \end{preview}
  41. \end{document}