TIME_ZONEとは? わかりやすく解説

time zone

別表記:タイムゾーン

「time zone」の意味・「time zone」とは

「time zone」とは、地球上東西24帯状分けた区域のことである。それぞれの区域は、地球の自転による時間進行表現するために設けられている。具体的には、地球東西360度分けそのうち15度ごとに1つ時間帯設定している。これにより、地球上のどの地域でも、太陽南中する時刻正午とすることが可能となる。

「time zone」の発音・読み方

「time zone」の発音は、IPA表記では /ˈtaɪm zoʊn/ となる。IPAカタカナ読みでは「タイム ゾウン」となり、日本人発音するカタカナ英語では「タイム ゾーン」と読む。この単語発音によって意味や品詞が変わるものではない。

「time zone」の定義を英語で解説

A 'time zone' is a region of the globe that observes a uniform standard time for legal, commercial, and social purposes. Time zones tend to follow the boundaries of countries and their subdivisions instead of strictly following longitude, because it is convenient for areas in close commercial or other communication to keep the same time.

「time zone」の類語

「time zone」の類語としては、「timezone」、「time sector」、「time area」などがある。これらの語も同様に地球上時間区分するための領域を指す。

「time zone」に関連する用語・表現

「time zone」に関連する用語としては、「Greenwich Mean TimeGMT)」や「Coordinated Universal TimeUTC)」、「Daylight Saving TimeDST)」などがある。これらは全て時間計測し管理するための概念制度である。

「time zone」の例文

以下に、「time zone」を用いた例文10個示す。 1. The time zone of Japan is 9 hours ahead of Greenwich Mean Time.(日本タイムゾーングリニッジ標準時より9時間進んでいる。) 2. Each time zone represents a geographic area in which the local time is the same.(各タイムゾーンは、地元時間が同じである地理的な領域を表す。) 3. When you cross time zones, you may experience jet lag.(タイムゾーン越えると、時差ボケ経験するかもしれない。) 4. The International Date Line marks the place where each day officially begins in the time zone sense.(国際日付変更線は、タイムゾーンの意味各日が公式に始まる場所を示す。) 5. The concept of time zones was proposed by Sir Sandford Fleming.(タイムゾーン概念は、サンドフォード・フレミング卿によって提唱された。) 6. The time zone of a city can be determined by its longitude.(都市タイムゾーンはその経度によって決定される。) 7. Some countries, like China and India, use a single time zone nationwide.(中国インドのような国々は、全国単一タイムゾーン使用する。) 8. The time difference between two time zones is usually one hour.(2つタイムゾーン間の時差通常1時間である。) 9. The use of time zones makes it easier to coordinate activities across different geographical areas.(タイムゾーン使用は、異な地理的地域間での活動調整容易にする。) 10. Adjusting your watch to the local time zone is one of the first things to do when you arrive in a new country.(新しい国に到着したときに最初にすること一つは、時計現地タイムゾーン合わせることである。)

タイム‐ゾーン【time zone】

読み方:たいむぞーん

等時帯


TimeZone クラス

タイム ゾーン表します

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<SerializableAttribute> _
<ComVisibleAttribute(True)> _
Public MustInherit Class
 TimeZone
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public abstract class TimeZone
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public ref class TimeZone abstract
/** @attribute SerializableAttribute() */ 
/** @attribute ComVisibleAttribute(true) */ 
public abstract class TimeZone
SerializableAttribute 
ComVisibleAttribute(true) 
public abstract class TimeZone
解説解説
使用例使用例

選択した TimeZone クラス要素参照および表示するコード例次に示します

' Example of selected TimeZone class elements.
Imports System
Imports System.Globalization
Imports Microsoft.VisualBasic

Module TimeZoneDemo

    Sub Main( )

        Const dataFmt As String
 = "{0,-30}{1}"
        Const timeFmt As String
 = "{0,-30}{1:yyyy-MM-dd HH:mm}"

        Console.WriteLine( "This example of selected "
 & _
            "TimeZone class elements generates the following "
 & _
            vbCrLf & "output, which varies depending on the
 " & _
            "time zone in which it is run." &
 vbCrLf )

        ' Get the local time zone and the current local time and year.
        Dim localZone As TimeZone = TimeZone.CurrentTimeZone
        Dim currentDate As DateTime = DateTime.Now
        Dim currentYear As Integer
 = currentDate.Year

        ' Display the names for standard time and daylight saving 
        ' time for the local time zone.
        Console.WriteLine( dataFmt, "Standard time name:",
 _
            localZone.StandardName )
        Console.WriteLine( dataFmt, "Daylight saving time name:",
 _
            localZone.DaylightName )

        ' Display the current date and time and show if they occur 
        ' in daylight saving time.
        Console.WriteLine( vbCrLf & timeFmt, _
            "Current date and time:", currentDate
 )
        Console.WriteLine( dataFmt, "Daylight saving time?",
 _
            localZone.IsDaylightSavingTime( currentDate ) )

        ' Get the current Coordinated Universal Time (UTC) and UTC 
        ' offset.
        Dim currentUTC As DateTime = _
            localZone.ToUniversalTime( currentDate )
        Dim currentOffset As TimeSpan = _
            localZone.GetUtcOffset( currentDate )

        Console.WriteLine( timeFmt, "Coordinated Universal Time:",
 _
            currentUTC )
        Console.WriteLine( dataFmt, "UTC offset:",
 currentOffset )

        ' Get the DaylightTime object for the current year.
        Dim daylight As DaylightTime = _
            localZone.GetDaylightChanges( currentYear )

        ' Display the daylight saving time range for the current year.
        Console.WriteLine( vbCrLf & _
            "Daylight saving time for year {0}:",
 currentYear )
        Console.WriteLine( "{0:yyyy-MM-dd HH:mm} to "
 & _
            "{1:yyyy-MM-dd HH:mm}, delta: {2}", _
            daylight.Start, daylight.End, daylight.Delta )
    End Sub 
End Module 

' This example of selected TimeZone class elements generates the following
' output, which varies depending on the time zone in which it is run.
' 
' Standard time name:           Pacific Standard Time
' Daylight saving time name:    Pacific Standard Time
' 
' Current date and time:        2003-05-05 12:38
' Daylight saving time?         True
' Coordinated Universal Time:   2003-05-05 19:38
' UTC offset:                   -07:00:00
' 
' Daylight saving time for year 2003:
' 2003-04-06 02:00 to 2003-10-26 02:00, delta: 01:00:00
// Example of selected TimeZone class elements.
using System;
using System.Globalization;

class TimeZoneDemo
{
    static void Main( )
    {
        const string dataFmt = "{0,-30}{1}";
        const string timeFmt = "{0,-30}{1:yyyy-MM-dd
 HH:mm}";

        Console.WriteLine(
            "This example of selected TimeZone class "
 +
            "elements generates the following \n" +
            "output, which varies depending on the " +
            "time zone in which it is run.\n" );

        // Get the local time zone and the current local time and year.
        TimeZone localZone = TimeZone.CurrentTimeZone;
        DateTime currentDate = DateTime.Now;
        int      currentYear = currentDate.Year;

        // Display the names for standard time and daylight saving 
        // time for the local time zone.
        Console.WriteLine( dataFmt, "Standard time name:", 
            localZone.StandardName );
        Console.WriteLine( dataFmt, "Daylight saving time name:", 
            localZone.DaylightName );

        // Display the current date and time and show if they occur
 
        // in daylight saving time.
        Console.WriteLine( "\n" + timeFmt, "Current date and time:"
,
            currentDate );
        Console.WriteLine( dataFmt, "Daylight saving time?", 
            localZone.IsDaylightSavingTime( currentDate ) );

        // Get the current Coordinated Universal Time (UTC) and UTC
 
        // offset.
        DateTime currentUTC = 
            localZone.ToUniversalTime( currentDate );
        TimeSpan currentOffset = 
            localZone.GetUtcOffset( currentDate );

        Console.WriteLine( timeFmt, "Coordinated Universal Time:", 
            currentUTC );
        Console.WriteLine( dataFmt, "UTC offset:", currentOffset );

        // Get the DaylightTime object for the current year.
        DaylightTime daylight = 
            localZone.GetDaylightChanges( currentYear );

        // Display the daylight saving time range for the current year.
        Console.WriteLine( 
            "\nDaylight saving time for year {0}:",
 currentYear );
        Console.WriteLine( "{0:yyyy-MM-dd HH:mm} to " +
            "{1:yyyy-MM-dd HH:mm}, delta: {2}", 
            daylight.Start, daylight.End, daylight.Delta );
    } 
} 

/*
This example of selected TimeZone class elements generates the
 following
output, which varies depending on the time zone in which it is
 run.

Standard time name:           Pacific Standard Time
Daylight saving time name:    Pacific Standard Time

Current date and time:        2003-05-08 11:10
Daylight saving time?         True
Coordinated Universal Time:   2003-05-08 18:10
UTC offset:                   -07:00:00

Daylight saving time for year 2003:
2003-04-06 02:00 to 2003-10-26 02:00, delta: 01:00:00
*/ 
// Example of selected TimeZone class elements.
using namespace System;
using namespace System::Globalization;
int main()
{
   String^ dataFmt = "{0,-30}{1}";
   String^ timeFmt = "{0,-30}{1:yyyy-MM-dd HH:mm}";
   Console::WriteLine( "This example of selected TimeZone class
 "
   "elements generates the following \n"
   "output, which varies depending on the "
   "time zone in which it is run.\n" );
   
   // Get the local time zone and the current local time and year.
   TimeZone^ localZone = TimeZone::CurrentTimeZone;
   DateTime currentDate = DateTime::Now;
   int currentYear = currentDate.Year;
   
   // Display the names for standard time and daylight saving 
   // time for the local time zone.
   Console::WriteLine( dataFmt, "Standard time name:", localZone->StandardName
 );
   Console::WriteLine( dataFmt, "Daylight saving time name:", localZone->DaylightName
 );
   
   // Display the current date and time and show if they occur 
   // in daylight saving time.
   Console::WriteLine( String::Concat( "\n", timeFmt ), "Current date
 and time:", currentDate );
   Console::WriteLine( dataFmt, "Daylight saving time?", localZone->IsDaylightSavingTime(
 currentDate ) );
   
   // Get the current Coordinated Universal Time (UTC) and UTC 
   // offset.
   DateTime currentUTC = localZone->ToUniversalTime( currentDate );
   TimeSpan currentOffset = localZone->GetUtcOffset( currentDate );
   Console::WriteLine( timeFmt, "Coordinated Universal Time:", currentUTC
 );
   Console::WriteLine( dataFmt, "UTC offset:", currentOffset );
   
   // Get the DaylightTime object for the current year.
   DaylightTime^ daylight = localZone->GetDaylightChanges( currentYear );
   
   // Display the daylight saving time range for the current year.
   Console::WriteLine( "\nDaylight saving time for year {0}:",
 currentYear );
   Console::WriteLine( "{0:yyyy-MM-dd HH:mm} to "
   "{1:yyyy-MM-dd HH:mm}, delta: {2}", daylight->Start, daylight->End,
 daylight->Delta );
}

/*
This example of selected TimeZone class elements generates the
 following
output, which varies depending on the time zone in which it is
 run.

Standard time name:           Pacific Standard Time
Daylight saving time name:    Pacific Standard Time

Current date and time:        2003-05-08 11:11
Daylight saving time?         True
Coordinated Universal Time:   2003-05-08 18:11
UTC offset:                   -07:00:00

Daylight saving time for year 2003:
2003-04-06 02:00 to 2003-10-26 02:00, delta: 01:00:00
*/
// Example of selected TimeZone class elements.
import System.*;
import System.Globalization.*;

class TimeZoneDemo
{
    public static void main(String[]
 args)
    {
        final String dataFmt = "{0,-30}{1}";
        final String timeFmt = "{0,-30}{1:yyyy-MM-dd HH:mm}";

        Console.WriteLine(("This example of selected TimeZone class
 " 
            + "elements generates the following \n" 
            + "output, which varies depending on the " 
            + "time zone in which it is run.\n"));

        // Get the local time zone and the current local time and year.
        TimeZone localZone = TimeZone.get_CurrentTimeZone();
        DateTime currentDate = DateTime.get_Now();
        int currentYear = currentDate.get_Year();

        // Display the names for standard time and daylight saving 
        // time for the local time zone.
        Console.WriteLine(dataFmt, "Standard time name:",
            localZone.get_StandardName());
        Console.WriteLine(dataFmt, "Daylight saving time name:",
            localZone.get_DaylightName());

        // Display the current date and time and show if they occur
 
        // in daylight saving time.
        Console.WriteLine("\n" + timeFmt, "Current date and time:",
 
            currentDate);
        Console.WriteLine(dataFmt, "Daylight saving time?",
            String.valueOf(localZone.IsDaylightSavingTime(currentDate)));

        // Get the current Coordinated Universal Time (UTC) and UTC
 
        // offset.
        DateTime currentUTC = localZone.ToUniversalTime(currentDate);
        TimeSpan currentOffset = localZone.GetUtcOffset(currentDate);

        Console.WriteLine(timeFmt,"Coordinated Universal Time:", currentUTC);
        Console.WriteLine(dataFmt, "UTC offset:", currentOffset);

        // Get the DaylightTime object for the current year.
        DaylightTime daylight = localZone.GetDaylightChanges(currentYear);

        // Display the daylight saving time range for the current year.
        Console.WriteLine("\nDaylight saving time for year
 {0}:", 
            String.valueOf(currentYear));
        Console.WriteLine("{0:yyyy-MM-dd HH:mm} to " + 
            "{1:yyyy-MM-dd HH:mm},delta: {2}",
            daylight.get_Start(), daylight.get_End(),
            daylight.get_Delta());
    } //main
} //TimeZoneDemo

/*
This example of selected TimeZone class elements generates the
 following
output, which varies depending on the time zone in which it is
 run.

Standard time name:           Pacific Standard Time
Daylight saving time name:    Pacific Standard Time

Current date and time:        2003-05-08 11:10
Daylight saving time?         True
Coordinated Universal Time:   2003-05-08 18:10
UTC offset:                   -07:00:00

Daylight saving time for year 2003:
2003-04-06 02:00 to 2003-10-26 02:00, delta: 01:00:00
*/
継承階層継承階層
System.Object
  System.TimeZone
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TimeZone コンストラクタ


TimeZone プロパティ


TimeZone メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

TimeZone クラス
System 名前空間

TimeZone メンバ

タイム ゾーン表します

TimeZone データ型公開されるメンバを以下の表に示します


プロテクト コンストラクタプロテクト コンストラクタ
  名前 説明
プロテクト メソッド TimeZone TimeZone クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ StandardName 標準タイム ゾーン名を取得します
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

TimeZone クラス
System 名前空間

TIME ZONE

出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2023/06/09 02:54 UTC 版)

TIME ZONE」(タイム・ゾーン)は男闘呼組の3枚目のシングルで、1989年2月28日に発売された[2]


  1. ^ TIME ZONE|男闘呼組”. ORICON NEWS. 2023年5月2日閲覧。
  2. ^ 男闘呼組 / TIME ZONE[廃盤]”. CDJournal WEB. 2022年4月19日閲覧。
  3. ^ a b 「男闘呼組」の元メンバー・高橋和也(52)と成田昭次(53)の2ショットが話題に!!”. Middle Edge. 2022年4月19日閲覧。
  4. ^ 男闘呼組二枚目|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
  5. ^ a b c NEW BEST 男闘呼組|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
  6. ^ a b BEST OF BALLADS|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
  7. ^ NHK紅白歌合戦ヒストリー”. NHK. 2022年4月19日閲覧。
  8. ^ ヒット・コレクション|男闘呼組”. ORICON NEWS. 2022年4月19日閲覧。
  9. ^ 続・青春歌年鑑 ’89 PLUS|オムニバス”. ORICON NEWS. 2022年4月19日閲覧。


「TIME ZONE」の続きの解説一覧

等時帯

(TIME_ZONE から転送)

出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2024/06/23 07:56 UTC 版)

等時帯(とうじたい)とは、共通の標準時常用時を使う地域全体のことである[1][注釈 1]。その地域の標準時や常用時を示す際には協定世界時(UTC)との差で示すことが多い。時刻帯(じこくたい)[注釈 2]等時刻帯(とうじこくたい)[注釈 3]時間帯(じかんたい)、タイムゾーン: time zone; TZ)、標準時間帯(ひょうじゅんじかんたい)ともいう。 では時刻帯を記述する正負の符号を付けた数字を時刻帯名(じこくたいめい、: zone description; ZD)といい、経度0度の時刻を用いる時刻帯を 0 とし、これより1時間ずつ遅くなる毎に +1 から +12 まで、1時間ずつ早くなる毎に -1 から -12 までで表す[20][21][22][23]。これは ISO 8601RFC 3339 の offset とは逆の符号になる[24]


注釈

  1. ^ 「等時帯」という語は1966年には地理学習参考書に用例がある[2]。また、高等学校学習指導要領平成21年)の解説や中学校学習指導要領平成29年告示)の解説にも「等時帯」が現れる[3][4]
  2. ^ 2022年(令和4年)現在において航空従事者は「時刻帯」という語を用いている[5]1921年大正10年)11月1日公布1922年(大正11年)4月1日施行の海軍艦船使用時規則(大正10年海軍省令第18号)により公海上を航行する艦船は同規則の附図「時刻帯図」に掲載する25個の時刻帯の時を用いることになった。この時刻帯図及び海軍艦船使用時規則は「東洋灯台表」大正11年上巻にも掲載された[6]1937年昭和12年)2月に水路雑図(現代の水路特殊図)として発行した時刻帯図(海図6016号)は[7][8]1941年(昭和16年)の小改正を経て[9][10][11]1958年(昭和33年)頃にも利用された[12][13]1970年代も「時刻帯図」が利用され海上保安庁はその内容の更新に努めていたが[14][15]2002年頃には海図第6016号「時刻帯図 (Time Zone Chart)」は歴史的資料として扱われている[16]
  3. ^ 二宮書店地図帳では2023-2024年版まで「等時刻帯」と表記していたが[17][18]、2024-2025年版では「等時帯」と表記している[19]

出典

  1. ^ デジタル大辞泉. “等時帯(トウジタイ)とは? 意味や使い方”. コトバンク. 2023年3月23日閲覧。
  2. ^ 野村正隆『図解対照地理の整理』学習研究社、東京、1966年7月。doi:10.11501/1682116NDLJP:1682116 
  3. ^ 文部科学省 編「第2章 各科目 第6節 地理B 2 内容とその取扱 (1) 様々な地図と地理的技能」『高等学校学習指導要領解説 地理歴史編(平成26年1月28日更新)』(PDF)文部科学省、東京、2014–01-28、100頁。 オリジナルの2024年4月12日時点におけるアーカイブhttps://warp.da.ndl.go.jp/info:ndljp/pid/13579820/www.mext.go.jp/component/a_menu/education/micro_detail/__icsFiles/afieldfile/2014/10/01/1282000_3.pdf2024年6月10日閲覧 
  4. ^ 文部科学省 編「第2章 社会科の目標及び内容 第2節 各分野の目標及び内容 1 地理的分野の目標,内容及び内容の取扱い (2)内容 A 世界と日本の地域構成」『【社会編】中学校学習指導要領(平成29年告示)解説』(PDF)文部科学省、東京、2017年7月、41頁。 オリジナルの2024年4月11日時点におけるアーカイブhttps://warp.da.ndl.go.jp/info:ndljp/pid/13579820/www.mext.go.jp/component/a_menu/education/micro_detail/__icsFiles/afieldfile/2019/03/18/1387018_003.pdf2024年6月10日閲覧 
  5. ^ 国土交通省 (2022年11月). “航空従事者等学科試験解答及び過去問 令和4年11月期 問題 定期運送用操縦士(回)” (PDF). 国土交通省. 国土交通省. p. 2. 2024年4月4日時点のオリジナルよりアーカイブ。2024年6月14日閲覧。
  6. ^ 水路部 編「海軍艦船使用時規則」『東洋灯台表』 大正11年上巻、水路部、東京、1922年5月17日、213-215頁。doi:10.11501/933816NDLJP:933816/135 
  7. ^ 水路部 編『時刻帶圖 海軍艦船使用時規則附圖』水路部、東京、1937年2月。国立国会図書館書誌ID:000008446039 
  8. ^ 水路部 編「水路雜圖」『普通水路圖誌目録』 昭和13年、水路部、東京〈書誌 ; 第220號〉、1938年3月31日、11頁。doi:10.11501/10304642NDLJP:10304642/20 
  9. ^ 水路部 編『時刻帶圖 海軍艦船使用時規則附圖』水路部、東京、1941年。国立国会図書館書誌ID:000008446040 
  10. ^ 水路部 編「水路雜圖」『普通水路圖誌目録』 昭和17年、水路部、東京〈書誌 ; 第220號〉、1942年1月1日、11頁。doi:10.11501/10304646NDLJP:10304646/20 
  11. ^ 水路部 編「天文略説 時 7.時刻帯と船舶使用時」『天體位置表』 昭和18年、水路部、東京〈書誌 ; 第684號〉、1942年12月30日、475頁。doi:10.11501/10304773NDLJP:10304773/244 
  12. ^ 海上保安庁水路部 編「天文略説 時 7.時刻帯と船舶使用時」『天体位置表』 昭和33年、海上保安庁、東京、1956年12月30日、496頁。doi:10.11501/12607972NDLJP:12607972/258 
  13. ^ 海上保安庁水路部 編「天文略説 時 7.時刻帯と船舶使用時」『天体位置表』 昭和34年、海上保安庁、東京、1958年3月30日、474頁。doi:10.11501/12607973NDLJP:12607973/247 
  14. ^ 原田美道、長谷實「第6回国際連合アジア極東地域地図会議報告」(PDF)『地図』第9巻第1号、日本国際地図学会、東京、1971年3月31日、1-9頁、doi:10.11212/jjca1963.9.1ISSN 2185-646X2024年6月13日閲覧 
  15. ^ 萩原康之「縦横比2:3の正積世界図法についての研究」(PDF)『地図』第17巻第4号、日本国際地図学会、東京、1979年11月30日、1-8頁、doi:10.11212/jjca1963.17.4_1ISSN 2185-646X2024年6月13日閲覧 
  16. ^ 坂戸直輝「海図に関する昭和の技術小史 水路部とともに歩んだ60年 (1)」(PDF)『地図』第40巻第2号、日本国際地図学会、東京、2002年8月8日、12-30頁、doi:10.11212/jjca1963.40.2_12ISSN 2185-646X2024年6月13日閲覧 
  17. ^ 二宮書店編集部「【主題図】 等時刻帯」『新コンパクト地図帳』 2022-2023巻(改訂版)、二宮書店、東京、2022年3月、後2-後3頁。国立国会図書館書誌ID:032007192 
  18. ^ 二宮書店編集部「【主題図】 等時刻帯」『高等地図帳』 2023-2024巻、二宮書店、東京、2023年3月、前2頁。国立国会図書館書誌ID:032657645 
  19. ^ 二宮書店編集部「【主題図】 等時帯」『高等地図帳』 2024-2025巻、二宮書店、東京、2024年3月10日、前2頁。ISBN 978-4-8176-0520-7 
  20. ^ 水路部 編「時刻帶圖」『燈臺表』 第2巻、水路部、東京〈書誌 ; 第100號B〉、1922年5月17日、635對面頁。doi:10.11501/10304767NDLJP:10304767/338 
  21. ^ 水路部 編「海軍艦船使用時規則」『燈臺表』 第2巻、水路部、東京〈書誌 ; 第100號B〉、1922年5月17日、655-656頁。doi:10.11501/10304767NDLJP:10304767/351 
  22. ^ 日本海洋データセンター (1998年6月). “海洋略語辞典” (PDF). 日本海洋データセンター. 海洋略語辞典. 日本海洋データセンター. p. 120. 2014年9月1日時点のオリジナルよりアーカイブ。2024年6月15日閲覧。
  23. ^ U.S. Naval Observatory. “World Time Zone Map” (html) (English). Astronomical Applications Department. Information Center. U.S. Navy. 2024年6月15日閲覧。
  24. ^ Klyne, Graham; Newman, Chris (21 January 2020). Date and Time on the Internet: Timestamps (Report). Internet Engineering Task Force. p. 5. RFC 3339. 2024年6月23日閲覧
  25. ^ ZoneId (Java SE 11 & JDK 11 )
  26. ^ Daylight Saving Time & Time Zone - Microsoft Tech Community


「等時帯」の続きの解説一覧

「Time zone」の例文・使い方・用例・文例

Weblio日本語例文用例辞書はプログラムで機械的に例文を生成しているため、不適切な項目が含まれていることもあります。ご了承くださいませ。



固有名詞の分類


英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「TIME_ZONE」の関連用語

TIME_ZONEのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



TIME_ZONEのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
実用日本語表現辞典実用日本語表現辞典
Copyright © 2024実用日本語表現辞典 All Rights Reserved.
デジタル大辞泉デジタル大辞泉
(C)Shogakukan Inc.
株式会社 小学館
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.
ウィキペディアウィキペディア
All text is available under the terms of the GNU Free Documentation License.
この記事は、ウィキペディアのTIME ZONE (改訂履歴)、等時帯 (改訂履歴)の記事を複製、再配布したものにあたり、GNU Free Documentation Licenseというライセンスの下で提供されています。 Weblio辞書に掲載されているウィキペディアの記事も、全てGNU Free Documentation Licenseの元に提供されております。
Tanaka Corpusのコンテンツは、特に明示されている場合を除いて、次のライセンスに従います:
 Creative Commons Attribution (CC-BY) 2.0 France.
この対訳データはCreative Commons Attribution 3.0 Unportedでライセンスされています。
浜島書店 Catch a Wave
Copyright © 1995-2024 Hamajima Shoten, Publishers. All rights reserved.
株式会社ベネッセコーポレーション株式会社ベネッセコーポレーション
Copyright © Benesse Holdings, Inc. All rights reserved.
研究社研究社
Copyright (c) 1995-2024 Kenkyusha Co., Ltd. All rights reserved.
日本語WordNet日本語WordNet
日本語ワードネット1.1版 (C) 情報通信研究機構, 2009-2010 License All rights reserved.
WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. License
日外アソシエーツ株式会社日外アソシエーツ株式会社
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
「斎藤和英大辞典」斎藤秀三郎著、日外アソシエーツ辞書編集部編
EDRDGEDRDG
This page uses the JMdict dictionary files. These files are the property of the Electronic Dictionary Research and Development Group, and are used in conformance with the Group's licence.

©2024 GRAS Group, Inc.RSS