Skip to content

Commit 57764ef

Browse files
committed
Init
0 parents  commit 57764ef

File tree

114 files changed

+70305
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+70305
-0
lines changed

.gitattributes

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## Unity ##
2+
3+
*.cs diff=csharp text
4+
*.cginc text
5+
*.shader text
6+
*.mat merge=unityyamlmerge eol=lf
7+
*.anim merge=unityyamlmerge eol=lf
8+
*.unity merge=unityyamlmerge eol=lf
9+
*.prefab merge=unityyamlmerge eol=lf
10+
*.physicsMaterial2D merge=unityyamlmerge eol=lf
11+
*.physicMaterial merge=unityyamlmerge eol=lf
12+
*.asset merge=unityyamlmerge eol=lf
13+
*.meta merge=unityyamlmerge eol=lf
14+
*.controller merge=unityyamlmerge eol=lf

.gitignore

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
# This .gitignore file should be placed at the root of your Unity project directory
2+
#
3+
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
4+
#
5+
/[Ll]ibrary/
6+
/[Tt]emp/
7+
/[Oo]bj/
8+
/[Bb]uild/
9+
/[Bb]uilds/
10+
/[Ll]ogs/
11+
/[Uu]ser[Ss]ettings/
12+
13+
# MemoryCaptures can get excessive in size.
14+
# They also could contain extremely sensitive data
15+
/[Mm]emoryCaptures/
16+
17+
# Recordings can get excessive in size
18+
/[Rr]ecordings/
19+
20+
# Uncomment this line if you wish to ignore the asset store tools plugin
21+
# /[Aa]ssets/AssetStoreTools*
22+
23+
# Autogenerated Jetbrains Rider plugin
24+
/[Aa]ssets/Plugins/Editor/JetBrains*
25+
26+
# Visual Studio cache directory
27+
.vs/
28+
29+
# Gradle cache directory
30+
.gradle/
31+
32+
# Autogenerated VS/MD/Consulo solution and project files
33+
ExportedObj/
34+
.consulo/
35+
*.csproj
36+
*.unityproj
37+
*.sln
38+
*.suo
39+
*.tmp
40+
*.user
41+
*.userprefs
42+
*.pidb
43+
*.booproj
44+
*.svd
45+
*.pdb
46+
*.mdb
47+
*.opendb
48+
*.VC.db
49+
50+
# Unity3D generated meta files
51+
*.pidb.meta
52+
*.pdb.meta
53+
*.mdb.meta
54+
55+
# Unity3D generated file on crash reports
56+
sysinfo.txt
57+
58+
# Builds
59+
*.apk
60+
*.aab
61+
*.unitypackage
62+
*.app
63+
64+
# Crashlytics generated file
65+
crashlytics-build.properties
66+
67+
# Packed Addressables
68+
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
69+
70+
# Temporary auto-generated Android Assets
71+
/[Aa]ssets/[Ss]treamingAssets/aa.meta
72+
/[Aa]ssets/[Ss]treamingAssets/aa/*
73+
74+
75+
.vscode/*
76+
!.vscode/settings.json
77+
!.vscode/tasks.json
78+
!.vscode/launch.json
79+
!.vscode/extensions.json
80+
!.vscode/*.code-snippets
81+
82+
# Local History for Visual Studio Code
83+
.history/
84+
85+
# Built Visual Studio Code Extensions
86+
*.vsix
87+
88+
# Common IntelliJ Platform excludes
89+
90+
# User specific
91+
**/.idea/**/workspace.xml
92+
**/.idea/**/tasks.xml
93+
**/.idea/shelf/*
94+
**/.idea/dictionaries
95+
**/.idea/httpRequests/
96+
97+
# Sensitive or high-churn files
98+
**/.idea/**/dataSources/
99+
**/.idea/**/dataSources.ids
100+
**/.idea/**/dataSources.xml
101+
**/.idea/**/dataSources.local.xml
102+
**/.idea/**/sqlDataSources.xml
103+
**/.idea/**/dynamic.xml
104+
105+
# Rider
106+
# Rider auto-generates .iml files, and contentModel.xml
107+
**/.idea/**/*.iml
108+
**/.idea/**/contentModel.xml
109+
**/.idea/**/modules.xml
110+
.idea
111+
*.idea
112+
113+
114+
*.suo
115+
*.user
116+
.vs/
117+
[Bb]in/
118+
[Oo]bj/
119+
_UpgradeReport_Files/
120+
121+
.gitignore.bak
122+
.vsconfig
123+
124+
125+
Thumbs.db
126+
Desktop.ini
127+
.DS_Store

Assets/NuGet.config

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<clear />
5+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
6+
</packageSources>
7+
<disabledPackageSources />
8+
<activePackageSource>
9+
<add key="All" value="(Aggregate source)" />
10+
</activePackageSource>
11+
<config>
12+
<add key="repositoryPath" value="./Packages" />
13+
<add key="PackagesConfigDirectoryPath" value="." />
14+
<add key="slimRestore" value="true" />
15+
</config>
16+
</configuration>

Assets/NuGet.config.meta

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Packages.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Packages/CoordinateSharp.2.20.1.1.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Loading

Assets/Packages/CoordinateSharp.2.20.1.1/128x128.png.meta

+112
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
3+
<metadata>
4+
<id>CoordinateSharp</id>
5+
<version>2.20.1.1</version>
6+
<title>CoordinateSharp</title>
7+
<authors>Signature Group, LLC</authors>
8+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
9+
<license type="file">License.txt</license>
10+
<licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl>
11+
<icon>128x128.png</icon>
12+
<readme>README.md</readme>
13+
<projectUrl>https://github.com/Tronald/CoordinateSharp</projectUrl>
14+
<description>CoordinateSharp is a high powered, lightweight .NET library that can convert geographical coordinates, perform distance logic, and calculate location based sun, moon, and magnetic information with minimal code.</description>
15+
<releaseNotes>-Adds ability to estimate time of day from sun azimuth.
16+
-Adds "out of bounds" check to UTM initialization, allowing users to detect over projection.
17+
-Deprecates 'AstrologicalSigns' class and replaces with new 'AlmanacMoonName' class.
18+
-Various documentation fixes.</releaseNotes>
19+
<copyright>Copyright 2023</copyright>
20+
<tags>Conversion Latitude Longitude Coordinates Geography Sun Moon Solar Lunar Time MGRS UTM EPSG:3857 ECEF GEOREF Web Mercator</tags>
21+
<repository url="https://github.com/Tronald/CoordinateSharp" />
22+
<dependencies>
23+
<group targetFramework=".NETFramework4.0" />
24+
<group targetFramework=".NETStandard1.3">
25+
<dependency id="NETStandard.Library" version="1.6.1" exclude="Build,Analyzers" />
26+
<dependency id="System.Reflection.TypeExtensions" version="4.5.0" exclude="Build,Analyzers" />
27+
<dependency id="System.Runtime.Serialization.Formatters" version="4.3.0" exclude="Build,Analyzers" />
28+
<dependency id="System.Runtime.Serialization.Primitives" version="4.3.0" exclude="Build,Analyzers" />
29+
</group>
30+
<group targetFramework=".NETStandard1.4">
31+
<dependency id="NETStandard.Library" version="1.6.1" exclude="Build,Analyzers" />
32+
<dependency id="System.Reflection.TypeExtensions" version="4.5.0" exclude="Build,Analyzers" />
33+
<dependency id="System.Runtime.Serialization.Formatters" version="4.3.0" exclude="Build,Analyzers" />
34+
<dependency id="System.Runtime.Serialization.Primitives" version="4.3.0" exclude="Build,Analyzers" />
35+
</group>
36+
<group targetFramework="net5.0" />
37+
<group targetFramework="net6.0" />
38+
<group targetFramework="net7.0" />
39+
<group targetFramework=".NETStandard2.0">
40+
<dependency id="System.Reflection.TypeExtensions" version="4.5.0" exclude="Build,Analyzers" />
41+
<dependency id="System.Runtime.Serialization.Formatters" version="4.3.0" exclude="Build,Analyzers" />
42+
<dependency id="System.Runtime.Serialization.Primitives" version="4.3.0" exclude="Build,Analyzers" />
43+
</group>
44+
<group targetFramework=".NETStandard2.1">
45+
<dependency id="System.Reflection.TypeExtensions" version="4.7.0" exclude="Build,Analyzers" />
46+
<dependency id="System.Runtime.Serialization.Formatters" version="4.3.0" exclude="Build,Analyzers" />
47+
<dependency id="System.Runtime.Serialization.Primitives" version="4.3.0" exclude="Build,Analyzers" />
48+
</group>
49+
</dependencies>
50+
<frameworkAssemblies>
51+
<frameworkAssembly assemblyName="Microsoft.CSharp" targetFramework=".NETFramework4.0" />
52+
<frameworkAssembly assemblyName="System.Core" targetFramework=".NETFramework4.0" />
53+
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.0" />
54+
</frameworkAssemblies>
55+
</metadata>
56+
</package>

Assets/Packages/CoordinateSharp.2.20.1.1/CoordinateSharp.nuspec.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)