Skip to content

Commit 6c7b24a

Browse files
fix: rename INTELMAP → RADAR across README and User-Agent headers
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 1a3516f commit 6c7b24a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# INTELMAP — Geospatial Intelligence Platform
1+
# RADAR — Geospatial Intelligence Platform
22

33
<div align="center">
44

@@ -19,7 +19,7 @@
1919

2020
## Overview
2121

22-
**INTELMAP** is a full-stack geospatial intelligence dashboard that aggregates real-time data from multiple sources to provide comprehensive situational awareness across six intelligence domains:
22+
**RADAR** is a full-stack geospatial intelligence dashboard that aggregates real-time data from multiple sources to provide comprehensive situational awareness across six intelligence domains:
2323

2424
- **✈️ Flight Tracking** — Live aircraft positions via ADS-B data
2525
- **🚢 Maritime Tracking** — Global vessel tracking via AIS streams
@@ -514,8 +514,8 @@ This project is licensed under the **MIT License** — see [LICENSE](LICENSE) fo
514514

515515
## 📞 Support
516516

517-
- **Issues**: [GitHub Issues](https://github.com/Syntax-Error-1337/INTELMAP/issues)
518-
- **Discussions**: [GitHub Discussions](https://github.com/Syntax-Error-1337/INTELMAP/discussions)
517+
- **Issues**: [GitHub Issues](https://github.com/Syntax-Error-1337/radar/issues)
518+
- **Discussions**: [GitHub Discussions](https://github.com/Syntax-Error-1337/radar/discussions)
519519

520520
---
521521

server/src/core/source/gulfwatch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async function apiFetch<T>(url: string): Promise<T> {
6666
const timer = setTimeout(() => controller.abort(), TIMEOUT_MS);
6767
try {
6868
const res = await fetch(url, {
69-
headers: { Accept: 'application/json', 'User-Agent': 'IntelMap/1.0' },
69+
headers: { Accept: 'application/json', 'User-Agent': 'Radar/1.0' },
7070
signal: controller.signal,
7171
});
7272
if (!res.ok) throw new Error(`HTTP ${res.status}`);

server/src/core/source/rocketalert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async function apiFetch<T>(url: string): Promise<T> {
5757
const timer = setTimeout(() => controller.abort(), TIMEOUT_MS);
5858
try {
5959
const res = await fetch(url, {
60-
headers: { Accept: 'application/json', 'User-Agent': 'IntelMap/1.0' },
60+
headers: { Accept: 'application/json', 'User-Agent': 'Radar/1.0' },
6161
signal: controller.signal,
6262
});
6363
if (!res.ok) throw new Error(`HTTP ${res.status}`);

0 commit comments

Comments
 (0)