Skip to content

Commit 0e9a6ec

Browse files
authored
Merge pull request #975 from thkruz/develop
Develop
2 parents f0f29bb + 9675975 commit 0e9a6ec

File tree

236 files changed

+176
-73764
lines changed

Some content is hidden

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

236 files changed

+176
-73764
lines changed

.gitattributes

+4-21
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
# Force the following filetypes to have unix eols, so Windows does not break them
22
*.* text eol=lf
3-
43
## GITATTRIBUTES FOR WEB PROJECTS
54
#
65
# These settings are for any web project.
7-
#
86
# Details per file setting:
97
# text These files should be normalized (i.e. convert CRLF to LF).
108
# binary These files are binary and should be left untouched.
11-
#
129
# Note that binary is a macro for -text -diff.
1310
######################################################################
14-
1511
# Auto detect
1612
## Handle line endings automatically for files detected as
1713
## text and leave all files detected as binary untouched.
1814
## This will handle all files NOT defined below.
1915
* text=auto
20-
2116
# Source code
2217
*.bash text eol=lf
2318
*.bat text eol=crlf
@@ -52,10 +47,8 @@
5247
*.tsx text
5348
*.xml text
5449
*.xhtml text diff=html
55-
5650
# Docker
5751
Dockerfile text
58-
5952
# Documentation
6053
*.ipynb text
6154
*.markdown text
@@ -81,7 +74,6 @@ NEWS text
8174
readme text
8275
*README* text
8376
TODO text
84-
8577
# Templates
8678
*.dot text
8779
*.ejs text
@@ -98,7 +90,6 @@ TODO text
9890
*.tpl text
9991
*.twig text
10092
*.vue text
101-
10293
# Configs
10394
*.cnf text
10495
*.conf text
@@ -116,10 +107,8 @@ package-lock.json text -diff
116107
browserslist text
117108
Makefile text
118109
makefile text
119-
120110
# Heroku
121111
Procfile text
122-
123112
# Graphics
124113
*.ai binary
125114
*.bmp binary
@@ -129,12 +118,12 @@ Procfile text
129118
*.ico binary
130119
*.jng binary
131120
*.jp2 binary
132-
*.jpg binary
133-
*.jpeg binary
121+
*.jpg filter=lfs diff=lfs merge=lfs -text
122+
*.jpeg filter=lfs diff=lfs merge=lfs -text
134123
*.jpx binary
135124
*.jxr binary
136125
*.pdf binary
137-
*.png binary
126+
*.png filter=lfs diff=lfs merge=lfs -text
138127
*.psb binary
139128
*.psd binary
140129
# SVG treated as an asset (binary) by default.
@@ -147,7 +136,6 @@ Procfile text
147136
*.tiff binary
148137
*.wbmp binary
149138
*.webp binary
150-
151139
# Audio
152140
*.kar binary
153141
*.m4a binary
@@ -156,7 +144,6 @@ Procfile text
156144
*.mp3 binary
157145
*.ogg binary
158146
*.ra binary
159-
160147
# Video
161148
*.3gpp binary
162149
*.3gp binary
@@ -175,28 +162,24 @@ Procfile text
175162
*.swc binary
176163
*.swf binary
177164
*.webm binary
178-
179165
# Archives
180166
*.7z binary
181167
*.gz binary
182168
*.jar binary
183169
*.rar binary
184170
*.tar binary
185171
*.zip binary
186-
187172
# Fonts
188173
*.ttf binary
189174
*.eot binary
190175
*.otf binary
191176
*.woff binary
192177
*.woff2 binary
193-
194178
# Executables
195179
*.exe binary
196180
*.pyc binary
197-
198181
# RC files (like .babelrc or .eslintrc)
199182
*.*rc text
200-
201183
# Ignore files (like .npmignore or .gitignore)
202184
*.*ignore text
185+
*.xcf filter=lfs diff=lfs merge=lfs -text

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ public/analysis/sathist/*.json
101101
# Extended TLE
102102
public/tle/tle4.js
103103
public/tle/*.bak
104-
public/tle/TLE.json
105104
public/tle/TLEold.json
106105

107106
# Custom Builds

.husky/post-checkout

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-checkout' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
3+
git lfs post-checkout "$@"

.husky/post-commit

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-commit' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
3+
git lfs post-commit "$@"

.husky/post-merge

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'post-merge' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
3+
git lfs post-merge "$@"

.husky/pre-push

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting the 'pre-push' file in the hooks directory (set by 'core.hookspath'; usually '.git/hooks').\n"; exit 2; }
3+
git lfs pre-push "$@"

docs/1.jpg

-266 KB

docs/2.jpg

-211 KB

docs/3.jpg

-201 KB

docs/4.jpg

-111 KB

docs/5.jpg

-111 KB

docs/6.jpg

-160 KB

docs/7.jpg

-103 KB
-622 Bytes
-914 Bytes
-6.72 KB
-6.78 KB
-4.44 KB
-6.72 KB
-4.4 KB
-6.04 KB

public/flags/esa.png

-29.5 KB

public/flags/iss.png

-181 KB

public/flags/nato.png

-19.2 KB

public/flags/tbd.png

-4.32 KB

public/img/.textLogo.xcf

-943 KB
Binary file not shown.

public/img/.textLogo2.xcf

-1.49 MB
Binary file not shown.

public/img/braun-stereographic.jpg

-214 KB

public/img/down-arrow.png

-310 Bytes
-41 KB
-211 KB
-8.72 KB

public/img/favicons/favicon-16x16.png

-755 Bytes

public/img/favicons/favicon-32x32.png

-1.41 KB
-6.62 KB

public/img/gear-icon.png

-7.88 KB

public/img/github.png

-2.33 KB

public/img/history.png

-515 Bytes

public/img/icons/about.png

-12.2 KB

public/img/icons/add.png

-9.8 KB

public/img/icons/analysis.png

-10.8 KB

public/img/icons/analytics.png

-9.2 KB

public/img/icons/breakup.png

-16.6 KB

public/img/icons/calendar.png

-7.65 KB

public/img/icons/calendar2.png

-8.59 KB

public/img/icons/camera.png

-11.5 KB

public/img/icons/collisions.png

-17.8 KB

public/img/icons/colors.png

-14.5 KB

public/img/icons/constellation.png

-2.57 KB

public/img/icons/coordinates.png

-1.3 KB

public/img/icons/custom.png

-14.5 KB

public/img/icons/database.png

-14.7 KB

public/img/icons/day-night.png

-2.31 KB

public/img/icons/debug.png

-11.7 KB

public/img/icons/developer.png

-2.65 KB

public/img/icons/edit.png

-7.71 KB

public/img/icons/explosion.png

-3.24 KB

public/img/icons/external.png

-534 Bytes

public/img/icons/fence.png

-12.1 KB

public/img/icons/find.png

-12.6 KB

public/img/icons/find2.png

-12.6 KB

public/img/icons/flag.png

-5.77 KB

public/img/icons/fov.png

-21.7 KB

public/img/icons/fullscreen-icon.png

-4.12 KB

public/img/icons/github.png

-2.48 KB

public/img/icons/globe.png

-3.1 KB

public/img/icons/gps.png

-1.96 KB

public/img/icons/help.png

-14.9 KB

public/img/icons/info.png

-11.4 KB

public/img/icons/iod.png

-2.54 KB

public/img/icons/layers-icon.png

-11.6 KB

public/img/icons/line-plot.png

-22.6 KB

public/img/icons/location.png

-3.86 KB

public/img/icons/lookangles.png

-8.09 KB

public/img/icons/map.png

-2.53 KB

public/img/icons/member.png

-3.81 KB

public/img/icons/missile.png

-14.3 KB

public/img/icons/multi-site.png

-6.54 KB

public/img/icons/mushroom-cloud.png

-3.11 KB

public/img/icons/orbit.png

-17.7 KB

public/img/icons/photoManager.png

-16.7 KB

public/img/icons/planetarium.png

-1.39 KB

public/img/icons/polar.png

-5.83 KB

public/img/icons/radar.png

-16.8 KB

public/img/icons/radio-tower.png

-12.7 KB

public/img/icons/remove.png

-9.14 KB

public/img/icons/reports.png

-8.7 KB

public/img/icons/rocket.png

-16.3 KB

public/img/icons/rocket2.png

-3.18 KB

public/img/icons/sat-channel-freq.png

-2.58 KB

public/img/icons/sat2.png

-8 KB

public/img/icons/sat3.png

-14.1 KB

public/img/icons/sat4.png

-2.91 KB

public/img/icons/sat5.png

-18.1 KB

public/img/icons/satchng.png

-10.5 KB

public/img/icons/satcom.png

-4.05 KB

public/img/icons/sats.png

-2.97 KB

public/img/icons/sats2.png

-6.76 KB

public/img/icons/scatter-plot.png

-24.9 KB

public/img/icons/scatter-plot2.png

-21.7 KB

public/img/icons/scatter-plot3.png

-23.2 KB

public/img/icons/scatter-plot4.png

-23.5 KB

public/img/icons/search.png

-14.2 KB

public/img/icons/sensor_occupied.png

-18.9 KB

public/img/icons/settings.png

-14.6 KB

public/img/icons/sound-off.png

-5.86 KB

public/img/icons/sound-on.png

-5.76 KB

public/img/icons/sputnick.png

-2.57 KB

public/img/icons/status-icons.png

-622 Bytes

public/img/icons/status/caution.png

-486 Bytes

public/img/icons/status/error.png

-633 Bytes

public/img/icons/status/good.png

-799 Bytes

public/img/icons/status/standby.png

-898 Bytes
-653 Bytes

public/img/icons/status/warning.png

-706 Bytes

public/img/icons/telescope.png

-2.34 KB

public/img/icons/time-machine.png

-12.6 KB

public/img/icons/twitter.png

-1.92 KB

public/img/icons/video.png

-6.96 KB

public/img/icons/view_timeline.png

-8.03 KB

public/img/icons/view_timeline2.png

-7.58 KB

public/img/icons/watchlist.png

-8.53 KB

public/img/icons/world.png

-3.27 KB

public/img/kts-orange-logo.png

-51.3 KB

public/img/kts-orange-name.png

-28.5 KB

public/img/kts-orange.xcf

-249 KB
Binary file not shown.

public/img/kts-text-logo.png

-44.4 KB

public/img/kts-text2.xcf

-247 KB
Binary file not shown.

public/img/left-arrow.png

-312 Bytes

public/img/logo.xcf

-522 KB
Binary file not shown.

public/img/logo128.png

-30.1 KB

public/img/logo192.png

-65.5 KB

public/img/logo2.xcf

-742 KB
Binary file not shown.

public/img/logo3.xcf

-2.27 MB
Binary file not shown.

public/img/logo512.png

-456 KB

public/img/logoLgSq.png

-1.02 MB

public/img/map_boundaries.jpg

-2.44 MB

public/img/map_boundaries2.jpg

-137 KB

public/img/promoWLogo.png

-2.68 MB

public/img/promoWLogoSm.png

-526 KB

public/img/pwa/square.png

-482 KB

public/img/pwa/wide.png

-910 KB

public/img/radar-1.png

-11 KB

public/img/red-square.png

3 Bytes

public/img/right-arrow.png

-296 Bytes

public/img/satellite-2.png

-4.74 KB

public/img/search-icon-blue.png

-4.43 KB

public/img/search-icon.png

-694 Bytes

public/img/share-icon.png

-720 Bytes

public/img/textLogoLg.png

-171 KB

public/img/textLogoMd.png

-88.3 KB

public/img/textLogoSm.png

-38.9 KB

public/img/textLogoXl.png

-218 KB

public/img/trusat.png

-4.75 KB

public/img/twitter.png

-45 KB

public/img/up-arrow.png

-298 Bytes

public/img/wallpaper/cubesat.jpg

-243 KB

public/img/wallpaper/iss.jpg

-328 KB

public/img/wallpaper/observatory.jpg

-231 KB

public/img/wallpaper/rocket.jpg

-297 KB

public/img/wallpaper/rocket2.jpg

-228 KB

public/img/wallpaper/rocket3.jpg

-274 KB

public/img/wallpaper/rocket4.jpg

-221 KB

public/img/wallpaper/sat.jpg

-187 KB

public/img/wallpaper/telescope.jpg

-335 KB

public/img/wallpaper/thule.jpg

-303 KB

public/img/yellow-square.png

-3 Bytes

public/keeptrack8-preview.png

-2.72 MB
-572 KB

public/textures/earthbump256.jpg

-9.66 KB

public/textures/earthbump4k.jpg

-723 KB

public/textures/earthbump8k.jpg

-1.71 MB

public/textures/earthcloudmap.jpg

-229 KB
-180 KB
-282 KB

public/textures/earthlights16k.jpg

-8.38 MB

public/textures/earthlights1k.jpg

-177 KB

public/textures/earthlights2k.jpg

-270 KB

public/textures/earthlights4k.jpg

-570 KB

public/textures/earthlights512.jpg

-53.1 KB

public/textures/earthmap16k.jpg

-12.8 MB

public/textures/earthmap4k.jpg

-782 KB

public/textures/earthmap512.jpg

-91.5 KB

public/textures/earthspec256.jpg

-14.1 KB

public/textures/earthspec4k.jpg

-590 KB

public/textures/earthspec8k.jpg

-772 KB

public/textures/mercator-tex.jpg

-785 KB

public/textures/moon-1024.jpg

-99.5 KB

public/textures/moonbump4k.jpg

-2.59 MB

public/textures/moonmap256.jpg

-20 KB

public/textures/moonmap2k.jpg

-1.46 MB

public/textures/moonmap4k.jpg

-5.12 MB
-255 KB
-728 KB

public/textures/political8k-gray.jpg

-752 KB

public/textures/political8k.jpg

-1.52 MB

public/textures/political8k.old.jpg

-1.43 MB

public/textures/skybox/back.png

-1.2 MB

public/textures/skybox/bottom.png

-920 KB

public/textures/skybox/front.png

-1.74 MB

public/textures/skybox/left.png

-924 KB

public/textures/skybox/right.png

-1.56 MB

public/textures/skybox/top.png

-1.26 MB

public/textures/skybox16k.jpg

-11.9 MB

public/textures/skybox1k-gray.jpg

-21.5 KB

public/textures/skybox4k.jpg

-763 KB

public/textures/skybox8k.jpg

-1.65 MB
-1.15 MB
-437 KB
-1.51 MB
-613 KB

public/textures/sun-1024.jpg

-96 KB

public/textures/trusatvector-4096.jpg

-891 KB
-1.67 MB

public/textures/world_blue-2048.png

-958 KB

public/tle/TLE2.json.old

-1
This file was deleted.

0 commit comments

Comments
 (0)