Wolfram言語

単位と日付

混合数量

混合数量は,金銭,時間,距離,重さ,角度等,多数のコンテキストに見られる.

In[1]:=
Click for copyable input
Quantity[MixedMagnitude[{2, 35, 21.2}], MixedUnit[{"Hours", "Minutes", "Seconds"}]]
Out[1]=
In[2]:=
Click for copyable input
UnitConvert[Quantity[75.562, "AngularDegrees"], MixedUnit[{"AngularDegrees", "ArcMinutes", "ArcSeconds"}]]
Out[2]=
In[3]:=
Click for copyable input
Quantity[MixedMagnitude[{5, 11}], MixedUnit[{"Feet", "Inches"}]]
Out[3]=
In[4]:=
Click for copyable input
Quantity[MixedMagnitude[{5, 11}], MixedUnit[{"Feet", "Inches"}]]; % + Quantity[2.5, "Feet"]
Out[4]=

関数SiderealTimeは混合数量を返す.ユーザの現在位置における恒星時を求める.

In[5]:=
Click for copyable input
stime = SiderealTime[]
Out[5]=

太陽の現在位置を赤道座標系で求める.

In[6]:=
Click for copyable input
sunpos = SunPosition[CelestialSystem -> "Equatorial"]
Out[6]=

月の位置を同じ座標系で計算する.

In[7]:=
Click for copyable input
moonpos = MoonPosition[CelestialSystem -> "Equatorial"]
Out[7]=

惑星の赤経座標を求める.

In[8]:=
Click for copyable input
planetpos = QuantityMagnitude[ DeleteMissing[ EntityValue[EntityClass["Planet", All], EntityProperty["Planet", "RightAscension"]]], "HoursOfRightAscension"]
Out[8]=

さまざまな位置の測度値を組み合せ,各天体の赤経のリストを作る.

In[9]:=
Click for copyable input
ascensions = Join[ {0, moonpos[[1, 1]] - sunpos[[1, 1]]}, planetpos];
完全なWolfram言語入力を表示する
In[10]:=
Click for copyable input
gp = Sequence[GeoRange -> "World", GeoProjection -> {"AzimuthalEquidistant", "Centering" -> {-90, 0}}]; globe = GeoGraphics[{Thick, Black, Arrow[{{0, 0}, $GeoLocation}]}, gp, GeoBackground -> GeoStyling["ReliefMap"]][[1, 1]]; cross = {Thickness[.005], Opacity[.5], Line[9.5 {-#, #}]} & /@ {{0, 1}, {1, 0}}; shade = GeoGraphics[{Opacity[.5], GeoDisk[{-sunpos[[2, 1]], 180}, 10018758]}, gp, GeoBackground -> None][[1, 1]];

南極から見た惑星,太陽,月の位置のグラフィックビューを作る.

完全なWolfram言語入力を表示する
In[11]:=
Click for copyable input
Rasterize[ Graphics[{globe, cross, shade, MapThread[ Text[Style[#3, #2, 24, FontWeight -> Bold], {0, 3.5}.RotationMatrix[(#1) \[Pi]/12]] &, {ascensions, {Yellow, White, Orange, Lighter[Blue], Red, Lighter[Purple], Orange, Cyan, Lighter[Blue]}, {"☼", "\[Moon]", "\[Mercury]", "\[Venus]", "\[Mars]", "\[Jupiter]", "\[Saturn]", "♅", "\[Neptune]"}}]}, Background -> GrayLevel[0.2], PlotRange -> 4, PlotLabel -> #, LabelStyle -> {Bold, White}, Axes -> None] &@stime, RasterSize -> 600, ImageSize -> 450]
Out[11]=

関連する例

de en es fr ko pt-br zh