Hanson.Common.GeoTimeZone
1.0.0
dotnet add package Hanson.Common.GeoTimeZone --version 1.0.0
NuGet\Install-Package Hanson.Common.GeoTimeZone -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Hanson.Common.GeoTimeZone" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Hanson.Common.GeoTimeZone" Version="1.0.0" />
<PackageReference Include="Hanson.Common.GeoTimeZone" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Hanson.Common.GeoTimeZone --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Hanson.Common.GeoTimeZone, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Hanson.Common.GeoTimeZone@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Hanson.Common.GeoTimeZone&version=1.0.0
#tool nuget:?package=Hanson.Common.GeoTimeZone&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
README
Hanson.Common.Utils
主要功能
提供 GEO 相關 Extension
- 經緯度轉成 TimeZone
- Unix Timestamp 使用經緯度轉 DateTime
前置條件
- 開發環境需具備 .Net 8.0
- 運行於 Windows Platform (x64)
- 運行於 Linux Platform (x64)
- 運行於 Raspberry PI Platform (x64)
安裝方式
- 採用 Nuget 方式進行安裝作業 https://www.nuget.org/packages/Hanson.Common.GeoTimeZone/
授權
此專案採用的 License為 Apache-2.0
使用範例
命名空間
using Hanson.Common.Utils;
- DateTime Extension sample
private void Sample()
{
long unix = 347126400000;
double longitude = 139.6917;
double latitude = 35.6895
// Unix timestamp 依經緯度轉成 Local DateTime
DateTime unixTime = unix.ToDateTime(longitude,latitude);
Console.WriteLine($"Unix timestamp ({unix}) => DateTime {unixTime:yyyy-MM-dd HH:mm:ss}");
// Unix timestamp 依 Region 轉成 Local DateTime
string region = "Asia/Tokyo"
DateTime regionTime = unix.ToDateTime(region);
Console.WriteLine($"Unix timestamp ({unix}) => DateTime {regionTime:yyyy-MM-dd HH:mm:ss}");
// 依經緯度轉成 Region
var region = Extension.GetRegion(longitude, latitude);
Console.WriteLine($"longitude:{longitude}, latitude:{latitude} => Region:{region}");
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- NetTopologySuite.IO.Esri.Shapefile (>= 1.2.0)
- TimeZoneConverter (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
1.0.0 | 170 | 5/5/2025 |