Skip to content

Instantly share code, notes, and snippets.

View Geogouz's full-sized avatar
💭
When not coding? Bouldering, swimming and listening to great music!!

Dimitris Xenakis Geogouz

💭
When not coding? Bouldering, swimming and listening to great music!!
View GitHub Profile
@Geogouz
Geogouz / Parsing log.py
Created November 9, 2024 21:48
Parsing log example for evaluation scenario 6905
Parsing Node JSON DB
Nodes in scenario:
[71, 112, 148, 149]
[9, 68, 113, 155]
True Positions of Agents
Agent: 71 x: -21188.200399999998, y: -17716.2994, z: -60.9
Agent: 112 x: -20972.7997, y: -16728.5995, z: -60.5
Agent: 148 x: -20351.6006, y: -18369.7998, z: -88.4
@Geogouz
Geogouz / EvalScenarioParser.java
Last active November 9, 2024 21:35
TWR-CLOUD-Bern Evaluation scenario parser in Java
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import java.util.Map;
public class EvalScenarioParser {