-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
executable file
·233 lines (207 loc) · 3.33 KB
/
Copy path.gitignore
File metadata and controls
executable file
·233 lines (207 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Django
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
media/
static/
# Virtual Environment
venv/
env/
ENV/
# IDE
.idea/
.vscode/
*.swp
*.swo
.DS_Store
# Docker
.docker/
docker-compose.override.yml
# Project specific
*.pyc
.env
.env.local
*.bak
logs/
temp/
uploads/
data/
# ML/AI Results and outputs
deepgis_results/
# ML/DL specific
*.h5
*.pth
*.pt
*.onnx
*.pb
checkpoints/
runs/
wandb/
# Model weights — sync from /mnt/dreamslab-store via scripts/sync_assets.sh
# (contents are individually ignored above by *.pth etc., but ignoring the
# directory itself keeps `git status` clean when the host mounts a populated
# copy)
/models/
# Jupyter Notebook
.ipynb_checkpoints
*.ipynb
# Coverage reports
htmlcov/
.coverage
.coverage.*
coverage.xml
*.cover
# Large 3D model files
*.gltf
*.glb
*.fbx
*.obj
*.dae
*.3ds
*.blend
*.stl
*.ply
*.x3d
# Large geospatial data files
*.mbtiles
*.tif
*.tiff
*.geotiff
*.shp
*.kml
*.kmz
*.gpx
*.osm
*.pbf
# Large media files
*.mp4
*.avi
*.mov
*.mkv
*.wmv
*.flv
*.webm
*.m4v
*.3gp
# Large audio files
*.wav
*.flac
*.aiff
*.mp3
*.ogg
*.wma
*.m4a
# Large image files (over certain size)
*.psd
*.ai
*.eps
*.svg
*.raw
*.cr2
*.nef
*.arw
*.dng
# Specific large files and directories
staticfiles/models/
static/models/
static/tifs/
static/scripts/data.json
data/*.mbtiles
data/backup_*/
# Navagunjara model files (specifically large ones)
*navagunjara*.glb
*navagunjara*.gltf
*navagunjara*.stl
# Any file larger than 100MB (GitHub limit is 100MB)
# Note: This is a reminder - git doesn't support size-based ignoring
# Use git-lfs for large files if needed
# Temporary and cache directories
tmp/
cache/
.cache/
node_modules/
.npm/
.yarn/
# Python tooling caches (pytest, mypy, ruff, pip-tools)
.pytest_cache/
.mypy_cache/
.ruff_cache/
.tox/
pip-wheel-metadata/
.python-version
# OS generated files
Thumbs.db
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
# Deprecated documentation (consolidated into MOON_VIEWER_COMPLETE_GUIDE.md)
# Moon-related analysis files
2D_VIEW_FIX.md
CODE_QUALITY_ANALYSIS.md
COORDINATE_SYSTEM_ANALYSIS.md
CRITICAL_TILING_SCHEME_FIX.md
CRITICAL_Y_AXIS_ISSUE.md
FINAL_TILING_CONFIGURATION.md
LROC_COMPLETE_DATA_SOURCES.md
LROC_PROJECTION_SYSTEM.md
LROC_QUICKMAP_ANALYSIS.md
LROC_QUICKMAP_HTML_ANALYSIS.md
MOON_PROJECTION_FIX.md
MOON_SIZE_ANALYSIS.md
SCALE_FIX_TEST.md
TILE_COORDINATE_ANALYSIS.md
TILING_SCHEME_FINAL_ANSWER.md
XY_SCALING_ANALYSIS.md
ZOOM_AND_PROJECTION_COMPARISON.md
# Other analysis and fix documentation
ALL_TILES_REMOVED.md
BOUNDING_BOX_VISUALIZATION.md
CESIUM_LEAFLET_TILE_COMPATIBILITY.md
LAYER_LOADING_SEQUENCE.md
LEAFLET_CESIUM_TILE_ANALYSIS.md
RASTER_LAYER_TIMEOUT_ANALYSIS.md
RASTER_LAYER_TIMEOUT_FIXES.md
RASTER_LAYER_WORKFLOW_ANALYSIS.md
TESTING_GUIDE.md
TILESERVER_LAYER_LOADING_IMPROVEMENTS.md
TILESERVER_URL_MALFORMATION_FIX.md
VECTOR_DEBUG_ENHANCED.md
VECTOR_LAYER_CAMERA_FIX.md
VECTOR_LAYER_FIX.md
VECTOR_LAYER_IMPLEMENTATION.md
# Documentation - exclude all .md files except README.md and LICENSE
*.md
!README.md
!LICENSE
!**/LICENSE
# Exclude docs folders (may contain sensitive information)
docs/
**/docs/
# Exclude commits.csv (may contain sensitive commit information)
commits.csv
**/commits.csv