mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
added scoreboard
This commit is contained in:
parent
041db246b1
commit
047f682030
@ -1,6 +1,132 @@
|
|||||||
{
|
{
|
||||||
"cells": [],
|
"cells": [
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": 1,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
|
"outputs": [],
|
||||||
|
"source": [
|
||||||
|
"import firebase_admin\n",
|
||||||
|
"from firebase_admin import credentials\n",
|
||||||
|
"from firebase_admin import firestore\n",
|
||||||
|
"import csv\n",
|
||||||
|
"import numpy as np\n",
|
||||||
|
"# Use a service account\n",
|
||||||
|
"cred = credentials.Certificate(r'../keys/fsk.json')\n",
|
||||||
|
"#add your own key as this is public. email me for details\n",
|
||||||
|
"firebase_admin.initialize_app(cred)\n",
|
||||||
|
"\n",
|
||||||
|
"db = firestore.client()"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": 2,
|
||||||
|
"metadata": {},
|
||||||
|
"outputs": [],
|
||||||
|
"source": [
|
||||||
|
"teams=db.collection('data').document('team-2022').collection(\"Midwest 2019\").get()\n",
|
||||||
|
"full=[]\n",
|
||||||
|
"tms=[]\n",
|
||||||
|
"for team in teams:\n",
|
||||||
|
" data=[]\n",
|
||||||
|
" tms.append(team.id)\n",
|
||||||
|
" reports=db.collection('data').document('team-2022').collection(\"Midwest 2019\").document(team.id).collection(\"matches\").get()\n",
|
||||||
|
" for report in reports:\n",
|
||||||
|
" data.append(db.collection('data').document('team-2022').collection(\"Midwest 2019\").document(team.id).collection(\"matches\").document(report.id).get().to_dict())\n",
|
||||||
|
" full.append(data)"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": null,
|
||||||
|
"metadata": {},
|
||||||
|
"outputs": [],
|
||||||
|
"source": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": 4,
|
||||||
|
"metadata": {},
|
||||||
|
"outputs": [],
|
||||||
|
"source": [
|
||||||
|
"def expcsv(loc,data):\n",
|
||||||
|
" with open(loc+'.csv', 'w', newline='', encoding='utf-8') as csvfile:\n",
|
||||||
|
" w = csv.writer(csvfile, delimiter=',', quotechar=\"\\\"\", quoting=csv.QUOTE_MINIMAL)\n",
|
||||||
|
" for i in data:\n",
|
||||||
|
" w.writerow(i)"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": 12,
|
||||||
|
"metadata": {},
|
||||||
|
"outputs": [],
|
||||||
|
"source": [
|
||||||
|
"def keymatch(ld):\n",
|
||||||
|
" keys=set([])\n",
|
||||||
|
" for i in ld:\n",
|
||||||
|
" for j in i.keys():\n",
|
||||||
|
" keys.add(j)\n",
|
||||||
|
" kl=list(keys)\n",
|
||||||
|
" data=[]\n",
|
||||||
|
" for i in kl:\n",
|
||||||
|
" data.append([i])\n",
|
||||||
|
" for i in kl:\n",
|
||||||
|
" for j in ld:\n",
|
||||||
|
" try:\n",
|
||||||
|
" (data[kl.index(i)]).append(j[i])\n",
|
||||||
|
" except:\n",
|
||||||
|
" (data[kl.index(i)]).append(\"\")\n",
|
||||||
|
" return data\n",
|
||||||
|
"wn=[]\n",
|
||||||
|
"for i in full:\n",
|
||||||
|
" wn.append(np.transpose(np.array(keymatch(i))).tolist())\n",
|
||||||
|
"for i in range(len(wn)):\n",
|
||||||
|
" expcsv(tms[i],wn[i])"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": null,
|
||||||
|
"metadata": {},
|
||||||
|
"outputs": [],
|
||||||
|
"source": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": null,
|
||||||
|
"metadata": {},
|
||||||
|
"outputs": [],
|
||||||
|
"source": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": null,
|
||||||
|
"metadata": {},
|
||||||
|
"outputs": [],
|
||||||
|
"source": []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"metadata": {
|
||||||
|
"kernelspec": {
|
||||||
|
"display_name": "Python 3",
|
||||||
|
"language": "python",
|
||||||
|
"name": "python3"
|
||||||
|
},
|
||||||
|
"language_info": {
|
||||||
|
"codemirror_mode": {
|
||||||
|
"name": "ipython",
|
||||||
|
"version": 3
|
||||||
|
},
|
||||||
|
"file_extension": ".py",
|
||||||
|
"mimetype": "text/x-python",
|
||||||
|
"name": "python",
|
||||||
|
"nbconvert_exporter": "python",
|
||||||
|
"pygments_lexer": "ipython3",
|
||||||
|
"version": "3.6.5"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nbformat": 4,
|
"nbformat": 4,
|
||||||
"nbformat_minor": 2
|
"nbformat_minor": 2
|
||||||
}
|
}
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
sandstormRocketCargoFailure,0
|
|
||||||
teleOpRocketCargoSuccess,0
|
|
||||||
sandstormRocketHatchSuccess,0
|
|
||||||
teleOpCargoShipHatchFailure,0
|
|
||||||
sandstormRocketCargoSuccess,0
|
|
||||||
speed,slow
|
|
||||||
teamDBRef,team-1
|
|
||||||
sandstormCross,L1
|
|
||||||
teleOpCargoShipHatchSuccess,0
|
|
||||||
teleOpRocketHatchSuccess,0
|
|
||||||
sandstormCargoShipCargoFailure,0
|
|
||||||
teleOpRocketHatchFailure,0
|
|
||||||
teleOpRocketCargoFailure,0
|
|
||||||
sandstormCargoShipHatchSuccess,0
|
|
||||||
sandstormCargoShipCargoSuccess,0
|
|
||||||
teleOpCargoShipCargoFailure,0
|
|
||||||
sandstormRocketHatchFailure,0
|
|
||||||
sandstormCargoShipHatchFailure,0
|
|
||||||
HABClimb,L1
|
|
||||||
match,match-5148
|
|
||||||
teleOpCargoShipCargoSuccess,2
|
|
|
@ -0,0 +1,4 @@
|
|||||||
|
gmkR7hN4D1fQguey5X5V48d3PhO2,sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,9fv7QhcLPsfU59sRrPq7LcJlD8J3,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,functional,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
|
,0,0,0,,1,0,,slow,,team-101,L2,,1,2,0,,0,0,,0,,"{'notes': 'not good with balls, was able to reach high with hatch', 'contribution': '', 'fillChoice': 'Cargo', 'strategy': 'place hatches, shoe off long arm. not defensive', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-101', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': '', 'match': 'match-13', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,0,,,0,0,0,,,None,match-13,,,0
|
||||||
|
,,,,Neither,,,Medium,Medium,"Cargo, but couldn't pick up",team-101,L1,L1,,,,High,,,Mid,,Hab I,,Cargo,,Hatch,Yes,,,,Low Rocket,Weak,,match-25,N/A,L1,
|
||||||
|
"{'notes': '', 'contribution': 'Great', 'fillChoice': '', 'strategy': 'quick bottom hatches but still slow', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-101', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-29', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'None', 'functional': 'No', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
|
@ -1,21 +0,0 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,"{'contribution': 'Weak', 'notes': 'team ups, robot malfunction VOID THIS INFO', 'fillChoice': '', 'cargoSuccess': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-1675', 'hiRocketSuccessTeleop': '', 'speed': 'Slow', 'lowRocketSuccess': '', 'match': 'match-1', 'size': 'Medium', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II', 'hiRocketSuccess': ''}",,
|
|
||||||
strongMediumTeleop,,Hatch,
|
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'notes': '', 'contribution': 'Weak', 'cargoSuccess': '', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-1675', 'speed': '', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'match': 'match-1', 'size': 'Large', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II', 'hiRocketSuccess': ''}",,
|
|
||||||
size,,IDK,
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': 'pinning opponent and placing hatches on rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-1675', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': 'Large', 'match': 'match-54', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab I'}"
|
|
||||||
speed,,slow,
|
|
||||||
strategy,,Hatch panels for rocket,
|
|
||||||
teamDBRef,,team-1675,
|
|
||||||
sandstormCross,,None,
|
|
||||||
sandstormCrossBonus,,None,
|
|
||||||
lowRocketSuccessTeleop,,High,
|
|
||||||
cargoSuccessTeleop,,N/A,
|
|
||||||
functional,,Yes,
|
|
||||||
fillChoice,,None,
|
|
||||||
strongMedium,,Neither,
|
|
||||||
fillChoiceTeleop,,Low Rocket,
|
|
||||||
contrubution,,Weak,
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
match,,match-26,
|
|
||||||
endingHab,,L1,
|
|
||||||
startingHatch,,IDK,
|
|
|
@ -0,0 +1,3 @@
|
|||||||
|
sandstormCrossBonus,9fv7QhcLPsfU59sRrPq7LcJlD8J3,strongMediumTeleop,fillChoiceTeleop,cargoSuccessTeleop,contrubution,functional,lowRocketSuccessTeleop,startingHatch,size,hiRocketSuccessTeleop,speed,strategy,match,fillChoice,endingHab,teamDBRef,strongMedium,sandstormCross
|
||||||
|
,"{'contribution': '', 'notes': '', 'fillChoice': 'High Rocket', 'strategy': 'place high hatches. except- it’s very inaccurate. has the reach, though ', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-1736', 'hiRocketSuccessTeleop': 'Low', 'speed': '', 'match': 'match-14', 'size': '', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': '', 'endingHab': '', 'functional': 'Yes', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}",,,,,,,,,,,,,,,,,
|
||||||
|
L2,,Ball,Cargo,Low,Equal,No,N/A,Hab II,Medium,N/A,Medium,"Hatches, then balls",match-27,Cargo,None,team-1736,Neither,L2
|
|
@ -1,19 +0,0 @@
|
|||||||
sandstormCrossBonus,L1,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'contribution': '', 'notes': 'had a reach with the height of their grabber, yet it was extremely inaccurate. with the fast frequency they could make attempts, they were able to land 3', 'fillChoice': '', 'cargoSuccessTeleop': 'Low', 'strongMedium': '', 'teamDBRef': 'team-1797', 'hiRocketSuccessTeleop': '', 'speed': 'Medium', 'match': 'match-8', 'size': 'Jumbo', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'None'}"
|
|
||||||
strongMediumTeleop,Ball,
|
|
||||||
fillChoiceTeleop,Cargo,
|
|
||||||
cargoSuccessTeleop,High,
|
|
||||||
contrubution,Equal,
|
|
||||||
functional,Yes,
|
|
||||||
lowRocketSuccessTeleop,N/A,
|
|
||||||
startingHatch,Hab I,
|
|
||||||
size,Medium,
|
|
||||||
speed,slow,
|
|
||||||
hiRocketSuccessTeleop,N/A,
|
|
||||||
strategy,Cargo only,
|
|
||||||
match,match-43,
|
|
||||||
fillChoice,None,
|
|
||||||
endingHab,L1,
|
|
||||||
teamDBRef,team-1797,
|
|
||||||
strongMedium,Neither,
|
|
||||||
sandstormCross,L1,
|
|
|
@ -1,35 +0,0 @@
|
|||||||
sandstormRocketCargoFailure,0,
|
|
||||||
teleOpRocketCargoSuccess,0,
|
|
||||||
sandstormRocketHatchSuccess,0,
|
|
||||||
strongMediumTeleop,,Neither
|
|
||||||
teleOpCargoShipHatchFailure,0,
|
|
||||||
sandstormRocketCargoSuccess,0,
|
|
||||||
size,,IDK
|
|
||||||
speed,slow,slow
|
|
||||||
strategy,,Flawed defense
|
|
||||||
teamDBRef,team-2125,team-2125
|
|
||||||
sandstormCross,None,None
|
|
||||||
sandstormCrossBonus,,None
|
|
||||||
teleOpCargoShipHatchSuccess,0,
|
|
||||||
teleOpRocketHatchSuccess,0,
|
|
||||||
sandstormCargoShipCargoFailure,0,
|
|
||||||
lowRocketSuccessTeleop,,N/A
|
|
||||||
teleOpRocketHatchFailure,0,
|
|
||||||
teleOpRocketCargoFailure,0,
|
|
||||||
cargoSuccessTeleop,,N/A
|
|
||||||
sandstormCargoShipHatchSuccess,0,
|
|
||||||
startingHatch,,Hab I
|
|
||||||
fillChoice,,None
|
|
||||||
functional,,No
|
|
||||||
sandstormCargoShipCargoSuccess,0,
|
|
||||||
strongMedium,,Neither
|
|
||||||
teleOpCargoShipCargoFailure,0,
|
|
||||||
sandstormRocketHatchFailure,0,
|
|
||||||
sandstormCargoShipHatchFailure,0,
|
|
||||||
fillChoiceTeleop,,None
|
|
||||||
contrubution,,Weak
|
|
||||||
HABClimb,None,
|
|
||||||
match,match-20,match-27
|
|
||||||
hiRocketSuccessTeleop,,N/A
|
|
||||||
endingHab,,None
|
|
||||||
teleOpCargoShipCargoSuccess,0,
|
|
|
@ -0,0 +1,4 @@
|
|||||||
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,strongMediumTeleop,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,nTG6cThsi9TB9mTkcwuo5bKEo9B3,size,sandstormRocketCargoSuccess,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,teleOpCargoShipCargoSuccess,functional,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
|
,,,,,"{'contribution': 'Equal', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'hatch panels ', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Ball', 'teamDBRef': 'team-5934', 'hiRocketSuccessTeleop': '', 'speed': 'Fast', 'match': 'match-31', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
|
,,Both,,,,Large,,Fast,,team-5934,L1,L1,,,,N/A,,,Mid,,,Yes,Cargo,,Ball,,,,Cargo,Equal,,N/A,match-37,None,Hab I
|
||||||
|
0,0,,0,0,,,0,Ludicrous,,team-5934,L1,,2,0,0,,0,0,,0,5,,,1,,0,0,0,,,L1,,match-6,,
|
|
@ -0,0 +1,5 @@
|
|||||||
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,nTG6cThsi9TB9mTkcwuo5bKEo9B3,sandstormRocketCargoSuccess,jouGPhPF0qME5wNIbd86MzYFsGw2,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,9fv7QhcLPsfU59sRrPq7LcJlD8J3,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
|
0,0,0,,0,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'did not do anything ', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-6906', 'speed': 'Slow', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Jumbo', 'match': 'match-12', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",0,,,slow,,team-6906,L1,,0,0,0,,0,0,,0,,,,0,,,0,0,0,,,L1,match-12,,,0
|
||||||
|
,,,,,,,"{'notes': 'plays defense', 'contribution': 'Equal', 'fillChoice': 'None', 'strategy': 'very strong defensive robot also had limited capability to attach hatch panels', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-6906', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Jumbo', 'match': 'match-29', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
|
,,,Neither,,,,,Medium,slow,Defense,team-6906,L1,L1,,,,N/A,,,N/A,,Hab I,None,Yes,,Neither,,,,,None,Weak,,match-53,N/A,L1,
|
||||||
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,"{'contribution': 'Weak', 'notes': 'defensive but miserably slow', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-6906', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'match': 'match-7', 'size': '', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Neither', 'endingHab': 'None', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'None'}",,,,,,,,,,
|
|
@ -1,22 +0,0 @@
|
|||||||
sandstormRocketCargoFailure,0,,0
|
|
||||||
teleOpRocketCargoSuccess,0,,0
|
|
||||||
sandstormRocketHatchSuccess,0,,0
|
|
||||||
teleOpCargoShipHatchFailure,0,,0
|
|
||||||
sandstormRocketCargoSuccess,0,,0
|
|
||||||
speed,slow,,Medium
|
|
||||||
teamDBRef,team-6968,,team-6968
|
|
||||||
sandstormCross,L1,,L1
|
|
||||||
teleOpCargoShipHatchSuccess,0,,0
|
|
||||||
teleOpRocketHatchSuccess,1,,0
|
|
||||||
sandstormCargoShipCargoFailure,0,,0
|
|
||||||
teleOpRocketHatchFailure,0,,1
|
|
||||||
teleOpRocketCargoFailure,0,,1
|
|
||||||
sandstormCargoShipHatchSuccess,1,,0
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'contribution': 'Equal', 'notes': 'weak auto, yet filled a lot of hatches offensively on Teleop on the rocket', 'fillChoice': 'Cargo', 'strategy': 'fill all hatches on rocket', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-6968', 'hiRocketSuccessTeleop': 'Mid', 'speed': '', 'match': 'match-32', 'size': '', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'No', 'startingHatch': '', 'lowRocketSuccessTeleop': 'Mid'}",
|
|
||||||
sandstormCargoShipCargoSuccess,0,,0
|
|
||||||
teleOpCargoShipCargoFailure,0,,0
|
|
||||||
sandstormRocketHatchFailure,0,,0
|
|
||||||
sandstormCargoShipHatchFailure,0,,1
|
|
||||||
HABClimb,None,,L1
|
|
||||||
match,match-11,,match-4
|
|
||||||
teleOpCargoShipCargoSuccess,0,,0
|
|
|
@ -1,37 +0,0 @@
|
|||||||
sandstormRocketCargoFailure,0,
|
|
||||||
teleOpRocketCargoSuccess,0,
|
|
||||||
sandstormRocketHatchSuccess,0,
|
|
||||||
strongMediumTeleop,,Neither
|
|
||||||
teleOpCargoShipHatchFailure,0,
|
|
||||||
sandstormRocketCargoSuccess,0,
|
|
||||||
size,,IDK
|
|
||||||
speed,slow,Fast
|
|
||||||
strategy,,Defense
|
|
||||||
teamDBRef,team-7609,team-7609
|
|
||||||
sandstormCross,L1,L1
|
|
||||||
sandstormCrossBonus,,L1
|
|
||||||
teleOpCargoShipHatchSuccess,0,
|
|
||||||
teleOpRocketHatchSuccess,0,
|
|
||||||
sandstormCargoShipCargoFailure,0,
|
|
||||||
lowRocketSuccessTeleop,,N/A
|
|
||||||
teleOpRocketHatchFailure,0,
|
|
||||||
teleOpRocketCargoFailure,0,
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,"{'notes': '', 'contribution': 'Weak', 'fillChoice': 'None', 'strategy': 'resorted to defense after couldn’t collect hatches', 'strongMedium': 'Neither', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7609', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-13', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': '', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'idk'}",
|
|
||||||
cargoSuccessTeleop,,N/A
|
|
||||||
sandstormCargoShipHatchSuccess,0,
|
|
||||||
startingHatch,,Hab I
|
|
||||||
e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,,"{'contribution': '', 'notes': 'literally useless just drove around trying to defend I think ', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7609', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'match': 'match-33', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
|
||||||
fillChoice,,None
|
|
||||||
functional,,Yes
|
|
||||||
sandstormCargoShipCargoSuccess,0,
|
|
||||||
strongMedium,,Neither
|
|
||||||
teleOpCargoShipCargoFailure,0,
|
|
||||||
sandstormRocketHatchFailure,0,
|
|
||||||
sandstormCargoShipHatchFailure,0,
|
|
||||||
fillChoiceTeleop,,None
|
|
||||||
contrubution,,Weak
|
|
||||||
HABClimb,L1,
|
|
||||||
match,match-13,match-33
|
|
||||||
hiRocketSuccessTeleop,,N/A
|
|
||||||
endingHab,,L1
|
|
||||||
teleOpCargoShipCargoSuccess,0,
|
|
|
@ -4,26 +4,16 @@
|
|||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": 1,
|
"execution_count": 1,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [
|
"outputs": [],
|
||||||
{
|
|
||||||
"ename": "NameError",
|
|
||||||
"evalue": "name 'reload' is not defined",
|
|
||||||
"output_type": "error",
|
|
||||||
"traceback": [
|
|
||||||
"\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
|
|
||||||
"\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)",
|
|
||||||
"\u001b[1;32m<ipython-input-1-b21f5957e8b4>\u001b[0m in \u001b[0;36m<module>\u001b[1;34m()\u001b[0m\n\u001b[0;32m 4\u001b[0m \u001b[1;32mimport\u001b[0m \u001b[0mcsv\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 5\u001b[0m \u001b[1;32mimport\u001b[0m \u001b[0msys\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 6\u001b[1;33m \u001b[0mreload\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0msys\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 7\u001b[0m \u001b[0msys\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msetdefaultencoding\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'utf-8'\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 8\u001b[0m \u001b[1;31m# Use a service account\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n",
|
|
||||||
"\u001b[1;31mNameError\u001b[0m: name 'reload' is not defined"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"source": [
|
"source": [
|
||||||
"import firebase_admin\n",
|
"import firebase_admin\n",
|
||||||
"from firebase_admin import credentials\n",
|
"from firebase_admin import credentials\n",
|
||||||
"from firebase_admin import firestore\n",
|
"from firebase_admin import firestore\n",
|
||||||
"import csv\n",
|
"import csv\n",
|
||||||
|
"import numpy as np\n",
|
||||||
"# Use a service account\n",
|
"# Use a service account\n",
|
||||||
"cred = credentials.Certificate(r'../keys/fsk.json')\n",
|
"cred = credentials.Certificate(r'../keys/fsk.json')\n",
|
||||||
|
"#add your own key as this is public. email me for details\n",
|
||||||
"firebase_admin.initialize_app(cred)\n",
|
"firebase_admin.initialize_app(cred)\n",
|
||||||
"\n",
|
"\n",
|
||||||
"db = firestore.client()"
|
"db = firestore.client()"
|
||||||
@ -31,7 +21,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": null,
|
"execution_count": 2,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
@ -52,18 +42,16 @@
|
|||||||
"execution_count": null,
|
"execution_count": null,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": []
|
||||||
"full[0]"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": null,
|
"execution_count": 4,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
"def expcsv(loc,data):\n",
|
"def expcsv(loc,data):\n",
|
||||||
" with open(loc+'.csv', 'w', newline='') as csvfile:\n",
|
" with open(loc+'.csv', 'w', newline='', encoding='utf-8') as csvfile:\n",
|
||||||
" w = csv.writer(csvfile, delimiter=',', quotechar=\"\\\"\", quoting=csv.QUOTE_MINIMAL)\n",
|
" w = csv.writer(csvfile, delimiter=',', quotechar=\"\\\"\", quoting=csv.QUOTE_MINIMAL)\n",
|
||||||
" for i in data:\n",
|
" for i in data:\n",
|
||||||
" w.writerow(i)"
|
" w.writerow(i)"
|
||||||
@ -71,7 +59,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": null,
|
"execution_count": 12,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
@ -93,7 +81,7 @@
|
|||||||
" return data\n",
|
" return data\n",
|
||||||
"wn=[]\n",
|
"wn=[]\n",
|
||||||
"for i in full:\n",
|
"for i in full:\n",
|
||||||
" wn.append(keymatch(i))\n",
|
" wn.append(np.transpose(np.array(keymatch(i))).tolist())\n",
|
||||||
"for i in range(len(wn)):\n",
|
"for i in range(len(wn)):\n",
|
||||||
" expcsv(tms[i],wn[i])"
|
" expcsv(tms[i],wn[i])"
|
||||||
]
|
]
|
||||||
@ -103,14 +91,7 @@
|
|||||||
"execution_count": null,
|
"execution_count": null,
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": []
|
||||||
"keys=set([])\n",
|
|
||||||
"keys.add('a')\n",
|
|
||||||
"keys.add('b')\n",
|
|
||||||
"keys.add('c')\n",
|
|
||||||
"keys.add('d')\n",
|
|
||||||
"list(keys)"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
|
57
data analysis/matches/scoreboard.csv
Normal file
57
data analysis/matches/scoreboard.csv
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
Match,Time,Red1,Red2,Red3,Blue1,Blue2,Blue3,RedScore,BlueScore
|
||||||
|
Qualification 1 ,Fri 3/8 - 9:00 AM,7560,3061,3488,1675,2451,5148,37,26
|
||||||
|
Qualification 2 ,Fri 3/8 - 9:09 AM,7608,1884,2338,4702,2151,111,23,33
|
||||||
|
Qualification 3 ,Fri 3/8 - 9:18 AM,2830,7609,101,2039,4292,16,45,35
|
||||||
|
Qualification 4 ,Fri 3/8 - 9:27 AM,6968,1736,4096,4645,3067,2252,40,20
|
||||||
|
Qualification 5 ,Fri 3/8 - 9:36 AM,4156,2016,3695,2022,3110,3734,46,29
|
||||||
|
Qualification 6 ,Fri 3/8 - 9:45 AM,5934,5822,1739,7738,2062,4296,38,33
|
||||||
|
Qualification 7 ,Fri 3/8 - 9:54 AM,930,5125,4787,7237,6906,1781,37,41
|
||||||
|
Qualification 8 ,Fri 3/8 - 10:03 AM,2725,5847,5350,2709,1797,4241,25,24
|
||||||
|
Qualification 9 ,Fri 3/8 - 10:12 AM,2358,6823,2136,48,6651,3734,17,40
|
||||||
|
Qualification 10 ,Fri 3/8 - 10:21 AM,3067,7608,5148,2062,4292,5822,15,39
|
||||||
|
Qualification 11 ,Fri 3/8 - 10:30 AM,111,6968,4787,16,2022,1675,41,63
|
||||||
|
Qualification 12 ,Fri 3/8 - 10:39 AM,4702,7738,2830,6906,2725,2016,52,24
|
||||||
|
Qualification 13 ,Fri 3/8 - 10:48 AM,2709,2358,7609,101,930,6823,16,42
|
||||||
|
Qualification 14 ,Fri 3/8 - 10:56 AM,2136,5934,3695,1736,7237,2151,45,25
|
||||||
|
Qualification 15 ,Fri 3/8 - 11:04 AM,3110,1781,2252,1797,2338,3488,35,65
|
||||||
|
Qualification 16 ,Fri 3/8 - 11:12 AM,48,4156,4241,4296,1884,3061,48,34
|
||||||
|
Qualification 17 ,Fri 3/8 - 11:20 AM,2039,6651,5125,4096,7560,5350,31,23
|
||||||
|
Qualification 18 ,Fri 3/8 - 11:28 AM,5847,2451,16,4645,1739,7237,62,15
|
||||||
|
Qualification 19 ,Fri 3/8 - 11:36 AM,3734,3067,1797,7609,5148,5934,18,31
|
||||||
|
Qualification 20 ,Fri 3/8 - 11:44 AM,5822,2725,4241,2338,4156,930,20,55
|
||||||
|
Qualification 21 ,Fri 3/8 - 11:52 AM,6968,2016,2709,7608,2151,6823,12,14
|
||||||
|
Qualification 22,Fri 3/8 - 1:00 PM,1736,7560,1739,4292,5350,48,43,58
|
||||||
|
Qualification 23,Fri 3/8 - 1:09 PM,2062,1781,2022,2451,4096,6651,35,45
|
||||||
|
Qualification 24,Fri 3/8 - 1:18 PM,111,4296,3488,4787,2136,2039,49,27
|
||||||
|
Qualification 25,Fri 3/8 - 1:27 PM,101,3061,5847,2252,2830,6906,53,40
|
||||||
|
Qualification 26,Fri 3/8 - 1:36 PM,1675,4645,4702,3695,3110,7738,15,71
|
||||||
|
Qualification 27,Fri 3/8 - 1:44 PM,1736,1884,2358,2016,5125,7560,25,23
|
||||||
|
Qualification 28,Fri 3/8 - 1:52 PM,4156,2725,6651,3488,7237,3067,42,39
|
||||||
|
Qualification 29,Fri 3/8 - 2:00 PM,3734,5350,2151,6906,2062,101,18,36
|
||||||
|
Qualification 30,Fri 3/8 - 2:08 PM,5847,7738,6823,2338,111,4096,54,58
|
||||||
|
Qualification 31,Fri 3/8 - 2:16 PM,2709,48,4702,5934,2039,2252,20,49
|
||||||
|
Qualification 32,Fri 3/8 - 2:24 PM,1884,930,2830,1797,1675,6968,61,49
|
||||||
|
Qualification 33,Fri 3/8 - 2:32 PM,7609,1739,3695,5148,4241,4787,85,54
|
||||||
|
Qualification 34,Fri 3/8 - 2:40 PM,5125,4645,2022,3061,2136,4292,37,39
|
||||||
|
Qualification 35,Fri 3/8 - 2:48 PM,2451,2358,7608,4296,16,3110,37,18
|
||||||
|
Qualification 36,Fri 3/8 - 2:56 PM,1781,2039,3734,5822,7237,5847,30,61
|
||||||
|
Qualification 37,Fri 3/8 - 3:04 PM,3488,5350,930,1884,3695,111,52,54
|
||||||
|
Qualification 38,Fri 3/8 - 3:12 PM,2016,5934,2338,7609,7560,4156,66,24
|
||||||
|
Qualification 39,Fri 3/8 - 3:20 PM,2252,6651,2136,4787,7608,1739,27,23
|
||||||
|
Qualification 40,Fri 3/8 - 3:28 PM,4096,4702,5148,2358,4241,101,37,28
|
||||||
|
Qualification 41,Fri 3/8 - 3:36 PM,3110,5822,2451,48,6968,6906,42,68
|
||||||
|
Qualification 42,Fri 3/8 - 3:44 PM,16,1736,1781,7738,3061,2725,56,43
|
||||||
|
Qualification 43,Fri 3/8 - 3:52 PM,1797,5125,4292,6823,2709,2062,32,42
|
||||||
|
Qualification 44,Fri 3/8 - 4:00 PM,2022,4296,3067,2151,2830,1675,26,31
|
||||||
|
Qualification 45,Fri 3/8 - 4:08 PM,4645,48,5847,5148,3488,2016,63,48
|
||||||
|
Qualification 46,Fri 3/8 - 4:16 PM,3110,4096,930,3061,4787,5934,42,56
|
||||||
|
Qualification 47,Fri 3/8 - 4:24 PM,2725,6823,2451,7608,3695,2039,29,57
|
||||||
|
Qualification 48,Fri 3/8 - 4:32 PM,2062,1675,4156,101,4702,2136,40,31
|
||||||
|
Qualification 49,Fri 3/8 - 4:40 PM,2022,7738,7237,5350,2252,7609,51,37
|
||||||
|
Qualification 50,Fri 3/8 - 4:48 PM,7560,4296,2151,1781,1797,4645,21,39
|
||||||
|
Qualification 51,Fri 3/8 - 4:56 PM,2338,1736,5822,2830,2709,6651,68,37
|
||||||
|
Qualification 52,Fri 3/8 - 5:04 PM,6906,1739,2358,4292,6968,1884,33,29
|
||||||
|
Qualification 53,Fri 3/8 - 5:12 PM,111,16,3067,4241,3734,5125,65,41
|
||||||
|
Qualification 54,Fri 3/8 - 5:20 PM,3061,1675,48,7609,5847,7608,65,42
|
||||||
|
Qualification 55,Fri 3/8 - 5:28 PM,6651,2016,2062,930,2252,4296,43,77
|
||||||
|
Qualification 56,Fri 3/8 - 5:36 PM,4292,5148,2725,2151,4787,3110,19,3
|
|
@ -1,21 +1,2 @@
|
|||||||
sandstormRocketCargoFailure,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,sandstormCargoShipHatchSuccess,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0
|
0,0,0,0,0,slow,team-1,L1,0,0,0,0,0,0,0,0,0,0,L1,match-5148,2
|
||||||
sandstormRocketHatchSuccess,0
|
|
||||||
teleOpCargoShipHatchFailure,0
|
|
||||||
sandstormRocketCargoSuccess,0
|
|
||||||
speed,slow
|
|
||||||
teamDBRef,team-1
|
|
||||||
sandstormCross,L1
|
|
||||||
teleOpCargoShipHatchSuccess,0
|
|
||||||
teleOpRocketHatchSuccess,0
|
|
||||||
sandstormCargoShipCargoFailure,0
|
|
||||||
teleOpRocketHatchFailure,0
|
|
||||||
teleOpRocketCargoFailure,0
|
|
||||||
sandstormCargoShipHatchSuccess,0
|
|
||||||
sandstormCargoShipCargoSuccess,0
|
|
||||||
teleOpCargoShipCargoFailure,0
|
|
||||||
sandstormRocketHatchFailure,0
|
|
||||||
sandstormCargoShipHatchFailure,0
|
|
||||||
HABClimb,L1
|
|
||||||
match,match-5148
|
|
||||||
teleOpCargoShipCargoSuccess,2
|
|
||||||
|
|
@ -1,37 +1,4 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,,"{'notes': '', 'contribution': 'Great', 'fillChoice': '', 'strategy': 'quick bottom hatches but still slow', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-101', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-29', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'None', 'functional': 'No', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}"
|
gmkR7hN4D1fQguey5X5V48d3PhO2,sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,9fv7QhcLPsfU59sRrPq7LcJlD8J3,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,functional,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
sandstormRocketCargoFailure,0,,
|
,0,0,0,,1,0,,slow,,team-101,L2,,1,2,0,,0,0,,0,,"{'notes': 'not good with balls, was able to reach high with hatch', 'contribution': '', 'fillChoice': 'Cargo', 'strategy': 'place hatches, shoe off long arm. not defensive', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-101', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': '', 'match': 'match-13', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,0,,,0,0,0,,,None,match-13,,,0
|
||||||
teleOpRocketCargoSuccess,0,,
|
,,,,Neither,,,Medium,Medium,"Cargo, but couldn't pick up",team-101,L1,L1,,,,High,,,Mid,,Hab I,,Cargo,,Hatch,Yes,,,,Low Rocket,Weak,,match-25,N/A,L1,
|
||||||
sandstormRocketHatchSuccess,0,,
|
"{'notes': '', 'contribution': 'Great', 'fillChoice': '', 'strategy': 'quick bottom hatches but still slow', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-101', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-29', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'None', 'functional': 'No', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,Neither,
|
|
||||||
teleOpCargoShipHatchFailure,1,,
|
|
||||||
sandstormRocketCargoSuccess,0,,
|
|
||||||
size,,Medium,
|
|
||||||
speed,slow,Medium,
|
|
||||||
strategy,,"Cargo, but couldn't pick up",
|
|
||||||
teamDBRef,team-101,team-101,
|
|
||||||
sandstormCross,L2,L1,
|
|
||||||
sandstormCrossBonus,,L1,
|
|
||||||
teleOpCargoShipHatchSuccess,1,,
|
|
||||||
teleOpRocketHatchSuccess,2,,
|
|
||||||
sandstormCargoShipCargoFailure,0,,
|
|
||||||
lowRocketSuccessTeleop,,High,
|
|
||||||
teleOpRocketHatchFailure,0,,
|
|
||||||
teleOpRocketCargoFailure,0,,
|
|
||||||
cargoSuccessTeleop,,Mid,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,
|
|
||||||
startingHatch,,Hab I,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,"{'notes': 'not good with balls, was able to reach high with hatch', 'contribution': '', 'fillChoice': 'Cargo', 'strategy': 'place hatches, shoe off long arm. not defensive', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-101', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': '', 'match': 'match-13', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,
|
|
||||||
fillChoice,,Cargo,
|
|
||||||
sandstormCargoShipCargoSuccess,0,,
|
|
||||||
strongMedium,,Hatch,
|
|
||||||
functional,,Yes,
|
|
||||||
teleOpCargoShipCargoFailure,0,,
|
|
||||||
sandstormRocketHatchFailure,0,,
|
|
||||||
sandstormCargoShipHatchFailure,0,,
|
|
||||||
fillChoiceTeleop,,Low Rocket,
|
|
||||||
contrubution,,Weak,
|
|
||||||
HABClimb,None,,
|
|
||||||
match,match-13,match-25,
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
endingHab,,L1,
|
|
||||||
teleOpCargoShipCargoSuccess,0,,
|
|
||||||
|
|
@ -1,37 +1,6 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,"{'contribution': 'Great', 'notes': '', 'cargoSuccess': '', 'fillChoice': 'Cargo', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-111', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'lowRocketSuccess': '', 'size': 'Medium', 'match': 'match-2', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': '', 'hiRocketSuccess': 'High'}",,,
|
gmkR7hN4D1fQguey5X5V48d3PhO2,sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,nTG6cThsi9TB9mTkcwuo5bKEo9B3,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
sandstormRocketCargoFailure,0,0,,,
|
,0,5,1,,0,0,,,Medium,,team-111,L1,,0,4,0,,1,1,,0,,,,0,,0,0,0,,,None,match-11,,,0
|
||||||
teleOpRocketCargoSuccess,5,0,,,
|
"{'contribution': 'Great', 'notes': '', 'cargoSuccess': '', 'fillChoice': 'Cargo', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-111', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'lowRocketSuccess': '', 'size': 'Medium', 'match': 'match-2', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': '', 'hiRocketSuccess': 'High'}",0,0,0,,0,0,,,Fast,,team-111,L1,,0,1,0,,1,1,,1,,,,0,,0,0,0,,,L1,match-2,,,0
|
||||||
sandstormRocketHatchSuccess,1,0,,,
|
,,,,Ball,,,Large,,Fast,Top-down rocket fill,team-111,L1,L1,,,,N/A,,,N/A,,Hab I,High Rocket,Yes,,Hatch,,,,High Rocket,Strong,,match-24,High,L2,
|
||||||
strongMediumTeleop,,,Ball,,
|
,,,,,,,,"{'contribution': 'Equal', 'notes': '', 'fillChoice': 'High Rocket', 'strategy': 'rocket. i lost track of the robot', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-111', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'size': 'Large', 'match': 'match-30', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'N/A'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,0,,,
|
,,,,,,,,"{'notes': '', 'contribution': 'Great', 'fillChoice': 'High Rocket', 'strategy': 'hatch and ball in rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-111', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': 'Medium', 'match': 'match-37', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab II'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
sandstormRocketCargoSuccess,0,0,,,
|
|
||||||
size,,,Large,,
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,,"{'contribution': 'Equal', 'notes': '', 'fillChoice': 'High Rocket', 'strategy': 'rocket. i lost track of the robot', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-111', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'size': 'Large', 'match': 'match-30', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'N/A'}","{'notes': '', 'contribution': 'Great', 'fillChoice': 'High Rocket', 'strategy': 'hatch and ball in rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-111', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': 'Medium', 'match': 'match-37', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab II'}"
|
|
||||||
speed,Medium,Fast,Fast,,
|
|
||||||
strategy,,,Top-down rocket fill,,
|
|
||||||
teamDBRef,team-111,team-111,team-111,,
|
|
||||||
sandstormCross,L1,L1,L1,,
|
|
||||||
sandstormCrossBonus,,,L1,,
|
|
||||||
teleOpCargoShipHatchSuccess,0,0,,,
|
|
||||||
teleOpRocketHatchSuccess,4,1,,,
|
|
||||||
sandstormCargoShipCargoFailure,0,0,,,
|
|
||||||
lowRocketSuccessTeleop,,,N/A,,
|
|
||||||
teleOpRocketHatchFailure,1,1,,,
|
|
||||||
teleOpRocketCargoFailure,1,1,,,
|
|
||||||
cargoSuccessTeleop,,,N/A,,
|
|
||||||
sandstormCargoShipHatchSuccess,0,1,,,
|
|
||||||
startingHatch,,,Hab I,,
|
|
||||||
fillChoice,,,High Rocket,,
|
|
||||||
functional,,,Yes,,
|
|
||||||
sandstormCargoShipCargoSuccess,0,0,,,
|
|
||||||
strongMedium,,,Hatch,,
|
|
||||||
teleOpCargoShipCargoFailure,0,0,,,
|
|
||||||
sandstormRocketHatchFailure,0,0,,,
|
|
||||||
sandstormCargoShipHatchFailure,0,0,,,
|
|
||||||
fillChoiceTeleop,,,High Rocket,,
|
|
||||||
contrubution,,,Strong,,
|
|
||||||
HABClimb,None,L1,,,
|
|
||||||
match,match-11,match-2,match-24,,
|
|
||||||
hiRocketSuccessTeleop,,,High,,
|
|
||||||
endingHab,,,L2,,
|
|
||||||
teleOpCargoShipCargoSuccess,0,0,,,
|
|
||||||
|
|
@ -1,38 +1,6 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,,"{'contribution': 'Great', 'notes': 'almost ended on hab 3', 'cargoSuccess': 'High', 'fillChoice': 'Cargo', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-16', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': 'Large', 'match': 'match-3', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': '', 'hiRocketSuccess': ''}",,
|
gmkR7hN4D1fQguey5X5V48d3PhO2,sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,jouGPhPF0qME5wNIbd86MzYFsGw2,sandstormRocketCargoSuccess,nTG6cThsi9TB9mTkcwuo5bKEo9B3,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
sandstormRocketCargoFailure,0,0,,,
|
,0,0,0,,1,"{'notes': 'working with us didn’t see most of the match', 'contribution': 'Idk', 'fillChoice': 'Cargo', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': 'Ball', 'teamDBRef': 'team-16', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Jumbo', 'match': 'match-11', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Sorta', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",0,,,slow,,team-16,L2,,0,1,0,,0,0,,0,,,,0,,0,0,1,,,L3,match-11,,,4
|
||||||
teleOpRocketCargoSuccess,0,0,,,
|
,0,0,0,,0,,0,,,Ludicrous,,team-16,L1,,0,0,0,,0,0,,0,,,,0,,0,0,1,,,L3,match-18,,,4
|
||||||
sandstormRocketHatchSuccess,0,0,,,
|
"{'contribution': 'Great', 'notes': 'almost ended on hab 3', 'cargoSuccess': 'High', 'fillChoice': 'Cargo', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-16', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': 'Large', 'match': 'match-3', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': '', 'hiRocketSuccess': ''}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,,,,Both
|
,,,,,,,,"{'notes': 'tipped over', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': 'did not stay up long enough to determine ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-16', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-35', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,1,0,,,
|
,,,,Both,,,,,Large,Ludicrous,,team-16,L1,L1,,,,Mid,,,High,,Hab I,Cargo,No,,Neither,,,,Cargo,Strong,,match-41,N/A,L3,
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'notes': 'working with us didn’t see most of the match', 'contribution': 'Idk', 'fillChoice': 'Cargo', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': 'Ball', 'teamDBRef': 'team-16', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Jumbo', 'match': 'match-11', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Sorta', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",,,,
|
|
||||||
sandstormRocketCargoSuccess,0,0,,,
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,,"{'notes': 'tipped over', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': 'did not stay up long enough to determine ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-16', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-35', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",
|
|
||||||
size,,,,,Large
|
|
||||||
speed,slow,Ludicrous,,,Ludicrous
|
|
||||||
strategy,,,,,
|
|
||||||
teamDBRef,team-16,team-16,,,team-16
|
|
||||||
sandstormCross,L2,L1,,,L1
|
|
||||||
sandstormCrossBonus,,,,,L1
|
|
||||||
teleOpCargoShipHatchSuccess,0,0,,,
|
|
||||||
teleOpRocketHatchSuccess,1,0,,,
|
|
||||||
sandstormCargoShipCargoFailure,0,0,,,
|
|
||||||
lowRocketSuccessTeleop,,,,,Mid
|
|
||||||
teleOpRocketHatchFailure,0,0,,,
|
|
||||||
teleOpRocketCargoFailure,0,0,,,
|
|
||||||
cargoSuccessTeleop,,,,,High
|
|
||||||
sandstormCargoShipHatchSuccess,0,0,,,
|
|
||||||
startingHatch,,,,,Hab I
|
|
||||||
fillChoice,,,,,Cargo
|
|
||||||
functional,,,,,No
|
|
||||||
sandstormCargoShipCargoSuccess,0,0,,,
|
|
||||||
strongMedium,,,,,Neither
|
|
||||||
teleOpCargoShipCargoFailure,0,0,,,
|
|
||||||
sandstormRocketHatchFailure,0,0,,,
|
|
||||||
sandstormCargoShipHatchFailure,1,1,,,
|
|
||||||
fillChoiceTeleop,,,,,Cargo
|
|
||||||
contrubution,,,,,Strong
|
|
||||||
HABClimb,L3,L3,,,
|
|
||||||
match,match-11,match-18,,,match-41
|
|
||||||
hiRocketSuccessTeleop,,,,,N/A
|
|
||||||
endingHab,,,,,L3
|
|
||||||
teleOpCargoShipCargoSuccess,4,4,,,
|
|
||||||
|
|
@ -1,21 +1,4 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,"{'contribution': 'Weak', 'notes': 'team ups, robot malfunction VOID THIS INFO', 'fillChoice': '', 'cargoSuccess': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-1675', 'hiRocketSuccessTeleop': '', 'speed': 'Slow', 'lowRocketSuccess': '', 'match': 'match-1', 'size': 'Medium', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II', 'hiRocketSuccess': ''}",,
|
gmkR7hN4D1fQguey5X5V48d3PhO2,strongMediumTeleop,jouGPhPF0qME5wNIbd86MzYFsGw2,size,nTG6cThsi9TB9mTkcwuo5bKEo9B3,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,lowRocketSuccessTeleop,cargoSuccessTeleop,functional,fillChoice,strongMedium,fillChoiceTeleop,contrubution,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
strongMediumTeleop,,Hatch,
|
"{'contribution': 'Weak', 'notes': 'team ups, robot malfunction VOID THIS INFO', 'fillChoice': '', 'cargoSuccess': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-1675', 'hiRocketSuccessTeleop': '', 'speed': 'Slow', 'lowRocketSuccess': '', 'match': 'match-1', 'size': 'Medium', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II', 'hiRocketSuccess': ''}",,"{'notes': '', 'contribution': 'Weak', 'cargoSuccess': '', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-1675', 'speed': '', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'match': 'match-1', 'size': 'Large', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II', 'hiRocketSuccess': ''}",,,,,,,,,,,,,,,,,,
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'notes': '', 'contribution': 'Weak', 'cargoSuccess': '', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-1675', 'speed': '', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'match': 'match-1', 'size': 'Large', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II', 'hiRocketSuccess': ''}",,
|
,Hatch,,IDK,,slow,Hatch panels for rocket,team-1675,None,None,High,N/A,Yes,None,Neither,Low Rocket,Weak,N/A,match-26,L1,IDK
|
||||||
size,,IDK,
|
,,,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': 'pinning opponent and placing hatches on rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-1675', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': 'Large', 'match': 'match-54', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': 'pinning opponent and placing hatches on rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-1675', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': 'Large', 'match': 'match-54', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab I'}"
|
|
||||||
speed,,slow,
|
|
||||||
strategy,,Hatch panels for rocket,
|
|
||||||
teamDBRef,,team-1675,
|
|
||||||
sandstormCross,,None,
|
|
||||||
sandstormCrossBonus,,None,
|
|
||||||
lowRocketSuccessTeleop,,High,
|
|
||||||
cargoSuccessTeleop,,N/A,
|
|
||||||
functional,,Yes,
|
|
||||||
fillChoice,,None,
|
|
||||||
strongMedium,,Neither,
|
|
||||||
fillChoiceTeleop,,Low Rocket,
|
|
||||||
contrubution,,Weak,
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
match,,match-26,
|
|
||||||
endingHab,,L1,
|
|
||||||
startingHatch,,IDK,
|
|
||||||
|
|
@ -1,18 +1,2 @@
|
|||||||
sandstormCrossBonus,L1
|
sandstormCrossBonus,strongMediumTeleop,fillChoiceTeleop,cargoSuccessTeleop,contrubution,functional,lowRocketSuccessTeleop,startingHatch,size,hiRocketSuccessTeleop,speed,strategy,match,fillChoice,endingHab,teamDBRef,strongMedium,sandstormCross
|
||||||
strongMediumTeleop,Neither
|
L1,Neither,Cargo,Low,Weak,No,N/A,Hab I,Small,N/A,slow,,match-31,None,L1,team-1702,Neither,L1
|
||||||
fillChoiceTeleop,Cargo
|
|
||||||
cargoSuccessTeleop,Low
|
|
||||||
contrubution,Weak
|
|
||||||
functional,No
|
|
||||||
lowRocketSuccessTeleop,N/A
|
|
||||||
startingHatch,Hab I
|
|
||||||
size,Small
|
|
||||||
hiRocketSuccessTeleop,N/A
|
|
||||||
speed,slow
|
|
||||||
strategy,
|
|
||||||
match,match-31
|
|
||||||
fillChoice,None
|
|
||||||
endingHab,L1
|
|
||||||
teamDBRef,team-1702
|
|
||||||
strongMedium,Neither
|
|
||||||
sandstormCross,L1
|
|
||||||
|
|
@ -1,19 +1,3 @@
|
|||||||
sandstormCrossBonus,,L2
|
sandstormCrossBonus,9fv7QhcLPsfU59sRrPq7LcJlD8J3,strongMediumTeleop,fillChoiceTeleop,cargoSuccessTeleop,contrubution,functional,lowRocketSuccessTeleop,startingHatch,size,hiRocketSuccessTeleop,speed,strategy,match,fillChoice,endingHab,teamDBRef,strongMedium,sandstormCross
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,"{'contribution': '', 'notes': '', 'fillChoice': 'High Rocket', 'strategy': 'place high hatches. except- it’s very inaccurate. has the reach, though ', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-1736', 'hiRocketSuccessTeleop': 'Low', 'speed': '', 'match': 'match-14', 'size': '', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': '', 'endingHab': '', 'functional': 'Yes', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}",
|
,"{'contribution': '', 'notes': '', 'fillChoice': 'High Rocket', 'strategy': 'place high hatches. except- it’s very inaccurate. has the reach, though ', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-1736', 'hiRocketSuccessTeleop': 'Low', 'speed': '', 'match': 'match-14', 'size': '', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': '', 'endingHab': '', 'functional': 'Yes', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}",,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,Ball
|
L2,,Ball,Cargo,Low,Equal,No,N/A,Hab II,Medium,N/A,Medium,"Hatches, then balls",match-27,Cargo,None,team-1736,Neither,L2
|
||||||
fillChoiceTeleop,,Cargo
|
|
||||||
cargoSuccessTeleop,,Low
|
|
||||||
contrubution,,Equal
|
|
||||||
functional,,No
|
|
||||||
lowRocketSuccessTeleop,,N/A
|
|
||||||
startingHatch,,Hab II
|
|
||||||
size,,Medium
|
|
||||||
hiRocketSuccessTeleop,,N/A
|
|
||||||
speed,,Medium
|
|
||||||
strategy,,"Hatches, then balls"
|
|
||||||
match,,match-27
|
|
||||||
fillChoice,,Cargo
|
|
||||||
endingHab,,None
|
|
||||||
teamDBRef,,team-1736
|
|
||||||
strongMedium,,Neither
|
|
||||||
sandstormCross,,L2
|
|
||||||
|
|
@ -1,36 +1,6 @@
|
|||||||
sandstormRocketCargoFailure,,,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,strongMediumTeleop,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,nTG6cThsi9TB9mTkcwuo5bKEo9B3,size,sandstormRocketCargoSuccess,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,teleOpCargoShipCargoSuccess,functional,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
teleOpRocketCargoSuccess,,,,,0
|
,,,,,"{'notes': 'don’t know how accurate storm is', 'contribution': '', 'fillChoice': '', 'strategy': 'i got confused. i didnt really see what the robot did', 'cargoSuccessTeleop': 'N/A', 'strongMedium': 'Ball', 'teamDBRef': 'team-1739', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-18', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,Ball,Neither,Neither,
|
,,Ball,,,,Medium,,Medium,,team-1739,L1,L1,,,,Low,,,High,,,Sorta,Cargo,,Hatch,,,,Cargo,Equal,,Low,match-22,L2,Hab I
|
||||||
sandstormRocketHatchSuccess,,,,,0
|
,,Neither,,,,Jumbo,,Medium,,team-1739,L1,L1,,,,N/A,,,Low,,,No,None,,Neither,,,,Cargo,Weak,,N/A,match-33,None,Hab I
|
||||||
teleOpCargoShipHatchFailure,,,,,0
|
,,Neither,,,,Small,,Medium,,team-1739,L1,L1,,,,N/A,,,Low,,,No,None,,Neither,,,,Cargo,Weak,,N/A,match-52,L1,Hab I
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,"{'notes': 'don’t know how accurate storm is', 'contribution': '', 'fillChoice': '', 'strategy': 'i got confused. i didnt really see what the robot did', 'cargoSuccessTeleop': 'N/A', 'strongMedium': 'Ball', 'teamDBRef': 'team-1739', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-18', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",,,,
|
0,0,,0,0,,,0,slow,,team-1739,L1,,0,0,0,,0,0,,0,0,,,0,,0,0,0,,,L1,,match-6,,
|
||||||
size,,Medium,Jumbo,Small,
|
|
||||||
sandstormRocketCargoSuccess,,,,,0
|
|
||||||
speed,,Medium,Medium,Medium,slow
|
|
||||||
strategy,,,,,
|
|
||||||
teamDBRef,,team-1739,team-1739,team-1739,team-1739
|
|
||||||
sandstormCross,,L1,L1,L1,L1
|
|
||||||
sandstormCrossBonus,,L1,L1,L1,
|
|
||||||
teleOpCargoShipHatchSuccess,,,,,0
|
|
||||||
teleOpRocketHatchSuccess,,,,,0
|
|
||||||
sandstormCargoShipCargoFailure,,,,,0
|
|
||||||
lowRocketSuccessTeleop,,Low,N/A,N/A,
|
|
||||||
teleOpRocketHatchFailure,,,,,0
|
|
||||||
teleOpRocketCargoFailure,,,,,0
|
|
||||||
cargoSuccessTeleop,,High,Low,Low,
|
|
||||||
sandstormCargoShipHatchSuccess,,,,,0
|
|
||||||
teleOpCargoShipCargoSuccess,,,,,0
|
|
||||||
functional,,Sorta,No,No,
|
|
||||||
fillChoice,,Cargo,None,None,
|
|
||||||
sandstormCargoShipCargoSuccess,,,,,0
|
|
||||||
strongMedium,,Hatch,Neither,Neither,
|
|
||||||
teleOpCargoShipCargoFailure,,,,,0
|
|
||||||
sandstormRocketHatchFailure,,,,,0
|
|
||||||
sandstormCargoShipHatchFailure,,,,,0
|
|
||||||
fillChoiceTeleop,,Cargo,Cargo,Cargo,
|
|
||||||
contrubution,,Equal,Weak,Weak,
|
|
||||||
HABClimb,,,,,L1
|
|
||||||
hiRocketSuccessTeleop,,Low,N/A,N/A,
|
|
||||||
match,,match-22,match-33,match-52,match-6
|
|
||||||
endingHab,,L2,None,L1,
|
|
||||||
startingHatch,,Hab I,Hab I,Hab I,
|
|
||||||
|
|
@ -1,20 +1,4 @@
|
|||||||
sandstormCrossBonus,,None,
|
sandstormCrossBonus,9fv7QhcLPsfU59sRrPq7LcJlD8J3,gmkR7hN4D1fQguey5X5V48d3PhO2,strongMediumTeleop,fillChoiceTeleop,cargoSuccessTeleop,contrubution,functional,lowRocketSuccessTeleop,startingHatch,size,speed,hiRocketSuccessTeleop,strategy,match,fillChoice,endingHab,teamDBRef,strongMedium,sandstormCross
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,"{'contribution': 'Equal', 'notes': '', 'fillChoice': '', 'strategy': 'place balls in rocket, offensive, close to base', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-1781', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-15', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 3', 'functional': 'Yes', 'startingHatch': '', 'lowRocketSuccessTeleop': ''}",,
|
,"{'contribution': 'Equal', 'notes': '', 'fillChoice': '', 'strategy': 'place balls in rocket, offensive, close to base', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-1781', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-15', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 3', 'functional': 'Yes', 'startingHatch': '', 'lowRocketSuccessTeleop': ''}",,,,,,,,,,,,,,,,,,
|
||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,,"{'contribution': 'Great', 'notes': 'potential for hab 3', 'fillChoice': 'Cargo', 'cargoSuccessTeleop': '', 'strongMedium': 'Ball', 'teamDBRef': 'team-1781', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Medium', 'match': 'match-7', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 2', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}"
|
None,,,Neither,None,N/A,IDK,No,N/A,None,IDK,slow,N/A,FTA Deactivation,match-36,None,None,team-1781,Neither,None
|
||||||
strongMediumTeleop,,Neither,
|
,,"{'contribution': 'Great', 'notes': 'potential for hab 3', 'fillChoice': 'Cargo', 'cargoSuccessTeleop': '', 'strongMedium': 'Ball', 'teamDBRef': 'team-1781', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Medium', 'match': 'match-7', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 2', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,
|
||||||
fillChoiceTeleop,,None,
|
|
||||||
cargoSuccessTeleop,,N/A,
|
|
||||||
contrubution,,IDK,
|
|
||||||
functional,,No,
|
|
||||||
lowRocketSuccessTeleop,,N/A,
|
|
||||||
startingHatch,,None,
|
|
||||||
size,,IDK,
|
|
||||||
speed,,slow,
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
strategy,,FTA Deactivation,
|
|
||||||
match,,match-36,
|
|
||||||
fillChoice,,None,
|
|
||||||
endingHab,,None,
|
|
||||||
teamDBRef,,team-1781,
|
|
||||||
strongMedium,,Neither,
|
|
||||||
sandstormCross,,None,
|
|
||||||
|
|
@ -1,19 +1,3 @@
|
|||||||
sandstormCrossBonus,L1,
|
sandstormCrossBonus,9fv7QhcLPsfU59sRrPq7LcJlD8J3,strongMediumTeleop,fillChoiceTeleop,cargoSuccessTeleop,contrubution,functional,lowRocketSuccessTeleop,startingHatch,size,speed,hiRocketSuccessTeleop,strategy,match,fillChoice,endingHab,teamDBRef,strongMedium,sandstormCross
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'contribution': '', 'notes': 'had a reach with the height of their grabber, yet it was extremely inaccurate. with the fast frequency they could make attempts, they were able to land 3', 'fillChoice': '', 'cargoSuccessTeleop': 'Low', 'strongMedium': '', 'teamDBRef': 'team-1797', 'hiRocketSuccessTeleop': '', 'speed': 'Medium', 'match': 'match-8', 'size': 'Jumbo', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'None'}"
|
L1,,Ball,Cargo,High,Equal,Yes,N/A,Hab I,Medium,slow,N/A,Cargo only,match-43,None,L1,team-1797,Neither,L1
|
||||||
strongMediumTeleop,Ball,
|
,"{'contribution': '', 'notes': 'had a reach with the height of their grabber, yet it was extremely inaccurate. with the fast frequency they could make attempts, they were able to land 3', 'fillChoice': '', 'cargoSuccessTeleop': 'Low', 'strongMedium': '', 'teamDBRef': 'team-1797', 'hiRocketSuccessTeleop': '', 'speed': 'Medium', 'match': 'match-8', 'size': 'Jumbo', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'None'}",,,,,,,,,,,,,,,,,
|
||||||
fillChoiceTeleop,Cargo,
|
|
||||||
cargoSuccessTeleop,High,
|
|
||||||
contrubution,Equal,
|
|
||||||
functional,Yes,
|
|
||||||
lowRocketSuccessTeleop,N/A,
|
|
||||||
startingHatch,Hab I,
|
|
||||||
size,Medium,
|
|
||||||
speed,slow,
|
|
||||||
hiRocketSuccessTeleop,N/A,
|
|
||||||
strategy,Cargo only,
|
|
||||||
match,match-43,
|
|
||||||
fillChoice,None,
|
|
||||||
endingHab,L1,
|
|
||||||
teamDBRef,team-1797,
|
|
||||||
strongMedium,Neither,
|
|
||||||
sandstormCross,L1,
|
|
||||||
|
|
@ -1,37 +1,5 @@
|
|||||||
sandstormRocketCargoFailure,,0,,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,jouGPhPF0qME5wNIbd86MzYFsGw2,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,klQQqapPjwO3jnpN8Dieequh3OI3,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,,0,,
|
,,,,,"{'contribution': '', 'notes': 'very unstable ', 'fillChoice': 'Cargo', 'strategy': 'ineffective ', 'cargoSuccessTeleop': 'Low', 'strongMedium': 'Hatch', 'teamDBRef': 'team-1884', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Fast', 'match': 'match-16', 'size': '', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
sandstormRocketHatchSuccess,,0,,
|
0,0,0,,0,,0,,slow,,team-1884,L1,,0,0,0,,0,0,,,0,,,,0,,0,0,1,,,None,match-2,,,0
|
||||||
strongMediumTeleop,,,,Both
|
,,,,,,,,,,,,,,,,,,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-1884', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-27', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,,0,,
|
,,,Both,,,,Large,Fast,,team-1884,L1,L1,,,,N/A,,,,High,,Hab I,Cargo,Yes,,Ball,,,,Cargo,Equal,,match-32,N/A,None,
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'contribution': '', 'notes': 'very unstable ', 'fillChoice': 'Cargo', 'strategy': 'ineffective ', 'cargoSuccessTeleop': 'Low', 'strongMedium': 'Hatch', 'teamDBRef': 'team-1884', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Fast', 'match': 'match-16', 'size': '', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,
|
|
||||||
sandstormRocketCargoSuccess,,0,,
|
|
||||||
size,,,,Large
|
|
||||||
speed,,slow,,Fast
|
|
||||||
strategy,,,,
|
|
||||||
teamDBRef,,team-1884,,team-1884
|
|
||||||
sandstormCross,,L1,,L1
|
|
||||||
sandstormCrossBonus,,,,L1
|
|
||||||
teleOpCargoShipHatchSuccess,,0,,
|
|
||||||
teleOpRocketHatchSuccess,,0,,
|
|
||||||
sandstormCargoShipCargoFailure,,0,,
|
|
||||||
lowRocketSuccessTeleop,,,,N/A
|
|
||||||
teleOpRocketHatchFailure,,0,,
|
|
||||||
teleOpRocketCargoFailure,,0,,
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-1884', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-27', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",
|
|
||||||
cargoSuccessTeleop,,,,High
|
|
||||||
sandstormCargoShipHatchSuccess,,0,,
|
|
||||||
startingHatch,,,,Hab I
|
|
||||||
fillChoice,,,,Cargo
|
|
||||||
functional,,,,Yes
|
|
||||||
sandstormCargoShipCargoSuccess,,0,,
|
|
||||||
strongMedium,,,,Ball
|
|
||||||
teleOpCargoShipCargoFailure,,0,,
|
|
||||||
sandstormRocketHatchFailure,,0,,
|
|
||||||
sandstormCargoShipHatchFailure,,1,,
|
|
||||||
fillChoiceTeleop,,,,Cargo
|
|
||||||
contrubution,,,,Equal
|
|
||||||
HABClimb,,None,,
|
|
||||||
match,,match-2,,match-32
|
|
||||||
hiRocketSuccessTeleop,,,,N/A
|
|
||||||
endingHab,,,,None
|
|
||||||
teleOpCargoShipCargoSuccess,,0,,
|
|
||||||
|
|
@ -1,36 +1,5 @@
|
|||||||
sandstormRocketCargoFailure,,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,strongMediumTeleop,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,jouGPhPF0qME5wNIbd86MzYFsGw2,size,sandstormRocketCargoSuccess,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,teleOpCargoShipCargoSuccess,functional,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
teleOpRocketCargoSuccess,,,,0
|
,,,,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': '', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2016', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-12', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Neither', 'endingHab': 'Hab 2', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,Ball,Ball,
|
,,Ball,,,,Large,,Fast,Tried unsuccessfully to fill cargo ship then rammed defensively,team-2016,L2,L2,,,,N/A,,,Low,,,No,None,,Hatch,,,,Cargo,Weak,,N/A,match-27,L2,Hab II
|
||||||
sandstormRocketHatchSuccess,,,,0
|
,,Ball,,,,Small,,Medium,Pure cargo,team-2016,L2,L2,,,,N/A,,,High,,,Yes,None,,Neither,,,,Cargo,Weak,,Low,match-38,L1,Hab II
|
||||||
teleOpCargoShipHatchFailure,,,,0
|
0,0,,0,0,,,0,slow,,team-2016,None,,0,0,0,,0,0,,0,0,,,0,,0,0,0,,,None,,match-5,,
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'notes': '', 'contribution': 'Equal', 'fillChoice': '', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2016', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-12', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Neither', 'endingHab': 'Hab 2', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,
|
|
||||||
size,,Large,Small,
|
|
||||||
sandstormRocketCargoSuccess,,,,0
|
|
||||||
speed,,Fast,Medium,slow
|
|
||||||
strategy,,Tried unsuccessfully to fill cargo ship then rammed defensively,Pure cargo,
|
|
||||||
teamDBRef,,team-2016,team-2016,team-2016
|
|
||||||
sandstormCross,,L2,L2,None
|
|
||||||
sandstormCrossBonus,,L2,L2,
|
|
||||||
teleOpCargoShipHatchSuccess,,,,0
|
|
||||||
teleOpRocketHatchSuccess,,,,0
|
|
||||||
sandstormCargoShipCargoFailure,,,,0
|
|
||||||
lowRocketSuccessTeleop,,N/A,N/A,
|
|
||||||
teleOpRocketHatchFailure,,,,0
|
|
||||||
teleOpRocketCargoFailure,,,,0
|
|
||||||
cargoSuccessTeleop,,Low,High,
|
|
||||||
sandstormCargoShipHatchSuccess,,,,0
|
|
||||||
teleOpCargoShipCargoSuccess,,,,0
|
|
||||||
functional,,No,Yes,
|
|
||||||
fillChoice,,None,None,
|
|
||||||
sandstormCargoShipCargoSuccess,,,,0
|
|
||||||
strongMedium,,Hatch,Neither,
|
|
||||||
teleOpCargoShipCargoFailure,,,,0
|
|
||||||
sandstormRocketHatchFailure,,,,0
|
|
||||||
sandstormCargoShipHatchFailure,,,,0
|
|
||||||
fillChoiceTeleop,,Cargo,Cargo,
|
|
||||||
contrubution,,Weak,Weak,
|
|
||||||
HABClimb,,,,None
|
|
||||||
hiRocketSuccessTeleop,,N/A,Low,
|
|
||||||
match,,match-27,match-38,match-5
|
|
||||||
endingHab,,L2,L1,
|
|
||||||
startingHatch,,Hab II,Hab II,
|
|
||||||
|
|
@ -1 +1,2 @@
|
|||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'notes': 'it’s us', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2022', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-5', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
jouGPhPF0qME5wNIbd86MzYFsGw2
|
||||||
|
"{'notes': 'it’s us', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2022', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-5', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
||||||
|
|
@ -1,23 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,0,,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,jouGPhPF0qME5wNIbd86MzYFsGw2,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,sandstormCargoShipHatchSuccess,mf0oyBolLjZgC9wALSwSb6IvE0T2,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,
|
0,0,0,0,0,,slow,team-2039,L2,0,0,0,0,0,0,,0,0,0,0,L1,match-17,1
|
||||||
sandstormRocketHatchSuccess,0,,
|
,,,,,"{'notes': '', 'contribution': 'Weak', 'cargoSuccess': 'Low', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2039', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': 'N/A', 'match': 'match-3', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II', 'hiRocketSuccess': 'N/A'}",,,,,,,,,,,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,,
|
,,,,,,,,,,,,,,,"{'notes': 'robot was kind of fast and was good at what it did', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2039', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Large', 'match': 'match-31', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Ball', 'endingHab': 'idk', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'idk'}",,,,,,,
|
||||||
sandstormRocketCargoSuccess,0,,
|
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,"{'notes': '', 'contribution': 'Weak', 'cargoSuccess': 'Low', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2039', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': 'N/A', 'match': 'match-3', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II', 'hiRocketSuccess': 'N/A'}",
|
|
||||||
speed,slow,,
|
|
||||||
teamDBRef,team-2039,,
|
|
||||||
sandstormCross,L2,,
|
|
||||||
teleOpCargoShipHatchSuccess,0,,
|
|
||||||
teleOpRocketHatchSuccess,0,,
|
|
||||||
sandstormCargoShipCargoFailure,0,,
|
|
||||||
teleOpRocketHatchFailure,0,,
|
|
||||||
teleOpRocketCargoFailure,0,,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,
|
|
||||||
mf0oyBolLjZgC9wALSwSb6IvE0T2,,,"{'notes': 'robot was kind of fast and was good at what it did', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2039', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Large', 'match': 'match-31', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Ball', 'endingHab': 'idk', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'idk'}"
|
|
||||||
sandstormCargoShipCargoSuccess,0,,
|
|
||||||
teleOpCargoShipCargoFailure,0,,
|
|
||||||
sandstormRocketHatchFailure,0,,
|
|
||||||
sandstormCargoShipHatchFailure,0,,
|
|
||||||
HABClimb,L1,,
|
|
||||||
match,match-17,,
|
|
||||||
teleOpCargoShipCargoSuccess,1,,
|
|
||||||
|
|
@ -1,21 +1,7 @@
|
|||||||
strongMediumTeleop,,Ball,Hatch,,,
|
strongMediumTeleop,jouGPhPF0qME5wNIbd86MzYFsGw2,size,nTG6cThsi9TB9mTkcwuo5bKEo9B3,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,lowRocketSuccessTeleop,cargoSuccessTeleop,9fv7QhcLPsfU59sRrPq7LcJlD8J3,functional,fillChoice,strongMedium,fillChoiceTeleop,contrubution,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'contribution': 'Equal', 'notes': '', 'fillChoice': '', 'strategy': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2062', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Medium', 'match': 'match-10', 'size': 'Small', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,,,,
|
,"{'contribution': 'Equal', 'notes': '', 'fillChoice': '', 'strategy': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2062', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Medium', 'match': 'match-10', 'size': 'Small', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,
|
||||||
size,,IDK,Medium,,,
|
Ball,,IDK,,slow,"Hatches, then cargo",team-2062,L1,L1,Mid,Mid,,Yes,None,Hatch,Low Rocket,IDK,N/A,match-23,None,IDK
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,,"{'notes': 'stopped working at twice i think', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': 'ball in rocket and ship.', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-2062', 'speed': 'Slow', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Large', 'match': 'match-29', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab I'}","{'contribution': 'Equal', 'notes': 'dropped hatch during storm', 'fillChoice': '', 'strategy': 'hatch on rocket and ball in cargo ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2062', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Medium', 'match': 'match-43', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab I'}",
|
Hatch,,Medium,,Fast,,team-2062,L1,L1,N/A,High,,No,None,Neither,High Rocket,Weak,High,match-28,L1,Hab I
|
||||||
speed,,slow,Fast,,,
|
,,,"{'notes': 'stopped working at twice i think', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': 'ball in rocket and ship.', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-2062', 'speed': 'Slow', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Large', 'match': 'match-29', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,
|
||||||
strategy,,"Hatches, then cargo",,,,
|
,,,"{'contribution': 'Equal', 'notes': 'dropped hatch during storm', 'fillChoice': '', 'strategy': 'hatch on rocket and ball in cargo ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2062', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Medium', 'match': 'match-43', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,
|
||||||
teamDBRef,,team-2062,team-2062,,,
|
,,,,,,,,,,,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2062', 'hiRocketSuccessTeleop': '', 'speed': 'Fast', 'match': 'match-6', 'size': 'Idk', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Sorta', 'lowRocketSuccessTeleop': '', 'startingHatch': 'None'}",,,,,,,,,
|
||||||
sandstormCross,,L1,L1,,,
|
|
||||||
sandstormCrossBonus,,L1,L1,,,
|
|
||||||
lowRocketSuccessTeleop,,Mid,N/A,,,
|
|
||||||
cargoSuccessTeleop,,Mid,High,,,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,,,,,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2062', 'hiRocketSuccessTeleop': '', 'speed': 'Fast', 'match': 'match-6', 'size': 'Idk', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Sorta', 'lowRocketSuccessTeleop': '', 'startingHatch': 'None'}"
|
|
||||||
functional,,Yes,No,,,
|
|
||||||
fillChoice,,None,None,,,
|
|
||||||
strongMedium,,Hatch,Neither,,,
|
|
||||||
fillChoiceTeleop,,Low Rocket,High Rocket,,,
|
|
||||||
contrubution,,IDK,Weak,,,
|
|
||||||
hiRocketSuccessTeleop,,N/A,High,,,
|
|
||||||
match,,match-23,match-28,,,
|
|
||||||
endingHab,,None,L1,,,
|
|
||||||
startingHatch,,IDK,Hab I,,,
|
|
||||||
|
|
@ -1,35 +1,3 @@
|
|||||||
sandstormRocketCargoFailure,0,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,
|
0,0,0,,0,0,,slow,,team-2125,None,,0,0,0,,0,0,,0,,,,0,,0,0,0,,,None,match-20,,,0
|
||||||
sandstormRocketHatchSuccess,0,
|
,,,Neither,,,IDK,slow,Flawed defense,team-2125,None,None,,,,N/A,,,N/A,,Hab I,None,No,,Neither,,,,None,Weak,,match-27,N/A,None,
|
||||||
strongMediumTeleop,,Neither
|
|
||||||
teleOpCargoShipHatchFailure,0,
|
|
||||||
sandstormRocketCargoSuccess,0,
|
|
||||||
size,,IDK
|
|
||||||
speed,slow,slow
|
|
||||||
strategy,,Flawed defense
|
|
||||||
teamDBRef,team-2125,team-2125
|
|
||||||
sandstormCross,None,None
|
|
||||||
sandstormCrossBonus,,None
|
|
||||||
teleOpCargoShipHatchSuccess,0,
|
|
||||||
teleOpRocketHatchSuccess,0,
|
|
||||||
sandstormCargoShipCargoFailure,0,
|
|
||||||
lowRocketSuccessTeleop,,N/A
|
|
||||||
teleOpRocketHatchFailure,0,
|
|
||||||
teleOpRocketCargoFailure,0,
|
|
||||||
cargoSuccessTeleop,,N/A
|
|
||||||
sandstormCargoShipHatchSuccess,0,
|
|
||||||
startingHatch,,Hab I
|
|
||||||
fillChoice,,None
|
|
||||||
functional,,No
|
|
||||||
sandstormCargoShipCargoSuccess,0,
|
|
||||||
strongMedium,,Neither
|
|
||||||
teleOpCargoShipCargoFailure,0,
|
|
||||||
sandstormRocketHatchFailure,0,
|
|
||||||
sandstormCargoShipHatchFailure,0,
|
|
||||||
fillChoiceTeleop,,None
|
|
||||||
contrubution,,Weak
|
|
||||||
HABClimb,None,
|
|
||||||
match,match-20,match-27
|
|
||||||
hiRocketSuccessTeleop,,N/A
|
|
||||||
endingHab,,None
|
|
||||||
teleOpCargoShipCargoSuccess,0,
|
|
||||||
|
|
@ -1,21 +1,3 @@
|
|||||||
sandstormRocketCargoFailure,0,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,sandstormCargoShipHatchSuccess,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,0
|
0,0,0,0,0,Medium,team-2136,None,0,0,0,0,0,0,0,0,0,0,None,match-14,0
|
||||||
sandstormRocketHatchSuccess,0,0
|
0,0,0,0,0,slow,team-2136,None,0,0,0,0,0,0,0,0,0,0,None,match-9,0
|
||||||
teleOpCargoShipHatchFailure,0,0
|
|
||||||
sandstormRocketCargoSuccess,0,0
|
|
||||||
speed,Medium,slow
|
|
||||||
teamDBRef,team-2136,team-2136
|
|
||||||
sandstormCross,None,None
|
|
||||||
teleOpCargoShipHatchSuccess,0,0
|
|
||||||
teleOpRocketHatchSuccess,0,0
|
|
||||||
sandstormCargoShipCargoFailure,0,0
|
|
||||||
teleOpRocketHatchFailure,0,0
|
|
||||||
teleOpRocketCargoFailure,0,0
|
|
||||||
sandstormCargoShipHatchSuccess,0,0
|
|
||||||
sandstormCargoShipCargoSuccess,0,0
|
|
||||||
teleOpCargoShipCargoFailure,0,0
|
|
||||||
sandstormRocketHatchFailure,0,0
|
|
||||||
sandstormCargoShipHatchFailure,0,0
|
|
||||||
HABClimb,None,None
|
|
||||||
match,match-14,match-9
|
|
||||||
teleOpCargoShipCargoSuccess,0,0
|
|
||||||
|
|
@ -1,39 +1,5 @@
|
|||||||
sandstormRocketCargoFailure,0,0,,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,jouGPhPF0qME5wNIbd86MzYFsGw2,sandstormRocketCargoSuccess,size,nTG6cThsi9TB9mTkcwuo5bKEo9B3,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,9fv7QhcLPsfU59sRrPq7LcJlD8J3,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,functional,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,0,,
|
0,0,0,,0,"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': 'slow and unreliable ', 'cargoSuccessTeleop': '', 'strongMedium': 'Neither', 'teamDBRef': 'team-2151', 'hiRocketSuccessTeleop': '', 'speed': 'Slow', 'match': 'match-14', 'size': 'Medium', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': 'No', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab I'}",0,,,slow,,team-2151,None,,0,1,0,,0,0,,0,,,,,0,,,0,0,0,,,None,match-14,,,0
|
||||||
sandstormRocketHatchSuccess,0,0,,
|
0,0,0,,0,,0,,,slow,,team-2151,None,,1,0,0,,0,0,,0,,,"{'contribution': '', 'notes': '', 'cargoSuccess': '', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'speed': '', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': '', 'hiRocketSuccess': ''}",,0,,,0,0,0,,,None,match-2,,,0
|
||||||
strongMediumTeleop,,,Neither,
|
,,,Neither,,,,Small,,slow,,team-2151,None,None,,,,N/A,,,N/A,,Hab I,"{'contribution': '', 'notes': 'The bot is idle. ', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-2151', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-29', 'size': 'Medium', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': '', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,None,,Neither,No,,,,None,Weak,,match-29,N/A,None,
|
||||||
teleOpCargoShipHatchFailure,0,0,,
|
,,,,,,,,"{'contribution': '', 'notes': '', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-2151', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-44', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'startingHatch': '', 'lowRocketSuccessTeleop': ''}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': 'slow and unreliable ', 'cargoSuccessTeleop': '', 'strongMedium': 'Neither', 'teamDBRef': 'team-2151', 'hiRocketSuccessTeleop': '', 'speed': 'Slow', 'match': 'match-14', 'size': 'Medium', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': 'No', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab I'}",,,
|
|
||||||
sandstormRocketCargoSuccess,0,0,,
|
|
||||||
size,,,Small,
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,,"{'contribution': '', 'notes': '', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-2151', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-44', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'startingHatch': '', 'lowRocketSuccessTeleop': ''}"
|
|
||||||
speed,slow,slow,slow,
|
|
||||||
strategy,,,,
|
|
||||||
teamDBRef,team-2151,team-2151,team-2151,
|
|
||||||
sandstormCross,None,None,None,
|
|
||||||
sandstormCrossBonus,,,None,
|
|
||||||
teleOpCargoShipHatchSuccess,0,1,,
|
|
||||||
teleOpRocketHatchSuccess,1,0,,
|
|
||||||
sandstormCargoShipCargoFailure,0,0,,
|
|
||||||
lowRocketSuccessTeleop,,,N/A,
|
|
||||||
teleOpRocketHatchFailure,0,0,,
|
|
||||||
teleOpRocketCargoFailure,0,0,,
|
|
||||||
cargoSuccessTeleop,,,N/A,
|
|
||||||
sandstormCargoShipHatchSuccess,0,0,,
|
|
||||||
startingHatch,,,Hab I,
|
|
||||||
e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,,,"{'contribution': '', 'notes': 'The bot is idle. ', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-2151', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-29', 'size': 'Medium', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': '', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'contribution': '', 'notes': '', 'cargoSuccess': '', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'speed': '', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': '', 'hiRocketSuccess': ''}",,
|
|
||||||
fillChoice,,,None,
|
|
||||||
sandstormCargoShipCargoSuccess,0,0,,
|
|
||||||
strongMedium,,,Neither,
|
|
||||||
functional,,,No,
|
|
||||||
teleOpCargoShipCargoFailure,0,0,,
|
|
||||||
sandstormRocketHatchFailure,0,0,,
|
|
||||||
sandstormCargoShipHatchFailure,0,0,,
|
|
||||||
fillChoiceTeleop,,,None,
|
|
||||||
contrubution,,,Weak,
|
|
||||||
HABClimb,None,None,,
|
|
||||||
match,match-14,match-2,match-29,
|
|
||||||
hiRocketSuccessTeleop,,,N/A,
|
|
||||||
endingHab,,,None,
|
|
||||||
teleOpCargoShipCargoSuccess,0,0,,
|
|
||||||
|
|
@ -1,39 +1,7 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,,,,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Low Rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2252', 'hiRocketSuccessTeleop': '', 'speed': 'Medium', 'match': 'match-4', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab I'}",
|
gmkR7hN4D1fQguey5X5V48d3PhO2,sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,nTG6cThsi9TB9mTkcwuo5bKEo9B3,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,klQQqapPjwO3jnpN8Dieequh3OI3,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,5nO8yj26oEUhd3mS3noHWQNvqSE3,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
sandstormRocketCargoFailure,0,,,,,
|
,0,0,0,,0,0,,,slow,,team-2252,L1,,0,0,0,,0,0,"{'contribution': 'Equal', 'notes': 'alliance only had 2 robots', 'fillChoice': 'Cargo', 'strategy': '', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-2252', 'hiRocketSuccessTeleop': '', 'speed': 'Ludicrous', 'match': 'match-15', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab II'}",,0,,,,0,,0,0,1,,,L1,,match-15,,,4
|
||||||
teleOpRocketCargoSuccess,0,,,,,
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': 'Low Rocket', 'strategy': '', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-2252', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'Low', 'size': 'Medium', 'match': 'match-31', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'startingHatch': '', 'lowRocketSuccessTeleop': 'Mid'}",,,,
|
||||||
sandstormRocketHatchSuccess,0,,,,,
|
,,,,Ball,,,Large,,slow,Cargo ship cargo,team-2252,L1,L1,,,,N/A,,,,Mid,,Hab I,Cargo,Yes,,Neither,,,,Cargo,Equal,,,match-38,N/A,L1,
|
||||||
strongMediumTeleop,,,Ball,Ball,,
|
,,,,Ball,,,Small,,Fast,,team-2252,L1,L1,,,,N/A,,,,Mid,,Hab I,Cargo,No,,Neither,,,,Cargo,Weak,,,match-39,N/A,L1,
|
||||||
teleOpCargoShipHatchFailure,0,,,,,
|
"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Low Rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2252', 'hiRocketSuccessTeleop': '', 'speed': 'Medium', 'match': 'match-4', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
sandstormRocketCargoSuccess,0,,,,,
|
,,,,,,,,"{'notes': 'i don’t know if hatch succeeded in storm for cargo ', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': 'ball for cargo ship and rocket ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2252', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-55', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
size,,,Large,Small,,
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,,,,"{'notes': 'i don’t know if hatch succeeded in storm for cargo ', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': 'ball for cargo ship and rocket ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2252', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-55', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
|
||||||
speed,slow,,slow,Fast,,
|
|
||||||
strategy,,,Cargo ship cargo,,,
|
|
||||||
teamDBRef,team-2252,,team-2252,team-2252,,
|
|
||||||
sandstormCross,L1,,L1,L1,,
|
|
||||||
sandstormCrossBonus,,,L1,L1,,
|
|
||||||
teleOpCargoShipHatchSuccess,0,,,,,
|
|
||||||
teleOpRocketHatchSuccess,0,,,,,
|
|
||||||
sandstormCargoShipCargoFailure,0,,,,,
|
|
||||||
lowRocketSuccessTeleop,,,N/A,N/A,,
|
|
||||||
teleOpRocketHatchFailure,0,,,,,
|
|
||||||
teleOpRocketCargoFailure,0,,,,,
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,"{'contribution': 'Equal', 'notes': 'alliance only had 2 robots', 'fillChoice': 'Cargo', 'strategy': '', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-2252', 'hiRocketSuccessTeleop': '', 'speed': 'Ludicrous', 'match': 'match-15', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab II'}",,,,,
|
|
||||||
cargoSuccessTeleop,,,Mid,Mid,,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,,,,
|
|
||||||
startingHatch,,,Hab I,Hab I,,
|
|
||||||
fillChoice,,,Cargo,Cargo,,
|
|
||||||
functional,,,Yes,No,,
|
|
||||||
sandstormCargoShipCargoSuccess,0,,,,,
|
|
||||||
strongMedium,,,Neither,Neither,,
|
|
||||||
teleOpCargoShipCargoFailure,0,,,,,
|
|
||||||
sandstormRocketHatchFailure,0,,,,,
|
|
||||||
sandstormCargoShipHatchFailure,1,,,,,
|
|
||||||
fillChoiceTeleop,,,Cargo,Cargo,,
|
|
||||||
contrubution,,,Equal,Weak,,
|
|
||||||
HABClimb,L1,,,,,
|
|
||||||
5nO8yj26oEUhd3mS3noHWQNvqSE3,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': 'Low Rocket', 'strategy': '', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-2252', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'Low', 'size': 'Medium', 'match': 'match-31', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'startingHatch': '', 'lowRocketSuccessTeleop': 'Mid'}",,,,
|
|
||||||
match,match-15,,match-38,match-39,,
|
|
||||||
hiRocketSuccessTeleop,,,N/A,N/A,,
|
|
||||||
endingHab,,,L1,L1,,
|
|
||||||
teleOpCargoShipCargoSuccess,4,,,,,
|
|
||||||
|
|
@ -1,22 +1,5 @@
|
|||||||
strongMediumTeleop,,,,Ball
|
strongMediumTeleop,jouGPhPF0qME5wNIbd86MzYFsGw2,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,lowRocketSuccessTeleop,cargoSuccessTeleop,fillChoice,functional,9fv7QhcLPsfU59sRrPq7LcJlD8J3,strongMedium,fillChoiceTeleop,contrubution,TGTz9IhKPoQnv6CjEyHEJeqwhss1,5nO8yj26oEUhd3mS3noHWQNvqSE3,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,,"{'contribution': '', 'notes': 'starts with hatchū', 'fillChoice': 'Cargo', 'strategy': 'best robot I have seen this tournament, amazing all-rounder even played some defense, almost too good to be true', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-2338', 'speed': '', 'hiRocketSuccessTeleop': 'High', 'size': 'Idk', 'match': 'match-30', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 3', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'High'}",
|
,,,,,,,,,,,,,,,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2338', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'match': 'match-15', 'size': '', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 3', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,
|
||||||
size,,,,Medium
|
,,,,,,,,,,,,"{'contribution': 'Great', 'notes': '', 'cargoSuccess': '', 'fillChoice': '', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-2338', 'speed': '', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': 'Large', 'match': 'match-2', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'startingHatch': '', 'lowRocketSuccessTeleop': '', 'hiRocketSuccess': 'High'}",,,,,,,,,
|
||||||
speed,,,,Medium
|
,"{'contribution': '', 'notes': 'starts with hatchū', 'fillChoice': 'Cargo', 'strategy': 'best robot I have seen this tournament, amazing all-rounder even played some defense, almost too good to be true', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-2338', 'speed': '', 'hiRocketSuccessTeleop': 'High', 'size': 'Idk', 'match': 'match-30', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 3', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'High'}",,,,,,,,,,,,,,,,"{'notes': '', 'contribution': 'Great', 'fillChoice': 'High Rocket', 'strategy': '', 'strongMedium': 'Both', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2338', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'size': 'Large', 'match': 'match-30', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 3', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': ''}",,,,
|
||||||
strategy,,,,Rocket
|
Ball,,Medium,Medium,Rocket,team-2338,L1,L1,High,N/A,Low Rocket,Yes,,Hatch,High Rocket,Strong,,,High,match-51,L3,Hab I
|
||||||
teamDBRef,,,,team-2338
|
|
||||||
sandstormCross,,,,L1
|
|
||||||
sandstormCrossBonus,,,,L1
|
|
||||||
lowRocketSuccessTeleop,,,,High
|
|
||||||
cargoSuccessTeleop,,,,N/A
|
|
||||||
fillChoice,,,,Low Rocket
|
|
||||||
functional,,,,Yes
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'contribution': 'Great', 'notes': '', 'cargoSuccess': '', 'fillChoice': '', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-2338', 'speed': '', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': 'Large', 'match': 'match-2', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'startingHatch': '', 'lowRocketSuccessTeleop': '', 'hiRocketSuccess': 'High'}",,
|
|
||||||
strongMedium,,,,Hatch
|
|
||||||
fillChoiceTeleop,,,,High Rocket
|
|
||||||
contrubution,,,,Strong
|
|
||||||
TGTz9IhKPoQnv6CjEyHEJeqwhss1,"{'contribution': 'Weak', 'notes': '', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2338', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'match': 'match-15', 'size': '', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 3', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,
|
|
||||||
5nO8yj26oEUhd3mS3noHWQNvqSE3,,,"{'notes': '', 'contribution': 'Great', 'fillChoice': 'High Rocket', 'strategy': '', 'strongMedium': 'Both', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2338', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'size': 'Large', 'match': 'match-30', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 3', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': ''}",
|
|
||||||
hiRocketSuccessTeleop,,,,High
|
|
||||||
match,,,,match-51
|
|
||||||
endingHab,,,,L3
|
|
||||||
startingHatch,,,,Hab I
|
|
||||||
|
|
@ -1,35 +1,5 @@
|
|||||||
sandstormRocketCargoFailure,0,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,,0
|
0,0,0,,0,0,,slow,,team-2358,L1,,2,0,0,,0,0,,0,,,,0,,0,0,0,,,L1,match-13,,,0
|
||||||
sandstormRocketHatchSuccess,0,,,0
|
,,,Neither,,,IDK,slow,,team-2358,None,None,,,,N/A,,,N/A,,Hab I,None,No,,Neither,,,,None,Weak,,match-27,N/A,None,
|
||||||
strongMediumTeleop,,Neither,Hatch,
|
,,,Hatch,,,Medium,Medium,,team-2358,None,None,,,,N/A,,,Low,,Hab I,None,No,,Neither,,,,Cargo,Weak,,match-35,N/A,L1,
|
||||||
teleOpCargoShipHatchFailure,0,,,0
|
0,0,0,,0,0,,slow,,team-2358,L1,,1,0,0,,0,0,,0,,,,0,,0,0,1,,,None,match-9,,,0
|
||||||
sandstormRocketCargoSuccess,0,,,0
|
|
||||||
size,,IDK,Medium,
|
|
||||||
speed,slow,slow,Medium,slow
|
|
||||||
strategy,,,,
|
|
||||||
teamDBRef,team-2358,team-2358,team-2358,team-2358
|
|
||||||
sandstormCross,L1,None,None,L1
|
|
||||||
sandstormCrossBonus,,None,None,
|
|
||||||
teleOpCargoShipHatchSuccess,2,,,1
|
|
||||||
teleOpRocketHatchSuccess,0,,,0
|
|
||||||
sandstormCargoShipCargoFailure,0,,,0
|
|
||||||
lowRocketSuccessTeleop,,N/A,N/A,
|
|
||||||
teleOpRocketHatchFailure,0,,,0
|
|
||||||
teleOpRocketCargoFailure,0,,,0
|
|
||||||
cargoSuccessTeleop,,N/A,Low,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,,0
|
|
||||||
startingHatch,,Hab I,Hab I,
|
|
||||||
fillChoice,,None,None,
|
|
||||||
functional,,No,No,
|
|
||||||
sandstormCargoShipCargoSuccess,0,,,0
|
|
||||||
strongMedium,,Neither,Neither,
|
|
||||||
teleOpCargoShipCargoFailure,0,,,0
|
|
||||||
sandstormRocketHatchFailure,0,,,0
|
|
||||||
sandstormCargoShipHatchFailure,0,,,1
|
|
||||||
fillChoiceTeleop,,None,Cargo,
|
|
||||||
contrubution,,Weak,Weak,
|
|
||||||
HABClimb,L1,,,None
|
|
||||||
match,match-13,match-27,match-35,match-9
|
|
||||||
hiRocketSuccessTeleop,,N/A,N/A,
|
|
||||||
endingHab,,None,L1,
|
|
||||||
teleOpCargoShipCargoSuccess,0,,,0
|
|
||||||
|
|
@ -1,19 +1,4 @@
|
|||||||
sandstormCrossBonus,,L2,L1
|
sandstormCrossBonus,strongMediumTeleop,fillChoiceTeleop,cargoSuccessTeleop,contrubution,functional,lowRocketSuccessTeleop,startingHatch,nTG6cThsi9TB9mTkcwuo5bKEo9B3,size,speed,hiRocketSuccessTeleop,strategy,match,fillChoice,endingHab,teamDBRef,strongMedium,sandstormCross
|
||||||
strongMediumTeleop,,Hatch,Neither
|
,,,,,,,,"{'notes': '', 'contribution': 'Great', 'fillChoice': 'Cargo', 'strategy': 'ball in cargo ship ', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2451', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-23', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}",,,,,,,,,,
|
||||||
fillChoiceTeleop,,High Rocket,Cargo
|
L2,Hatch,High Rocket,Mid,Strong,Yes,High,Hab II,,Small,Medium,High,"Cargo ship, then rocket hatch",match-35,Cargo,L1,team-2451,Ball,L2
|
||||||
cargoSuccessTeleop,,Mid,High
|
L1,Neither,Cargo,High,Equal,Yes,N/A,Hab I,,Medium,Ludicrous,N/A,,match-41,Cargo,None,team-2451,Ball,L1
|
||||||
contrubution,,Strong,Equal
|
|
||||||
functional,,Yes,Yes
|
|
||||||
lowRocketSuccessTeleop,,High,N/A
|
|
||||||
startingHatch,,Hab II,Hab I
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,"{'notes': '', 'contribution': 'Great', 'fillChoice': 'Cargo', 'strategy': 'ball in cargo ship ', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-2451', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-23', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}",,
|
|
||||||
size,,Small,Medium
|
|
||||||
speed,,Medium,Ludicrous
|
|
||||||
hiRocketSuccessTeleop,,High,N/A
|
|
||||||
strategy,,"Cargo ship, then rocket hatch",
|
|
||||||
match,,match-35,match-41
|
|
||||||
fillChoice,,Cargo,Cargo
|
|
||||||
endingHab,,L1,None
|
|
||||||
teamDBRef,,team-2451,team-2451
|
|
||||||
strongMedium,,Ball,Ball
|
|
||||||
sandstormCross,,L2,L1
|
|
||||||
|
|
@ -1,38 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,0,,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,jouGPhPF0qME5wNIbd86MzYFsGw2,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,9fv7QhcLPsfU59sRrPq7LcJlD8J3,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,functional,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,TGTz9IhKPoQnv6CjEyHEJeqwhss1,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,
|
0,0,0,,0,0,,,slow,,team-2709,None,,0,0,0,,0,0,,0,,,,0,,,0,0,0,,,None,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-2709', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-13', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",match-13,,,0
|
||||||
sandstormRocketHatchSuccess,0,,
|
,,,Neither,,,Small,,Medium,No mechanisms to do anything,team-2709,None,None,,,,N/A,,,N/A,,Hab II,"{'notes': 'potato', 'contribution': '', 'fillChoice': '', 'strategy': 'wasn’t even defensive, didn’t have a grabber . absolutely useless', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-2709', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-31', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",None,,Neither,Yes,,,,None,Weak,,,match-31,N/A,None,
|
||||||
strongMediumTeleop,,Neither,
|
,,,,,,,"{'notes': 'tried hab 3 via ramp, failed', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2709', 'speed': '', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Idk', 'match': 'match-8', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,,
|
|
||||||
sandstormRocketCargoSuccess,0,,
|
|
||||||
size,,Small,
|
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,,"{'notes': 'tried hab 3 via ramp, failed', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2709', 'speed': '', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Idk', 'match': 'match-8', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}"
|
|
||||||
speed,slow,Medium,
|
|
||||||
strategy,,No mechanisms to do anything,
|
|
||||||
teamDBRef,team-2709,team-2709,
|
|
||||||
sandstormCross,None,None,
|
|
||||||
sandstormCrossBonus,,None,
|
|
||||||
teleOpCargoShipHatchSuccess,0,,
|
|
||||||
teleOpRocketHatchSuccess,0,,
|
|
||||||
sandstormCargoShipCargoFailure,0,,
|
|
||||||
lowRocketSuccessTeleop,,N/A,
|
|
||||||
teleOpRocketHatchFailure,0,,
|
|
||||||
teleOpRocketCargoFailure,0,,
|
|
||||||
cargoSuccessTeleop,,N/A,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,
|
|
||||||
startingHatch,,Hab II,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'notes': 'potato', 'contribution': '', 'fillChoice': '', 'strategy': 'wasn’t even defensive, didn’t have a grabber . absolutely useless', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-2709', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-31', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",
|
|
||||||
fillChoice,,None,
|
|
||||||
sandstormCargoShipCargoSuccess,0,,
|
|
||||||
strongMedium,,Neither,
|
|
||||||
functional,,Yes,
|
|
||||||
teleOpCargoShipCargoFailure,0,,
|
|
||||||
sandstormRocketHatchFailure,0,,
|
|
||||||
sandstormCargoShipHatchFailure,0,,
|
|
||||||
fillChoiceTeleop,,None,
|
|
||||||
contrubution,,Weak,
|
|
||||||
HABClimb,None,,
|
|
||||||
TGTz9IhKPoQnv6CjEyHEJeqwhss1,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-2709', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-13', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,
|
|
||||||
match,match-13,match-31,
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
endingHab,,None,
|
|
||||||
teleOpCargoShipCargoSuccess,0,,
|
|
||||||
|
|
@ -1,36 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,strongMediumTeleop,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,teleOpCargoShipCargoSuccess,functional,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,TGTz9IhKPoQnv6CjEyHEJeqwhss1,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
teleOpRocketCargoSuccess,,,0
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"{'notes': 'they didn’t move from HAB 1 at all during this match', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-2725', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-12', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,
|
||||||
strongMediumTeleop,,Neither,
|
,,Neither,,,,Medium,Medium,Defense,team-2725,None,None,,,,N/A,,,N/A,,,No,None,,Neither,,,,None,Weak,,,N/A,match-47,None,Hab I
|
||||||
sandstormRocketHatchSuccess,,,0
|
0,0,,0,0,0,,slow,,team-2725,None,,0,0,0,,0,0,,0,0,,,0,,0,0,0,,,None,,,match-8,,
|
||||||
teleOpCargoShipHatchFailure,,,0
|
|
||||||
sandstormRocketCargoSuccess,,,0
|
|
||||||
size,,Medium,
|
|
||||||
speed,,Medium,slow
|
|
||||||
strategy,,Defense,
|
|
||||||
teamDBRef,,team-2725,team-2725
|
|
||||||
sandstormCross,,None,None
|
|
||||||
sandstormCrossBonus,,None,
|
|
||||||
teleOpCargoShipHatchSuccess,,,0
|
|
||||||
teleOpRocketHatchSuccess,,,0
|
|
||||||
sandstormCargoShipCargoFailure,,,0
|
|
||||||
lowRocketSuccessTeleop,,N/A,
|
|
||||||
teleOpRocketHatchFailure,,,0
|
|
||||||
teleOpRocketCargoFailure,,,0
|
|
||||||
cargoSuccessTeleop,,N/A,
|
|
||||||
sandstormCargoShipHatchSuccess,,,0
|
|
||||||
teleOpCargoShipCargoSuccess,,,0
|
|
||||||
functional,,No,
|
|
||||||
fillChoice,,None,
|
|
||||||
sandstormCargoShipCargoSuccess,,,0
|
|
||||||
strongMedium,,Neither,
|
|
||||||
teleOpCargoShipCargoFailure,,,0
|
|
||||||
sandstormRocketHatchFailure,,,0
|
|
||||||
sandstormCargoShipHatchFailure,,,0
|
|
||||||
fillChoiceTeleop,,None,
|
|
||||||
contrubution,,Weak,
|
|
||||||
HABClimb,,,None
|
|
||||||
TGTz9IhKPoQnv6CjEyHEJeqwhss1,"{'notes': 'they didn’t move from HAB 1 at all during this match', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-2725', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-12', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
match,,match-47,match-8
|
|
||||||
endingHab,,None,
|
|
||||||
startingHatch,,Hab I,
|
|
||||||
|
|
@ -1,37 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,strongMediumTeleop,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,nTG6cThsi9TB9mTkcwuo5bKEo9B3,size,sandstormRocketCargoSuccess,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,klQQqapPjwO3jnpN8Dieequh3OI3,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,teleOpCargoShipCargoSuccess,functional,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
teleOpRocketCargoSuccess,,,0
|
,,,,,,,,,,,,,,,,,,,"{'contribution': 'Equal', 'notes': 'Attempt at hab 3', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2830', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'match': 'match-12', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,Ball,
|
,,Ball,,,"{'notes': '', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': 'cargo balls in cargo ship ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-2830', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-25', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}",IDK,,Medium,Cargo ship hatch/fill,team-2830,L2,L2,,,,N/A,,,,Mid,,,Yes,None,,Hatch,,,,Cargo,Strong,,N/A,match-25,L2,Hab II
|
||||||
sandstormRocketHatchSuccess,,,0
|
0,0,,0,0,,,0,Fast,,team-2830,L1,,0,1,0,,0,0,,,1,2,,,0,,0,0,0,,,L1,,match-3,,
|
||||||
teleOpCargoShipHatchFailure,,,0
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,"{'notes': '', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': 'cargo balls in cargo ship ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-2830', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-25', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}",
|
|
||||||
size,,IDK,
|
|
||||||
sandstormRocketCargoSuccess,,,0
|
|
||||||
speed,,Medium,Fast
|
|
||||||
strategy,,Cargo ship hatch/fill,
|
|
||||||
teamDBRef,,team-2830,team-2830
|
|
||||||
sandstormCross,,L2,L1
|
|
||||||
sandstormCrossBonus,,L2,
|
|
||||||
teleOpCargoShipHatchSuccess,,,0
|
|
||||||
teleOpRocketHatchSuccess,,,1
|
|
||||||
sandstormCargoShipCargoFailure,,,0
|
|
||||||
lowRocketSuccessTeleop,,N/A,
|
|
||||||
teleOpRocketHatchFailure,,,0
|
|
||||||
teleOpRocketCargoFailure,,,0
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,"{'contribution': 'Equal', 'notes': 'Attempt at hab 3', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-2830', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'match': 'match-12', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,
|
|
||||||
cargoSuccessTeleop,,Mid,
|
|
||||||
sandstormCargoShipHatchSuccess,,,1
|
|
||||||
teleOpCargoShipCargoSuccess,,,2
|
|
||||||
functional,,Yes,
|
|
||||||
fillChoice,,None,
|
|
||||||
sandstormCargoShipCargoSuccess,,,0
|
|
||||||
strongMedium,,Hatch,
|
|
||||||
teleOpCargoShipCargoFailure,,,0
|
|
||||||
sandstormRocketHatchFailure,,,0
|
|
||||||
sandstormCargoShipHatchFailure,,,0
|
|
||||||
fillChoiceTeleop,,Cargo,
|
|
||||||
contrubution,,Strong,
|
|
||||||
HABClimb,,,L1
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
match,,match-25,match-3
|
|
||||||
endingHab,,L2,
|
|
||||||
startingHatch,,Hab II,
|
|
||||||
|
|
@ -1,36 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,0,,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,TGTz9IhKPoQnv6CjEyHEJeqwhss1,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,
|
0,0,0,,1,0,,slow,,team-3061,None,,1,1,0,,0,0,,1,,,,0,,0,0,0,,,L1,,match-1,,,0
|
||||||
sandstormRocketHatchSuccess,0,,
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': 'really good at defense', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-3061', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-16', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': '', 'endingHab': 'Hab 2', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,
|
||||||
strongMediumTeleop,,,Hatch
|
,,,Hatch,,,Small,slow,Hatches on bottom level,team-3061,L2,L2,,,,Mid,,,Mid,,Hab II,Cargo,Yes,,Hatch,,,,Cargo,Equal,,,match-54,N/A,L2,
|
||||||
teleOpCargoShipHatchFailure,1,,
|
|
||||||
sandstormRocketCargoSuccess,0,,
|
|
||||||
size,,,Small
|
|
||||||
speed,slow,,slow
|
|
||||||
strategy,,,Hatches on bottom level
|
|
||||||
teamDBRef,team-3061,,team-3061
|
|
||||||
sandstormCross,None,,L2
|
|
||||||
sandstormCrossBonus,,,L2
|
|
||||||
teleOpCargoShipHatchSuccess,1,,
|
|
||||||
teleOpRocketHatchSuccess,1,,
|
|
||||||
sandstormCargoShipCargoFailure,0,,
|
|
||||||
lowRocketSuccessTeleop,,,Mid
|
|
||||||
teleOpRocketHatchFailure,0,,
|
|
||||||
teleOpRocketCargoFailure,0,,
|
|
||||||
cargoSuccessTeleop,,,Mid
|
|
||||||
sandstormCargoShipHatchSuccess,1,,
|
|
||||||
startingHatch,,,Hab II
|
|
||||||
fillChoice,,,Cargo
|
|
||||||
functional,,,Yes
|
|
||||||
sandstormCargoShipCargoSuccess,0,,
|
|
||||||
strongMedium,,,Hatch
|
|
||||||
teleOpCargoShipCargoFailure,0,,
|
|
||||||
sandstormRocketHatchFailure,0,,
|
|
||||||
sandstormCargoShipHatchFailure,0,,
|
|
||||||
fillChoiceTeleop,,,Cargo
|
|
||||||
contrubution,,,Equal
|
|
||||||
HABClimb,L1,,
|
|
||||||
TGTz9IhKPoQnv6CjEyHEJeqwhss1,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': 'really good at defense', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-3061', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-16', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': '', 'endingHab': 'Hab 2', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",
|
|
||||||
match,match-1,,match-54
|
|
||||||
hiRocketSuccessTeleop,,,N/A
|
|
||||||
endingHab,,,L2
|
|
||||||
teleOpCargoShipCargoSuccess,0,,
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
|||||||
sandstormRocketCargoFailure,0,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,sandstormCargoShipHatchSuccess,e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,
|
0,0,0,0,0,Medium,team-3067,None,0,0,0,0,0,0,,0,0,0,0,None,match-10,0
|
||||||
sandstormRocketHatchSuccess,0,
|
,,,,,,,,,,,,,,"{'notes': '', 'contribution': '', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-3067', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-28', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,
|
|
||||||
sandstormRocketCargoSuccess,0,
|
|
||||||
speed,Medium,
|
|
||||||
teamDBRef,team-3067,
|
|
||||||
sandstormCross,None,
|
|
||||||
teleOpCargoShipHatchSuccess,0,
|
|
||||||
teleOpRocketHatchSuccess,0,
|
|
||||||
sandstormCargoShipCargoFailure,0,
|
|
||||||
teleOpRocketHatchFailure,0,
|
|
||||||
teleOpRocketCargoFailure,0,
|
|
||||||
sandstormCargoShipHatchSuccess,0,
|
|
||||||
e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,,"{'notes': '', 'contribution': '', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-3067', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-28', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}"
|
|
||||||
sandstormCargoShipCargoSuccess,0,
|
|
||||||
teleOpCargoShipCargoFailure,0,
|
|
||||||
sandstormRocketHatchFailure,0,
|
|
||||||
sandstormCargoShipHatchFailure,0,
|
|
||||||
HABClimb,None,
|
|
||||||
match,match-10,
|
|
||||||
teleOpCargoShipCargoSuccess,0,
|
|
||||||
|
|
@ -1,37 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,0,,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,nTG6cThsi9TB9mTkcwuo5bKEo9B3,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,9fv7QhcLPsfU59sRrPq7LcJlD8J3,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,functional,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,
|
0,0,0,,0,0,,,slow,,team-3110,None,,0,0,0,,0,0,,0,,"{'contribution': '', 'notes': 'wasn’t on the field ', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-3110', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-15', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'startingHatch': '', 'lowRocketSuccessTeleop': ''}",,0,,,0,0,0,,,None,match-15,,,0
|
||||||
sandstormRocketHatchSuccess,0,,
|
,,,,,,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'the robot didn’t do anyrhing', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-3110', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-26', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,,Neither
|
,,,Neither,,,,IDK,slow,Limited movement,team-3110,None,None,,,,N/A,,,N/A,,Hab I,,None,,Neither,No,,,,None,Weak,,match-40,N/A,None,
|
||||||
teleOpCargoShipHatchFailure,0,,
|
|
||||||
sandstormRocketCargoSuccess,0,,
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'the robot didn’t do anyrhing', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-3110', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-26', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",
|
|
||||||
size,,,IDK
|
|
||||||
speed,slow,,slow
|
|
||||||
strategy,,,Limited movement
|
|
||||||
teamDBRef,team-3110,,team-3110
|
|
||||||
sandstormCross,None,,None
|
|
||||||
sandstormCrossBonus,,,None
|
|
||||||
teleOpCargoShipHatchSuccess,0,,
|
|
||||||
teleOpRocketHatchSuccess,0,,
|
|
||||||
sandstormCargoShipCargoFailure,0,,
|
|
||||||
lowRocketSuccessTeleop,,,N/A
|
|
||||||
teleOpRocketHatchFailure,0,,
|
|
||||||
teleOpRocketCargoFailure,0,,
|
|
||||||
cargoSuccessTeleop,,,N/A
|
|
||||||
sandstormCargoShipHatchSuccess,0,,
|
|
||||||
startingHatch,,,Hab I
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,"{'contribution': '', 'notes': 'wasn’t on the field ', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-3110', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-15', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'startingHatch': '', 'lowRocketSuccessTeleop': ''}",,
|
|
||||||
fillChoice,,,None
|
|
||||||
sandstormCargoShipCargoSuccess,0,,
|
|
||||||
strongMedium,,,Neither
|
|
||||||
functional,,,No
|
|
||||||
teleOpCargoShipCargoFailure,0,,
|
|
||||||
sandstormRocketHatchFailure,0,,
|
|
||||||
sandstormCargoShipHatchFailure,0,,
|
|
||||||
fillChoiceTeleop,,,None
|
|
||||||
contrubution,,,Weak
|
|
||||||
HABClimb,None,,
|
|
||||||
match,match-15,,match-40
|
|
||||||
hiRocketSuccessTeleop,,,N/A
|
|
||||||
endingHab,,,None
|
|
||||||
teleOpCargoShipCargoSuccess,0,,
|
|
||||||
|
|
@ -1,21 +1,7 @@
|
|||||||
strongMediumTeleop,,,Both,,Ball,
|
strongMediumTeleop,jouGPhPF0qME5wNIbd86MzYFsGw2,size,nTG6cThsi9TB9mTkcwuo5bKEo9B3,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,lowRocketSuccessTeleop,cargoSuccessTeleop,fillChoice,functional,9fv7QhcLPsfU59sRrPq7LcJlD8J3,strongMedium,fillChoiceTeleop,contrubution,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': 'quick at reloading from drive station ', 'strongMedium': '', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-3488', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-15', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab I'}",,,,
|
,,,,,,,,,,,,,"{'contribution': 'Equal', 'notes': 'sucks at hatches, fast robot with slow driver', 'cargoSuccess': '', 'fillChoice': '', 'cargoSuccessTeleop': 'High', 'strongMedium': '', 'teamDBRef': 'team-3488', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': 'Medium', 'match': 'match-1', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'startingHatch': 'None', 'lowRocketSuccessTeleop': '', 'hiRocketSuccess': 'N/A'}",,,,,,,
|
||||||
size,,,IDK,,Medium,
|
,"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': 'quick at reloading from drive station ', 'strongMedium': '', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-3488', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-15', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,,,,"{'notes': '', 'contribution': 'Great', 'fillChoice': 'Cargo', 'strategy': 'fill cargo shuo', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-3488', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'match': 'match-45', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
Both,,IDK,,Ludicrous,,team-3488,L1,L1,N/A,Mid,Cargo,No,,Hatch,Cargo,Equal,N/A,match-24,L1,Hab I
|
||||||
speed,,,Ludicrous,,Medium,
|
,,,,,,,,,,,,,"{'notes': '', 'contribution': '', 'fillChoice': 'None', 'strategy': 'have auto drive to fill zone, quickly load cargo', 'strongMedium': '', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-3488', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-28', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,
|
||||||
strategy,,,,,Ship,
|
Ball,,Medium,,Medium,Ship,team-3488,L1,L1,N/A,Mid,Cargo,Yes,,Ball,Cargo,Equal,N/A,match-37,L1,Hab I
|
||||||
teamDBRef,,,team-3488,,team-3488,
|
,,,"{'notes': '', 'contribution': 'Great', 'fillChoice': 'Cargo', 'strategy': 'fill cargo shuo', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-3488', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'match': 'match-45', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,
|
||||||
sandstormCross,,,L1,,L1,
|
|
||||||
sandstormCrossBonus,,,L1,,L1,
|
|
||||||
lowRocketSuccessTeleop,,,N/A,,N/A,
|
|
||||||
cargoSuccessTeleop,,,Mid,,Mid,
|
|
||||||
fillChoice,,,Cargo,,Cargo,
|
|
||||||
functional,,,No,,Yes,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,"{'contribution': 'Equal', 'notes': 'sucks at hatches, fast robot with slow driver', 'cargoSuccess': '', 'fillChoice': '', 'cargoSuccessTeleop': 'High', 'strongMedium': '', 'teamDBRef': 'team-3488', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': 'Medium', 'match': 'match-1', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'startingHatch': 'None', 'lowRocketSuccessTeleop': '', 'hiRocketSuccess': 'N/A'}",,,"{'notes': '', 'contribution': '', 'fillChoice': 'None', 'strategy': 'have auto drive to fill zone, quickly load cargo', 'strongMedium': '', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-3488', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-28', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,
|
|
||||||
strongMedium,,,Hatch,,Ball,
|
|
||||||
fillChoiceTeleop,,,Cargo,,Cargo,
|
|
||||||
contrubution,,,Equal,,Equal,
|
|
||||||
hiRocketSuccessTeleop,,,N/A,,N/A,
|
|
||||||
match,,,match-24,,match-37,
|
|
||||||
endingHab,,,L1,,L1,
|
|
||||||
startingHatch,,,Hab I,,Hab I,
|
|
||||||
|
|
@ -1,37 +1,4 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,"{'contribution': '', 'notes': '', 'fillChoice': 'Cargo', 'strategy': '', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-3695', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-26', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'endingHab': '', 'functional': 'Yes', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}",
|
gmkR7hN4D1fQguey5X5V48d3PhO2,sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,klQQqapPjwO3jnpN8Dieequh3OI3,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
sandstormRocketCargoFailure,0,,0
|
,0,2,0,,0,0,,slow,,team-3695,L1,,1,3,0,,0,0,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'attempted hab 3', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-3695', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'size': 'Medium', 'match': 'match-14', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': 'High'}",,0,,,,0,,0,0,0,,,L1,match-14,,,2
|
||||||
teleOpRocketCargoSuccess,2,,3
|
"{'contribution': '', 'notes': '', 'fillChoice': 'Cargo', 'strategy': '', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-3695', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-26', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'endingHab': '', 'functional': 'Yes', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}",,,,Ball,,,Jumbo,Fast,Fill cargo ship,team-3695,L2,L2,,,,N/A,,,,High,,Hab II,Cargo,Yes,,Hatch,,,,Cargo,Strong,,match-26,N/A,L3,
|
||||||
sandstormRocketHatchSuccess,0,,0
|
,0,3,0,,0,0,,slow,,team-3695,L1,,0,3,0,,0,0,,,0,,,,0,,0,0,0,,,L1,match-5,,,0
|
||||||
strongMediumTeleop,,Ball,
|
|
||||||
teleOpCargoShipHatchFailure,0,,0
|
|
||||||
sandstormRocketCargoSuccess,0,,0
|
|
||||||
size,,Jumbo,
|
|
||||||
speed,slow,Fast,slow
|
|
||||||
strategy,,Fill cargo ship,
|
|
||||||
teamDBRef,team-3695,team-3695,team-3695
|
|
||||||
sandstormCross,L1,L2,L1
|
|
||||||
sandstormCrossBonus,,L2,
|
|
||||||
teleOpCargoShipHatchSuccess,1,,0
|
|
||||||
teleOpRocketHatchSuccess,3,,3
|
|
||||||
sandstormCargoShipCargoFailure,0,,0
|
|
||||||
lowRocketSuccessTeleop,,N/A,
|
|
||||||
teleOpRocketHatchFailure,0,,0
|
|
||||||
teleOpRocketCargoFailure,0,,0
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'attempted hab 3', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-3695', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'size': 'Medium', 'match': 'match-14', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': 'High'}",,
|
|
||||||
cargoSuccessTeleop,,High,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,0
|
|
||||||
startingHatch,,Hab II,
|
|
||||||
fillChoice,,Cargo,
|
|
||||||
functional,,Yes,
|
|
||||||
sandstormCargoShipCargoSuccess,0,,0
|
|
||||||
strongMedium,,Hatch,
|
|
||||||
teleOpCargoShipCargoFailure,0,,0
|
|
||||||
sandstormRocketHatchFailure,0,,0
|
|
||||||
sandstormCargoShipHatchFailure,0,,0
|
|
||||||
fillChoiceTeleop,,Cargo,
|
|
||||||
contrubution,,Strong,
|
|
||||||
HABClimb,L1,,L1
|
|
||||||
match,match-14,match-26,match-5
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
endingHab,,L3,
|
|
||||||
teleOpCargoShipCargoSuccess,2,,0
|
|
||||||
|
|
@ -1,37 +1,5 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,,,"{'notes': '', 'contribution': '', 'fillChoice': 'Cargo', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Ball', 'teamDBRef': 'team-3734', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Medium', 'size': 'Medium', 'match': 'match-5', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'N/A'}"
|
gmkR7hN4D1fQguey5X5V48d3PhO2,sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,9fv7QhcLPsfU59sRrPq7LcJlD8J3,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,functional,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
sandstormRocketCargoFailure,0,,,
|
,0,0,0,,0,0,,slow,,team-3734,L1,,0,0,0,,0,0,,0,,,,1,,,0,0,0,,,L1,match-19,,,3
|
||||||
teleOpRocketCargoSuccess,0,,,
|
,,,,Ball,,,Medium,Medium,Cargo ship cargo,team-3734,L1,L1,,,,N/A,,,Mid,,Hab I,"{'notes': 'awesome autonomous, ball into cargo. slow mechanics with high accuracy', 'contribution': '', 'fillChoice': 'Cargo', 'strategy': 'Defensive, yet still placed balls in cargo ', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-3734', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-29', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",Cargo,,Ball,Yes,,,,Cargo,Strong,,match-29,N/A,L1,
|
||||||
sandstormRocketHatchSuccess,0,,,
|
,,,,Ball,,,IDK,Medium,,team-3734,L1,L1,,,,N/A,,,Mid,,Hab I,,Cargo,,Ball,Yes,,,,Cargo,IDK,,match-36,N/A,L1,
|
||||||
strongMediumTeleop,,Ball,Ball,
|
"{'notes': '', 'contribution': '', 'fillChoice': 'Cargo', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Ball', 'teamDBRef': 'team-3734', 'hiRocketSuccessTeleop': 'N/A', 'speed': 'Medium', 'size': 'Medium', 'match': 'match-5', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'N/A'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,,,
|
|
||||||
sandstormRocketCargoSuccess,0,,,
|
|
||||||
size,,Medium,IDK,
|
|
||||||
speed,slow,Medium,Medium,
|
|
||||||
strategy,,Cargo ship cargo,,
|
|
||||||
teamDBRef,team-3734,team-3734,team-3734,
|
|
||||||
sandstormCross,L1,L1,L1,
|
|
||||||
sandstormCrossBonus,,L1,L1,
|
|
||||||
teleOpCargoShipHatchSuccess,0,,,
|
|
||||||
teleOpRocketHatchSuccess,0,,,
|
|
||||||
sandstormCargoShipCargoFailure,0,,,
|
|
||||||
lowRocketSuccessTeleop,,N/A,N/A,
|
|
||||||
teleOpRocketHatchFailure,0,,,
|
|
||||||
teleOpRocketCargoFailure,0,,,
|
|
||||||
cargoSuccessTeleop,,Mid,Mid,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,,
|
|
||||||
startingHatch,,Hab I,Hab I,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'notes': 'awesome autonomous, ball into cargo. slow mechanics with high accuracy', 'contribution': '', 'fillChoice': 'Cargo', 'strategy': 'Defensive, yet still placed balls in cargo ', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-3734', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-29', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",,
|
|
||||||
fillChoice,,Cargo,Cargo,
|
|
||||||
sandstormCargoShipCargoSuccess,1,,,
|
|
||||||
strongMedium,,Ball,Ball,
|
|
||||||
functional,,Yes,Yes,
|
|
||||||
teleOpCargoShipCargoFailure,0,,,
|
|
||||||
sandstormRocketHatchFailure,0,,,
|
|
||||||
sandstormCargoShipHatchFailure,0,,,
|
|
||||||
fillChoiceTeleop,,Cargo,Cargo,
|
|
||||||
contrubution,,Strong,IDK,
|
|
||||||
HABClimb,L1,,,
|
|
||||||
match,match-19,match-29,match-36,
|
|
||||||
hiRocketSuccessTeleop,,N/A,N/A,
|
|
||||||
endingHab,,L1,L1,
|
|
||||||
teleOpCargoShipCargoSuccess,3,,,
|
|
||||||
|
|
@ -1,37 +1,6 @@
|
|||||||
sandstormRocketCargoFailure,,,,0,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,strongMediumTeleop,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,teleOpCargoShipCargoSuccess,9fv7QhcLPsfU59sRrPq7LcJlD8J3,functional,fillChoice,strongMedium,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,TGTz9IhKPoQnv6CjEyHEJeqwhss1,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
teleOpRocketCargoSuccess,,,,0,
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"{'notes': '', 'contribution': '', 'fillChoice': 'None', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-4096', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-17', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,
|
||||||
strongMediumTeleop,,,Ball,,Neither
|
,,,,,,,,,,,,,,,,,,,,,"{'notes': 'versatile, accurate. of course we want them.', 'contribution': 'Great', 'fillChoice': 'Cargo', 'strategy': 'place hatches on the cargo, balls in rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-4096', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-30', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",,,,,,,,,,,,,,,
|
||||||
sandstormRocketHatchSuccess,,,,0,
|
,,Ball,,,,Large,Fast,"Ship, L3 climb via deployed ranp",team-4096,L1,L1,,,,N/A,,,High,,,,Yes,None,Neither,,,,,Cargo,Strong,,,N/A,match-39,L3,Hab I
|
||||||
teleOpCargoShipHatchFailure,,,,1,
|
0,0,,0,1,0,,Fast,,team-4096,L1,,1,1,0,,0,0,,0,2,,,,,0,0,0,0,,,L1,,,match-4,,
|
||||||
sandstormRocketCargoSuccess,,,,0,
|
,,Neither,,,,Medium,Fast,,team-4096,L1,L1,,,,N/A,,,Low,,,,No,Cargo,Neither,,,,,Cargo,Weak,,,N/A,match-46,None,Hab I
|
||||||
size,,,Large,,Medium
|
|
||||||
speed,,,Fast,Fast,Fast
|
|
||||||
strategy,,,"Ship, L3 climb via deployed ranp",,
|
|
||||||
teamDBRef,,,team-4096,team-4096,team-4096
|
|
||||||
sandstormCross,,,L1,L1,L1
|
|
||||||
sandstormCrossBonus,,,L1,,L1
|
|
||||||
teleOpCargoShipHatchSuccess,,,,1,
|
|
||||||
teleOpRocketHatchSuccess,,,,1,
|
|
||||||
sandstormCargoShipCargoFailure,,,,0,
|
|
||||||
lowRocketSuccessTeleop,,,N/A,,N/A
|
|
||||||
teleOpRocketHatchFailure,,,,0,
|
|
||||||
teleOpRocketCargoFailure,,,,0,
|
|
||||||
cargoSuccessTeleop,,,High,,Low
|
|
||||||
sandstormCargoShipHatchSuccess,,,,0,
|
|
||||||
teleOpCargoShipCargoSuccess,,,,2,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'notes': 'versatile, accurate. of course we want them.', 'contribution': 'Great', 'fillChoice': 'Cargo', 'strategy': 'place hatches on the cargo, balls in rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-4096', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-30', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",,,
|
|
||||||
functional,,,Yes,,No
|
|
||||||
fillChoice,,,None,,Cargo
|
|
||||||
strongMedium,,,Neither,,Neither
|
|
||||||
sandstormCargoShipCargoSuccess,,,,0,
|
|
||||||
teleOpCargoShipCargoFailure,,,,0,
|
|
||||||
sandstormRocketHatchFailure,,,,0,
|
|
||||||
sandstormCargoShipHatchFailure,,,,0,
|
|
||||||
fillChoiceTeleop,,,Cargo,,Cargo
|
|
||||||
contrubution,,,Strong,,Weak
|
|
||||||
HABClimb,,,,L1,
|
|
||||||
TGTz9IhKPoQnv6CjEyHEJeqwhss1,"{'notes': '', 'contribution': '', 'fillChoice': 'None', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-4096', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': '', 'match': 'match-17', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,
|
|
||||||
hiRocketSuccessTeleop,,,N/A,,N/A
|
|
||||||
match,,,match-39,match-4,match-46
|
|
||||||
endingHab,,,L3,,None
|
|
||||||
startingHatch,,,Hab I,,Hab I
|
|
||||||
|
|
@ -1,37 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,0,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,klQQqapPjwO3jnpN8Dieequh3OI3,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,9fv7QhcLPsfU59sRrPq7LcJlD8J3,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,functional,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,0
|
0,0,0,,0,0,,Ludicrous,,team-4156,L1,,0,1,0,,0,0,,,0,,"{'contribution': 'Equal', 'notes': 'awkward grabber', 'fillChoice': '', 'strategy': 'place balls in cargo, solely offensive', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-4156', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'match': 'match-16', 'size': '', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': '', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': ''}",,0,,,0,0,0,,,L1,match-16,,,3
|
||||||
sandstormRocketHatchSuccess,0,,0
|
,,,Ball,,,Large,slow,,team-4156,L2,L2,,,,N/A,,,"{'notes': 'super cool hab 3 climbing', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-4156', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-28', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 3', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",Low,,Hab II,,Cargo,,Neither,Yes,,,,Cargo,Equal,,match-28,N/A,L3,
|
||||||
strongMediumTeleop,,Ball,
|
0,0,0,,0,0,,slow,,team-4156,L1,,0,3,0,,0,0,,,0,,,,0,,,0,0,0,,,None,match-5,,,0
|
||||||
teleOpCargoShipHatchFailure,0,,0
|
|
||||||
sandstormRocketCargoSuccess,0,,0
|
|
||||||
size,,Large,
|
|
||||||
speed,Ludicrous,slow,slow
|
|
||||||
strategy,,,
|
|
||||||
teamDBRef,team-4156,team-4156,team-4156
|
|
||||||
sandstormCross,L1,L2,L1
|
|
||||||
sandstormCrossBonus,,L2,
|
|
||||||
teleOpCargoShipHatchSuccess,0,,0
|
|
||||||
teleOpRocketHatchSuccess,1,,3
|
|
||||||
sandstormCargoShipCargoFailure,0,,0
|
|
||||||
lowRocketSuccessTeleop,,N/A,
|
|
||||||
teleOpRocketHatchFailure,0,,0
|
|
||||||
teleOpRocketCargoFailure,0,,0
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,,"{'notes': 'super cool hab 3 climbing', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-4156', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-28', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 3', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",
|
|
||||||
cargoSuccessTeleop,,Low,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,0
|
|
||||||
startingHatch,,Hab II,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,"{'contribution': 'Equal', 'notes': 'awkward grabber', 'fillChoice': '', 'strategy': 'place balls in cargo, solely offensive', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-4156', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'match': 'match-16', 'size': '', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': '', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': ''}",,
|
|
||||||
fillChoice,,Cargo,
|
|
||||||
sandstormCargoShipCargoSuccess,0,,0
|
|
||||||
strongMedium,,Neither,
|
|
||||||
functional,,Yes,
|
|
||||||
teleOpCargoShipCargoFailure,0,,0
|
|
||||||
sandstormRocketHatchFailure,0,,0
|
|
||||||
sandstormCargoShipHatchFailure,0,,0
|
|
||||||
fillChoiceTeleop,,Cargo,
|
|
||||||
contrubution,,Equal,
|
|
||||||
HABClimb,L1,,None
|
|
||||||
match,match-16,match-28,match-5
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
endingHab,,L3,
|
|
||||||
teleOpCargoShipCargoSuccess,3,,0
|
|
||||||
|
|
@ -1,2 +1,3 @@
|
|||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,"{'contribution': 'Weak', 'notes': 'did not put hatch on in storm', 'fillChoice': '', 'strategy': 'no great strategy. hatch for cargo ship once but was not efficient. then switched to pinning but wasn’t great eirher', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-4292', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-22', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}",
|
nTG6cThsi9TB9mTkcwuo5bKEo9B3,9fv7QhcLPsfU59sRrPq7LcJlD8J3
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'contribution': '', 'notes': 'potato ', 'fillChoice': '', 'cargoSuccess': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-4292', 'hiRocketSuccessTeleop': '', 'speed': '', 'lowRocketSuccess': '', 'match': 'match-3', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': '', 'hiRocketSuccess': ''}"
|
"{'contribution': 'Weak', 'notes': 'did not put hatch on in storm', 'fillChoice': '', 'strategy': 'no great strategy. hatch for cargo ship once but was not efficient. then switched to pinning but wasn’t great eirher', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-4292', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-22', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}",
|
||||||
|
,"{'contribution': '', 'notes': 'potato ', 'fillChoice': '', 'cargoSuccess': '', 'cargoSuccessTeleop': '', 'strongMedium': '', 'teamDBRef': 'team-4292', 'hiRocketSuccessTeleop': '', 'speed': '', 'lowRocketSuccess': '', 'match': 'match-3', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': '', 'hiRocketSuccess': ''}"
|
||||||
|
|
@ -1 +1,2 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,"{'contribution': 'Equal', 'notes': 'slow cycle time', 'fillChoice': '', 'strategy': 'fill cargo w balls (speed doesn’t matter)', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Neither', 'teamDBRef': 'team-4296', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-16', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': '', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'N/A'}"
|
gmkR7hN4D1fQguey5X5V48d3PhO2
|
||||||
|
"{'contribution': 'Equal', 'notes': 'slow cycle time', 'fillChoice': '', 'strategy': 'fill cargo w balls (speed doesn’t matter)', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Neither', 'teamDBRef': 'team-4296', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-16', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': '', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'N/A'}"
|
||||||
|
|
@ -1,22 +1,6 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,"{'notes': 'dud, malfunction', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4645', 'speed': '', 'hiRocketSuccessTeleop': '', 'match': 'match-18', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",,,,
|
gmkR7hN4D1fQguey5X5V48d3PhO2,strongMediumTeleop,nTG6cThsi9TB9mTkcwuo5bKEo9B3,jouGPhPF0qME5wNIbd86MzYFsGw2,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,lowRocketSuccessTeleop,klQQqapPjwO3jnpN8Dieequh3OI3,cargoSuccessTeleop,functional,fillChoice,strongMedium,fillChoiceTeleop,contrubution,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
strongMediumTeleop,,,,,Neither
|
"{'notes': 'dud, malfunction', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4645', 'speed': '', 'hiRocketSuccessTeleop': '', 'match': 'match-18', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",,,,,,,,,,,,,,,,,,,,,
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': 'tried to pin opponent i think.', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4645', 'hiRocketSuccessTeleop': '', 'speed': 'Slow', 'match': 'match-34', 'size': 'Medium', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,
|
,,,,,,,,,,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': 'Neither', 'teamDBRef': 'team-4645', 'hiRocketSuccessTeleop': '', 'speed': 'Slow', 'match': 'match-26', 'size': 'Medium', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': 'No', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,,,,,,,
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,,,"{'notes': '', 'contribution': '', 'fillChoice': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'N/A', 'teamDBRef': 'team-4645', 'speed': 'idk', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-4', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",
|
,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': 'tried to pin opponent i think.', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4645', 'hiRocketSuccessTeleop': '', 'speed': 'Slow', 'match': 'match-34', 'size': 'Medium', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,
|
||||||
size,,,,,IDK
|
,,,"{'notes': '', 'contribution': '', 'fillChoice': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'N/A', 'teamDBRef': 'team-4645', 'speed': 'idk', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-4', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,
|
||||||
speed,,,,,slow
|
,Neither,,,IDK,slow,Defense,team-4645,None,None,N/A,,N/A,No,None,Neither,None,IDK,N/A,match-45,L1,Hab I
|
||||||
strategy,,,,,Defense
|
|
||||||
teamDBRef,,,,,team-4645
|
|
||||||
sandstormCross,,,,,None
|
|
||||||
sandstormCrossBonus,,,,,None
|
|
||||||
lowRocketSuccessTeleop,,,,,N/A
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': 'Neither', 'teamDBRef': 'team-4645', 'hiRocketSuccessTeleop': '', 'speed': 'Slow', 'match': 'match-26', 'size': 'Medium', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': 'No', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,,
|
|
||||||
cargoSuccessTeleop,,,,,N/A
|
|
||||||
functional,,,,,No
|
|
||||||
fillChoice,,,,,None
|
|
||||||
strongMedium,,,,,Neither
|
|
||||||
fillChoiceTeleop,,,,,None
|
|
||||||
contrubution,,,,,IDK
|
|
||||||
hiRocketSuccessTeleop,,,,,N/A
|
|
||||||
match,,,,,match-45
|
|
||||||
endingHab,,,,,L1
|
|
||||||
startingHatch,,,,,Hab I
|
|
||||||
|
|
@ -1,38 +1,7 @@
|
|||||||
sandstormRocketCargoFailure,0,,,,,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,jouGPhPF0qME5wNIbd86MzYFsGw2,size,nTG6cThsi9TB9mTkcwuo5bKEo9B3,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,klQQqapPjwO3jnpN8Dieequh3OI3,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,,,,
|
0,0,0,,1,0,,,,Medium,,team-4702,L1,,1,2,0,,0,0,,,0,,,,0,,0,0,0,,,L1,match-12,,,0
|
||||||
sandstormRocketHatchSuccess,0,,,,,
|
,,,,,,"{'notes': 'tried to let another robot climb to have 3', 'contribution': 'Weak', 'cargoSuccess': 'Low', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-4702', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': 'Large', 'match': 'match-2', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab I', 'hiRocketSuccess': 'N/A'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,,Hatch,,Hatch,
|
,,,Hatch,,,,Small,,Fast,,team-4702,L1,L1,,,,N/A,,,,Low,,Hab I,Cargo,No,,Neither,,,,Cargo,Weak,,match-26,N/A,L1,
|
||||||
teleOpCargoShipHatchFailure,1,,,,,
|
,,,,,,,,,,,,,,,,,,,,"{'contribution': 'Weak', 'notes': 'has a ramp to hab 3 for another team to climb on', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': 'Low', 'strongMedium': '', 'teamDBRef': 'team-4702', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-31', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': '', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",,,,,,,,,,,,,,,,,
|
||||||
sandstormRocketCargoSuccess,0,,,,,
|
,,,Hatch,,,,Large,,slow,,team-4702,L1,L1,,,,N/A,,,,Low,,Hab I,None,No,,Neither,,,,Cargo,Equal,,match-40,N/A,L3,
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,"{'notes': 'tried to let another robot climb to have 3', 'contribution': 'Weak', 'cargoSuccess': 'Low', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-4702', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'size': 'Large', 'match': 'match-2', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab I', 'hiRocketSuccess': 'N/A'}",,,,
|
,,,,,,,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'hatch on cargi', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-4702', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-48', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
size,,,Small,,Large,
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,,,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'hatch on cargi', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-4702', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-48', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}"
|
|
||||||
speed,Medium,,Fast,,slow,
|
|
||||||
strategy,,,,,,
|
|
||||||
teamDBRef,team-4702,,team-4702,,team-4702,
|
|
||||||
sandstormCross,L1,,L1,,L1,
|
|
||||||
sandstormCrossBonus,,,L1,,L1,
|
|
||||||
teleOpCargoShipHatchSuccess,1,,,,,
|
|
||||||
teleOpRocketHatchSuccess,2,,,,,
|
|
||||||
sandstormCargoShipCargoFailure,0,,,,,
|
|
||||||
lowRocketSuccessTeleop,,,N/A,,N/A,
|
|
||||||
teleOpRocketHatchFailure,0,,,,,
|
|
||||||
teleOpRocketCargoFailure,0,,,,,
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,,,,"{'contribution': 'Weak', 'notes': 'has a ramp to hab 3 for another team to climb on', 'fillChoice': '', 'strategy': '', 'cargoSuccessTeleop': 'Low', 'strongMedium': '', 'teamDBRef': 'team-4702', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-31', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': '', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",,
|
|
||||||
cargoSuccessTeleop,,,Low,,Low,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,,,,
|
|
||||||
startingHatch,,,Hab I,,Hab I,
|
|
||||||
fillChoice,,,Cargo,,None,
|
|
||||||
functional,,,No,,No,
|
|
||||||
sandstormCargoShipCargoSuccess,0,,,,,
|
|
||||||
strongMedium,,,Neither,,Neither,
|
|
||||||
teleOpCargoShipCargoFailure,0,,,,,
|
|
||||||
sandstormRocketHatchFailure,0,,,,,
|
|
||||||
sandstormCargoShipHatchFailure,0,,,,,
|
|
||||||
fillChoiceTeleop,,,Cargo,,Cargo,
|
|
||||||
contrubution,,,Weak,,Equal,
|
|
||||||
HABClimb,L1,,,,,
|
|
||||||
match,match-12,,match-26,,match-40,
|
|
||||||
hiRocketSuccessTeleop,,,N/A,,N/A,
|
|
||||||
endingHab,,,L1,,L3,
|
|
||||||
teleOpCargoShipCargoSuccess,0,,,,,
|
|
||||||
|
|
@ -1,18 +1,2 @@
|
|||||||
sandstormCrossBonus,L2
|
sandstormCrossBonus,strongMediumTeleop,fillChoiceTeleop,cargoSuccessTeleop,contrubution,functional,lowRocketSuccessTeleop,startingHatch,size,speed,hiRocketSuccessTeleop,strategy,match,fillChoice,endingHab,teamDBRef,strongMedium,sandstormCross
|
||||||
strongMediumTeleop,Neither
|
L2,Neither,None,N/A,IDK,No,N/A,Hab II,IDK,Medium,N/A,Blocking/raming,match-24,None,None,team-4748,Neither,L2
|
||||||
fillChoiceTeleop,None
|
|
||||||
cargoSuccessTeleop,N/A
|
|
||||||
contrubution,IDK
|
|
||||||
functional,No
|
|
||||||
lowRocketSuccessTeleop,N/A
|
|
||||||
startingHatch,Hab II
|
|
||||||
size,IDK
|
|
||||||
speed,Medium
|
|
||||||
hiRocketSuccessTeleop,N/A
|
|
||||||
strategy,Blocking/raming
|
|
||||||
match,match-24
|
|
||||||
fillChoice,None
|
|
||||||
endingHab,None
|
|
||||||
teamDBRef,team-4748
|
|
||||||
strongMedium,Neither
|
|
||||||
sandstormCross,L2
|
|
||||||
|
|
@ -1 +1,4 @@
|
|||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,"{'notes': '', 'contribution': 'Equal', 'fillChoice': '', 'strategy': 'pinned and prevented opponent from moving freely and scoring ', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4787', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-24', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}","{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'pin opponent but just ran around most of the time', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4787', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-33', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}","{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'robot doesn’t work', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4787', 'speed': '', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-56', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 2', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}"
|
nTG6cThsi9TB9mTkcwuo5bKEo9B3
|
||||||
|
"{'notes': '', 'contribution': 'Equal', 'fillChoice': '', 'strategy': 'pinned and prevented opponent from moving freely and scoring ', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4787', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-24', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
||||||
|
"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'pin opponent but just ran around most of the time', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4787', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-33', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
||||||
|
"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'robot doesn’t work', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-4787', 'speed': '', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-56', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 2', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}"
|
||||||
|
|
@ -1,23 +1,5 @@
|
|||||||
sandstormRocketCargoFailure,0,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,jouGPhPF0qME5wNIbd86MzYFsGw2,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,sandstormCargoShipHatchSuccess,e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,,0
|
0,0,0,0,0,,Medium,team-48,L2,0,1,0,1,1,1,,0,0,0,0,L1,match-17,0
|
||||||
sandstormRocketHatchSuccess,0,,,0
|
,,,,,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'good jab climber and hatch placer ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-48', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'match': 'match-22', 'size': 'Small', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 3', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,,,0
|
,,,,,,,,,,,,,,,"{'contribution': '', 'notes': 'this team is really good, really strong with balls, fast, and has a ramp system to get up to hab 3 ', 'fillChoice': 'Cargo', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': 'Ball', 'teamDBRef': 'team-48', 'hiRocketSuccessTeleop': '', 'speed': 'Fast', 'match': 'match-31', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Yes', 'startingHatch': 'idk', 'lowRocketSuccessTeleop': ''}",,,,,,,
|
||||||
sandstormRocketCargoSuccess,0,,,0
|
0,0,0,0,0,"{'notes': '', 'contribution': 'Great', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-48', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-9', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",Fast,team-48,None,0,0,0,0,0,1,,0,0,0,0,L1,match-9,1
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'good jab climber and hatch placer ', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-48', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'match': 'match-22', 'size': 'Small', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 3', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,"{'notes': '', 'contribution': 'Great', 'fillChoice': 'Cargo', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-48', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Large', 'match': 'match-9', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}"
|
|
||||||
speed,Medium,,,Fast
|
|
||||||
teamDBRef,team-48,,,team-48
|
|
||||||
sandstormCross,L2,,,None
|
|
||||||
teleOpCargoShipHatchSuccess,0,,,0
|
|
||||||
teleOpRocketHatchSuccess,1,,,0
|
|
||||||
sandstormCargoShipCargoFailure,0,,,0
|
|
||||||
teleOpRocketHatchFailure,1,,,0
|
|
||||||
teleOpRocketCargoFailure,1,,,0
|
|
||||||
sandstormCargoShipHatchSuccess,1,,,1
|
|
||||||
e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,,,"{'contribution': '', 'notes': 'this team is really good, really strong with balls, fast, and has a ramp system to get up to hab 3 ', 'fillChoice': 'Cargo', 'strategy': '', 'cargoSuccessTeleop': '', 'strongMedium': 'Ball', 'teamDBRef': 'team-48', 'hiRocketSuccessTeleop': '', 'speed': 'Fast', 'match': 'match-31', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Yes', 'startingHatch': 'idk', 'lowRocketSuccessTeleop': ''}",
|
|
||||||
sandstormCargoShipCargoSuccess,0,,,0
|
|
||||||
teleOpCargoShipCargoFailure,0,,,0
|
|
||||||
sandstormRocketHatchFailure,0,,,0
|
|
||||||
sandstormCargoShipHatchFailure,0,,,0
|
|
||||||
HABClimb,L1,,,L1
|
|
||||||
match,match-17,,,match-9
|
|
||||||
teleOpCargoShipCargoSuccess,0,,,1
|
|
||||||
|
|
@ -1,36 +1,5 @@
|
|||||||
sandstormRocketCargoFailure,,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,strongMediumTeleop,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,teleOpCargoShipCargoSuccess,9fv7QhcLPsfU59sRrPq7LcJlD8J3,functional,fillChoice,strongMedium,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
teleOpRocketCargoSuccess,,,,0
|
,,,,,,,,,,,,,,,,,,,,,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'defensive / offensive bad driver', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-5125', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-17', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,,Ball,
|
,,,,,,,,,,,,,,,,,,,,,"{'contribution': '', 'notes': 'had an autonomous period, went fast but ran into something and couldn’t place a hatch', 'fillChoice': 'Cargo', 'strategy': 'fill low ball in cargo, offensive. ', 'cargoSuccessTeleop': '', 'strongMedium': 'Ball', 'teamDBRef': 'team-5125', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-27', 'size': '', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 2', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",,,,,,,,,,,,,,
|
||||||
sandstormRocketHatchSuccess,,,,0
|
,,Ball,,,,IDK,slow,"Cargo, but under heavy defense",team-5125,L2,L2,,,,Low,,,N/A,,,,No,None,Neither,,,,,Low Rocket,IDK,,N/A,match-34,None,Hab II
|
||||||
teleOpCargoShipHatchFailure,,,,0
|
0,0,,0,0,0,,Medium,,team-5125,None,,0,0,0,,0,0,,0,1,,,,,0,0,0,0,,,L1,,match-7,,
|
||||||
sandstormRocketCargoSuccess,,,,0
|
|
||||||
size,,,IDK,
|
|
||||||
speed,,,slow,Medium
|
|
||||||
strategy,,,"Cargo, but under heavy defense",
|
|
||||||
teamDBRef,,,team-5125,team-5125
|
|
||||||
sandstormCross,,,L2,None
|
|
||||||
sandstormCrossBonus,,,L2,
|
|
||||||
teleOpCargoShipHatchSuccess,,,,0
|
|
||||||
teleOpRocketHatchSuccess,,,,0
|
|
||||||
sandstormCargoShipCargoFailure,,,,0
|
|
||||||
lowRocketSuccessTeleop,,,Low,
|
|
||||||
teleOpRocketHatchFailure,,,,0
|
|
||||||
teleOpRocketCargoFailure,,,,0
|
|
||||||
cargoSuccessTeleop,,,N/A,
|
|
||||||
sandstormCargoShipHatchSuccess,,,,0
|
|
||||||
teleOpCargoShipCargoSuccess,,,,1
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'defensive / offensive bad driver', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-5125', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-17', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}","{'contribution': '', 'notes': 'had an autonomous period, went fast but ran into something and couldn’t place a hatch', 'fillChoice': 'Cargo', 'strategy': 'fill low ball in cargo, offensive. ', 'cargoSuccessTeleop': '', 'strongMedium': 'Ball', 'teamDBRef': 'team-5125', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-27', 'size': '', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 2', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': ''}",,
|
|
||||||
functional,,,No,
|
|
||||||
fillChoice,,,None,
|
|
||||||
strongMedium,,,Neither,
|
|
||||||
sandstormCargoShipCargoSuccess,,,,0
|
|
||||||
teleOpCargoShipCargoFailure,,,,0
|
|
||||||
sandstormRocketHatchFailure,,,,0
|
|
||||||
sandstormCargoShipHatchFailure,,,,0
|
|
||||||
fillChoiceTeleop,,,Low Rocket,
|
|
||||||
contrubution,,,IDK,
|
|
||||||
HABClimb,,,,L1
|
|
||||||
hiRocketSuccessTeleop,,,N/A,
|
|
||||||
match,,,match-34,match-7
|
|
||||||
endingHab,,,None,
|
|
||||||
startingHatch,,,Hab II,
|
|
||||||
|
|
@ -1,22 +1,3 @@
|
|||||||
sandstormRocketCargoFailure,0,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,sandstormCargoShipHatchSuccess,9fv7QhcLPsfU59sRrPq7LcJlD8J3,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,
|
0,0,0,0,0,Medium,team-5148,L1,0,0,0,0,0,0,,0,0,0,1,L1,match-10,2
|
||||||
sandstormRocketHatchSuccess,0,
|
,,,,,,,,,,,,,,"{'contribution': 'Weak', 'notes': 'giant, cumbersome grabber ', 'fillChoice': 'Low Rocket', 'strategy': 'somewhat defensive, concentrate on cargo balls', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-5148', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-33', 'size': 'Jumbo', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,
|
|
||||||
sandstormRocketCargoSuccess,0,
|
|
||||||
speed,Medium,
|
|
||||||
teamDBRef,team-5148,
|
|
||||||
sandstormCross,L1,
|
|
||||||
teleOpCargoShipHatchSuccess,0,
|
|
||||||
teleOpRocketHatchSuccess,0,
|
|
||||||
sandstormCargoShipCargoFailure,0,
|
|
||||||
teleOpRocketHatchFailure,0,
|
|
||||||
teleOpRocketCargoFailure,0,
|
|
||||||
sandstormCargoShipHatchSuccess,0,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'contribution': 'Weak', 'notes': 'giant, cumbersome grabber ', 'fillChoice': 'Low Rocket', 'strategy': 'somewhat defensive, concentrate on cargo balls', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-5148', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-33', 'size': 'Jumbo', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
|
||||||
sandstormCargoShipCargoSuccess,0,
|
|
||||||
teleOpCargoShipCargoFailure,0,
|
|
||||||
sandstormRocketHatchFailure,0,
|
|
||||||
sandstormCargoShipHatchFailure,1,
|
|
||||||
HABClimb,L1,
|
|
||||||
match,match-10,
|
|
||||||
teleOpCargoShipCargoSuccess,2,
|
|
||||||
|
|
@ -1,23 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,jouGPhPF0qME5wNIbd86MzYFsGw2,sandstormRocketCargoSuccess,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,klQQqapPjwO3jnpN8Dieequh3OI3,sandstormCargoShipHatchSuccess,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,,,0
|
,,,,"{'notes': 'unable to move can only pivot', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'did nothing ', 'cargoSuccessTeleop': '', 'strongMedium': 'Neither', 'teamDBRef': 'team-5350', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-17', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'No', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",,,,,,,,,,,,,,,,,,
|
||||||
sandstormRocketHatchSuccess,,,0
|
,,,,,,,,,,,,,,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-5350', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-29', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,,,0
|
0,0,0,0,,0,slow,team-5350,None,0,0,0,0,0,,0,0,0,0,0,None,match-8,0
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'notes': 'unable to move can only pivot', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'did nothing ', 'cargoSuccessTeleop': '', 'strongMedium': 'Neither', 'teamDBRef': 'team-5350', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-17', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'No', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",,
|
|
||||||
sandstormRocketCargoSuccess,,,0
|
|
||||||
speed,,,slow
|
|
||||||
teamDBRef,,,team-5350
|
|
||||||
sandstormCross,,,None
|
|
||||||
teleOpCargoShipHatchSuccess,,,0
|
|
||||||
teleOpRocketHatchSuccess,,,0
|
|
||||||
sandstormCargoShipCargoFailure,,,0
|
|
||||||
teleOpRocketHatchFailure,,,0
|
|
||||||
teleOpRocketCargoFailure,,,0
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-5350', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-29', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",
|
|
||||||
sandstormCargoShipHatchSuccess,,,0
|
|
||||||
sandstormCargoShipCargoSuccess,,,0
|
|
||||||
teleOpCargoShipCargoFailure,,,0
|
|
||||||
sandstormRocketHatchFailure,,,0
|
|
||||||
sandstormCargoShipHatchFailure,,,0
|
|
||||||
HABClimb,,,None
|
|
||||||
match,,,match-8
|
|
||||||
teleOpCargoShipCargoSuccess,,,0
|
|
||||||
|
|
@ -1,23 +1,5 @@
|
|||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,,"{'notes': '', 'contribution': '', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-5822', 'speed': '', 'hiRocketSuccessTeleop': 'High', 'size': 'Medium', 'match': 'match-36', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': '', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab II'}",
|
gmkR7hN4D1fQguey5X5V48d3PhO2,sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,nTG6cThsi9TB9mTkcwuo5bKEo9B3,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,sandstormCargoShipHatchSuccess,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
sandstormRocketCargoFailure,0,0,,0
|
,0,0,0,0,0,,Fast,team-5822,L2,0,4,0,1,1,0,0,0,0,0,L1,match-10,0
|
||||||
teleOpRocketCargoSuccess,0,0,,0
|
,0,0,1,0,0,,slow,team-5822,L2,1,3,0,1,1,0,0,0,0,0,L1,match-20,0
|
||||||
sandstormRocketHatchSuccess,0,1,,0
|
"{'notes': '', 'contribution': '', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Mid', 'teamDBRef': 'team-5822', 'speed': '', 'hiRocketSuccessTeleop': 'High', 'size': 'Medium', 'match': 'match-36', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': '', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'Hab II'}",,,,,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': 'placed hatch on rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-5822', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': 'Jumbo', 'match': 'match-36', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'idk'}",,,,,,,,,,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,0,,0
|
,0,0,0,0,0,,slow,team-5822,L2,1,2,0,1,1,0,0,0,0,0,L1,match-6,0
|
||||||
sandstormRocketCargoSuccess,0,0,,0
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': 'placed hatch on rocket', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-5822', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'size': 'Jumbo', 'match': 'match-36', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'High', 'startingHatch': 'idk'}",
|
|
||||||
speed,Fast,slow,,slow
|
|
||||||
teamDBRef,team-5822,team-5822,,team-5822
|
|
||||||
sandstormCross,L2,L2,,L2
|
|
||||||
teleOpCargoShipHatchSuccess,0,1,,1
|
|
||||||
teleOpRocketHatchSuccess,4,3,,2
|
|
||||||
sandstormCargoShipCargoFailure,0,0,,0
|
|
||||||
teleOpRocketHatchFailure,1,1,,1
|
|
||||||
teleOpRocketCargoFailure,1,1,,1
|
|
||||||
sandstormCargoShipHatchSuccess,0,0,,0
|
|
||||||
sandstormCargoShipCargoSuccess,0,0,,0
|
|
||||||
teleOpCargoShipCargoFailure,0,0,,0
|
|
||||||
sandstormRocketHatchFailure,0,0,,0
|
|
||||||
sandstormCargoShipHatchFailure,0,0,,0
|
|
||||||
HABClimb,L1,L1,,L1
|
|
||||||
match,match-10,match-20,,match-6
|
|
||||||
teleOpCargoShipCargoSuccess,0,0,,0
|
|
||||||
|
|
@ -1,36 +1,5 @@
|
|||||||
sandstormRocketCargoFailure,0,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,,0
|
0,0,0,,0,0,,slow,,team-5847,L2,,1,1,0,,0,0,,1,,,,,0,,0,0,0,,,L1,match-18,,,0
|
||||||
sandstormRocketHatchSuccess,0,,,0
|
,,,Neither,,,Medium,slow,Defense,team-5847,L2,L2,,,,N/A,,,Low,,Hab II,"{'notes': '', 'contribution': '', 'fillChoice': 'Low Rocket', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'N/A', 'teamDBRef': 'team-5847', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-30', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab II'}",None,Yes,,Neither,,,,None,Equal,,match-30,N/A,L3,
|
||||||
strongMediumTeleop,,Neither,,
|
,,,,,,,,,,,,,,,,,,,,,"{'contribution': 'Equal', 'notes': '', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-5847', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'match': 'match-36', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,,,0
|
0,0,0,,0,0,,Fast,,team-5847,L2,,3,0,0,,0,0,,1,,,,,0,,0,0,0,,,L3,match-8,,,0
|
||||||
sandstormRocketCargoSuccess,0,,,0
|
|
||||||
size,,Medium,,
|
|
||||||
speed,slow,slow,,Fast
|
|
||||||
strategy,,Defense,,
|
|
||||||
teamDBRef,team-5847,team-5847,,team-5847
|
|
||||||
sandstormCross,L2,L2,,L2
|
|
||||||
sandstormCrossBonus,,L2,,
|
|
||||||
teleOpCargoShipHatchSuccess,1,,,3
|
|
||||||
teleOpRocketHatchSuccess,1,,,0
|
|
||||||
sandstormCargoShipCargoFailure,0,,,0
|
|
||||||
lowRocketSuccessTeleop,,N/A,,
|
|
||||||
teleOpRocketHatchFailure,0,,,0
|
|
||||||
teleOpRocketCargoFailure,0,,,0
|
|
||||||
cargoSuccessTeleop,,Low,,
|
|
||||||
sandstormCargoShipHatchSuccess,1,,,1
|
|
||||||
startingHatch,,Hab II,,
|
|
||||||
e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,,"{'notes': '', 'contribution': '', 'fillChoice': 'Low Rocket', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'N/A', 'teamDBRef': 'team-5847', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-30', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab II'}","{'contribution': 'Equal', 'notes': '', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-5847', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'match': 'match-36', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",
|
|
||||||
fillChoice,,None,,
|
|
||||||
functional,,Yes,,
|
|
||||||
sandstormCargoShipCargoSuccess,0,,,0
|
|
||||||
strongMedium,,Neither,,
|
|
||||||
teleOpCargoShipCargoFailure,0,,,0
|
|
||||||
sandstormRocketHatchFailure,0,,,0
|
|
||||||
sandstormCargoShipHatchFailure,0,,,0
|
|
||||||
fillChoiceTeleop,,None,,
|
|
||||||
contrubution,,Equal,,
|
|
||||||
HABClimb,L1,,,L3
|
|
||||||
match,match-18,match-30,,match-8
|
|
||||||
hiRocketSuccessTeleop,,N/A,,
|
|
||||||
endingHab,,L3,,
|
|
||||||
teleOpCargoShipCargoSuccess,0,,,0
|
|
||||||
|
|
@ -1,36 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,strongMediumTeleop,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,nTG6cThsi9TB9mTkcwuo5bKEo9B3,size,sandstormRocketCargoSuccess,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,teleOpCargoShipCargoSuccess,functional,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
teleOpRocketCargoSuccess,,,0
|
,,,,,"{'contribution': 'Equal', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'hatch panels ', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Ball', 'teamDBRef': 'team-5934', 'hiRocketSuccessTeleop': '', 'speed': 'Fast', 'match': 'match-31', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,Both,
|
,,Both,,,,Large,,Fast,,team-5934,L1,L1,,,,N/A,,,Mid,,,Yes,Cargo,,Ball,,,,Cargo,Equal,,N/A,match-37,None,Hab I
|
||||||
sandstormRocketHatchSuccess,,,0
|
0,0,,0,0,,,0,Ludicrous,,team-5934,L1,,2,0,0,,0,0,,0,5,,,1,,0,0,0,,,L1,,match-6,,
|
||||||
teleOpCargoShipHatchFailure,,,0
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,"{'contribution': 'Equal', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'hatch panels ', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Ball', 'teamDBRef': 'team-5934', 'hiRocketSuccessTeleop': '', 'speed': 'Fast', 'match': 'match-31', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,
|
|
||||||
size,,Large,
|
|
||||||
sandstormRocketCargoSuccess,,,0
|
|
||||||
speed,,Fast,Ludicrous
|
|
||||||
strategy,,,
|
|
||||||
teamDBRef,,team-5934,team-5934
|
|
||||||
sandstormCross,,L1,L1
|
|
||||||
sandstormCrossBonus,,L1,
|
|
||||||
teleOpCargoShipHatchSuccess,,,2
|
|
||||||
teleOpRocketHatchSuccess,,,0
|
|
||||||
sandstormCargoShipCargoFailure,,,0
|
|
||||||
lowRocketSuccessTeleop,,N/A,
|
|
||||||
teleOpRocketHatchFailure,,,0
|
|
||||||
teleOpRocketCargoFailure,,,0
|
|
||||||
cargoSuccessTeleop,,Mid,
|
|
||||||
sandstormCargoShipHatchSuccess,,,0
|
|
||||||
teleOpCargoShipCargoSuccess,,,5
|
|
||||||
functional,,Yes,
|
|
||||||
fillChoice,,Cargo,
|
|
||||||
sandstormCargoShipCargoSuccess,,,1
|
|
||||||
strongMedium,,Ball,
|
|
||||||
teleOpCargoShipCargoFailure,,,0
|
|
||||||
sandstormRocketHatchFailure,,,0
|
|
||||||
sandstormCargoShipHatchFailure,,,0
|
|
||||||
fillChoiceTeleop,,Cargo,
|
|
||||||
contrubution,,Equal,
|
|
||||||
HABClimb,,,L1
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
match,,match-37,match-6
|
|
||||||
endingHab,,None,
|
|
||||||
startingHatch,,Hab I,
|
|
||||||
|
|
@ -1,22 +1,2 @@
|
|||||||
sandstormRocketCargoFailure,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,klQQqapPjwO3jnpN8Dieequh3OI3,sandstormCargoShipHatchSuccess,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0
|
0,0,0,0,0,Medium,team-6651,L1,0,0,0,0,0,"{'notes': '', 'contribution': '', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-6651', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-17', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",0,0,0,0,1,L1,match-17,0
|
||||||
sandstormRocketHatchSuccess,0
|
|
||||||
teleOpCargoShipHatchFailure,0
|
|
||||||
sandstormRocketCargoSuccess,0
|
|
||||||
speed,Medium
|
|
||||||
teamDBRef,team-6651
|
|
||||||
sandstormCross,L1
|
|
||||||
teleOpCargoShipHatchSuccess,0
|
|
||||||
teleOpRocketHatchSuccess,0
|
|
||||||
sandstormCargoShipCargoFailure,0
|
|
||||||
teleOpRocketHatchFailure,0
|
|
||||||
teleOpRocketCargoFailure,0
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,"{'notes': '', 'contribution': '', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-6651', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-17', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Sorta', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
|
||||||
sandstormCargoShipHatchSuccess,0
|
|
||||||
sandstormCargoShipCargoSuccess,0
|
|
||||||
teleOpCargoShipCargoFailure,0
|
|
||||||
sandstormRocketHatchFailure,0
|
|
||||||
sandstormCargoShipHatchFailure,1
|
|
||||||
HABClimb,L1
|
|
||||||
match,match-17
|
|
||||||
teleOpCargoShipCargoSuccess,0
|
|
||||||
|
|
@ -1,37 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,strongMediumTeleop,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,jouGPhPF0qME5wNIbd86MzYFsGw2,size,sandstormRocketCargoSuccess,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,mf0oyBolLjZgC9wALSwSb6IvE0T2,teleOpCargoShipCargoSuccess,functional,fillChoice,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,hiRocketSuccessTeleop,match,endingHab,startingHatch
|
||||||
teleOpRocketCargoSuccess,,,0
|
,,,,,"{'contribution': 'Weak', 'notes': 'never moved', 'fillChoice': '', 'strategy': 'never moved', 'cargoSuccessTeleop': '', 'strongMedium': 'Neither', 'teamDBRef': 'team-6823', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-13', 'size': 'Large', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': 'No', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,Ball,
|
,,Ball,,,,Large,,Medium,,team-6823,L1,L1,,,,N/A,,,High,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-6823', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'Low', 'size': 'Large', 'match': 'match-30', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab II'}",,Sorta,Cargo,,Neither,,,,Cargo,Equal,,N/A,match-30,L1,Hab I
|
||||||
sandstormRocketHatchSuccess,,,0
|
0,0,,0,0,,,0,Fast,,team-6823,None,,2,0,0,,0,0,,0,,0,,,0,,0,0,0,,,L1,,match-9,,
|
||||||
teleOpCargoShipHatchFailure,,,0
|
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,"{'contribution': 'Weak', 'notes': 'never moved', 'fillChoice': '', 'strategy': 'never moved', 'cargoSuccessTeleop': '', 'strongMedium': 'Neither', 'teamDBRef': 'team-6823', 'hiRocketSuccessTeleop': '', 'speed': '', 'match': 'match-13', 'size': 'Large', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': 'No', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': ''}",,
|
|
||||||
size,,Large,
|
|
||||||
sandstormRocketCargoSuccess,,,0
|
|
||||||
speed,,Medium,Fast
|
|
||||||
strategy,,,
|
|
||||||
teamDBRef,,team-6823,team-6823
|
|
||||||
sandstormCross,,L1,None
|
|
||||||
sandstormCrossBonus,,L1,
|
|
||||||
teleOpCargoShipHatchSuccess,,,2
|
|
||||||
teleOpRocketHatchSuccess,,,0
|
|
||||||
sandstormCargoShipCargoFailure,,,0
|
|
||||||
lowRocketSuccessTeleop,,N/A,
|
|
||||||
teleOpRocketHatchFailure,,,0
|
|
||||||
teleOpRocketCargoFailure,,,0
|
|
||||||
cargoSuccessTeleop,,High,
|
|
||||||
sandstormCargoShipHatchSuccess,,,0
|
|
||||||
mf0oyBolLjZgC9wALSwSb6IvE0T2,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-6823', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'Low', 'size': 'Large', 'match': 'match-30', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'Hab II'}",
|
|
||||||
teleOpCargoShipCargoSuccess,,,0
|
|
||||||
functional,,Sorta,
|
|
||||||
fillChoice,,Cargo,
|
|
||||||
sandstormCargoShipCargoSuccess,,,0
|
|
||||||
strongMedium,,Neither,
|
|
||||||
teleOpCargoShipCargoFailure,,,0
|
|
||||||
sandstormRocketHatchFailure,,,0
|
|
||||||
sandstormCargoShipHatchFailure,,,0
|
|
||||||
fillChoiceTeleop,,Cargo,
|
|
||||||
contrubution,,Equal,
|
|
||||||
HABClimb,,,L1
|
|
||||||
hiRocketSuccessTeleop,,N/A,
|
|
||||||
match,,match-30,match-9
|
|
||||||
endingHab,,L1,
|
|
||||||
startingHatch,,Hab I,
|
|
||||||
|
|
@ -1,38 +1,5 @@
|
|||||||
sandstormRocketCargoFailure,0,,,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,nTG6cThsi9TB9mTkcwuo5bKEo9B3,sandstormRocketCargoSuccess,jouGPhPF0qME5wNIbd86MzYFsGw2,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,9fv7QhcLPsfU59sRrPq7LcJlD8J3,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,,
|
0,0,0,,0,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'did not do anything ', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-6906', 'speed': 'Slow', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Jumbo', 'match': 'match-12', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",0,,,slow,,team-6906,L1,,0,0,0,,0,0,,0,,,,0,,,0,0,0,,,L1,match-12,,,0
|
||||||
sandstormRocketHatchSuccess,0,,,
|
,,,,,,,"{'notes': 'plays defense', 'contribution': 'Equal', 'fillChoice': 'None', 'strategy': 'very strong defensive robot also had limited capability to attach hatch panels', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-6906', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Jumbo', 'match': 'match-29', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,,Neither,
|
,,,Neither,,,,,Medium,slow,Defense,team-6906,L1,L1,,,,N/A,,,N/A,,Hab I,None,Yes,,Neither,,,,,None,Weak,,match-53,N/A,L1,
|
||||||
teleOpCargoShipHatchFailure,0,,,
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,"{'contribution': 'Weak', 'notes': 'defensive but miserably slow', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-6906', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'match': 'match-7', 'size': '', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Neither', 'endingHab': 'None', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'None'}",,,,,,,,,,
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,"{'notes': '', 'contribution': 'Weak', 'fillChoice': '', 'strategy': 'did not do anything ', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-6906', 'speed': 'Slow', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Jumbo', 'match': 'match-12', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,
|
|
||||||
sandstormRocketCargoSuccess,0,,,
|
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,"{'notes': 'plays defense', 'contribution': 'Equal', 'fillChoice': 'None', 'strategy': 'very strong defensive robot also had limited capability to attach hatch panels', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-6906', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Jumbo', 'match': 'match-29', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,
|
|
||||||
size,,,Medium,
|
|
||||||
speed,slow,,slow,
|
|
||||||
strategy,,,Defense,
|
|
||||||
teamDBRef,team-6906,,team-6906,
|
|
||||||
sandstormCross,L1,,L1,
|
|
||||||
sandstormCrossBonus,,,L1,
|
|
||||||
teleOpCargoShipHatchSuccess,0,,,
|
|
||||||
teleOpRocketHatchSuccess,0,,,
|
|
||||||
sandstormCargoShipCargoFailure,0,,,
|
|
||||||
lowRocketSuccessTeleop,,,N/A,
|
|
||||||
teleOpRocketHatchFailure,0,,,
|
|
||||||
teleOpRocketCargoFailure,0,,,
|
|
||||||
cargoSuccessTeleop,,,N/A,
|
|
||||||
sandstormCargoShipHatchSuccess,0,,,
|
|
||||||
startingHatch,,,Hab I,
|
|
||||||
fillChoice,,,None,
|
|
||||||
functional,,,Yes,
|
|
||||||
sandstormCargoShipCargoSuccess,0,,,
|
|
||||||
strongMedium,,,Neither,
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,,,"{'contribution': 'Weak', 'notes': 'defensive but miserably slow', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-6906', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'match': 'match-7', 'size': '', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': 'Neither', 'endingHab': 'None', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'Low', 'startingHatch': 'None'}"
|
|
||||||
teleOpCargoShipCargoFailure,0,,,
|
|
||||||
sandstormRocketHatchFailure,0,,,
|
|
||||||
sandstormCargoShipHatchFailure,0,,,
|
|
||||||
fillChoiceTeleop,,,None,
|
|
||||||
contrubution,,,Weak,
|
|
||||||
HABClimb,L1,,,
|
|
||||||
match,match-12,,match-53,
|
|
||||||
hiRocketSuccessTeleop,,,N/A,
|
|
||||||
endingHab,,,L1,
|
|
||||||
teleOpCargoShipCargoSuccess,0,,,
|
|
||||||
|
|
@ -1,22 +1,4 @@
|
|||||||
sandstormRocketCargoFailure,0,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,sandstormCargoShipHatchSuccess,9fv7QhcLPsfU59sRrPq7LcJlD8J3,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,,0
|
0,0,0,0,0,slow,team-6968,L1,0,1,0,0,0,1,,0,0,0,0,None,match-11,0
|
||||||
sandstormRocketHatchSuccess,0,,0
|
,,,,,,,,,,,,,,"{'contribution': 'Equal', 'notes': 'weak auto, yet filled a lot of hatches offensively on Teleop on the rocket', 'fillChoice': 'Cargo', 'strategy': 'fill all hatches on rocket', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-6968', 'hiRocketSuccessTeleop': 'Mid', 'speed': '', 'match': 'match-32', 'size': '', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'No', 'startingHatch': '', 'lowRocketSuccessTeleop': 'Mid'}",,,,,,,
|
||||||
teleOpCargoShipHatchFailure,0,,0
|
0,0,0,0,0,Medium,team-6968,L1,0,0,0,1,1,0,,0,0,0,1,L1,match-4,0
|
||||||
sandstormRocketCargoSuccess,0,,0
|
|
||||||
speed,slow,,Medium
|
|
||||||
teamDBRef,team-6968,,team-6968
|
|
||||||
sandstormCross,L1,,L1
|
|
||||||
teleOpCargoShipHatchSuccess,0,,0
|
|
||||||
teleOpRocketHatchSuccess,1,,0
|
|
||||||
sandstormCargoShipCargoFailure,0,,0
|
|
||||||
teleOpRocketHatchFailure,0,,1
|
|
||||||
teleOpRocketCargoFailure,0,,1
|
|
||||||
sandstormCargoShipHatchSuccess,1,,0
|
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,,"{'contribution': 'Equal', 'notes': 'weak auto, yet filled a lot of hatches offensively on Teleop on the rocket', 'fillChoice': 'Cargo', 'strategy': 'fill all hatches on rocket', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-6968', 'hiRocketSuccessTeleop': 'Mid', 'speed': '', 'match': 'match-32', 'size': '', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'No', 'startingHatch': '', 'lowRocketSuccessTeleop': 'Mid'}",
|
|
||||||
sandstormCargoShipCargoSuccess,0,,0
|
|
||||||
teleOpCargoShipCargoFailure,0,,0
|
|
||||||
sandstormRocketHatchFailure,0,,0
|
|
||||||
sandstormCargoShipHatchFailure,0,,1
|
|
||||||
HABClimb,None,,L1
|
|
||||||
match,match-11,,match-4
|
|
||||||
teleOpCargoShipCargoSuccess,0,,0
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
|||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,"{'notes': 'hatch was not stuck on during storm ', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': 'place ball into cargo ship', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7237', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Small', 'match': 'match-14', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,"{'notes': '', 'contribution': 'Great', 'fillChoice': '', 'strategy': 'hatch and ball in cargo ship', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-7237', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-28', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",
|
nTG6cThsi9TB9mTkcwuo5bKEo9B3,gmkR7hN4D1fQguey5X5V48d3PhO2,jouGPhPF0qME5wNIbd86MzYFsGw2
|
||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'hatches, slow and steady', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-7237', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-28', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Sorta', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'High'}",
|
"{'notes': 'hatch was not stuck on during storm ', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': 'place ball into cargo ship', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7237', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Small', 'match': 'match-14', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,"{'notes': '', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7237', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-18', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'endingHab': '', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}",,"{'notes': 'collected 1 ball and couldn’t do anything with it', 'contribution': '', 'fillChoice': 'Cargo', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7237', 'speed': 'Slow', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-7', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}"
|
,,"{'notes': '', 'contribution': 'Weak', 'fillChoice': 'Cargo', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7237', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-18', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Both', 'endingHab': '', 'functional': 'Sorta', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}"
|
||||||
|
"{'notes': '', 'contribution': 'Great', 'fillChoice': '', 'strategy': 'hatch and ball in cargo ship', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'High', 'teamDBRef': 'team-7237', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-28', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}","{'contribution': 'Great', 'notes': '', 'fillChoice': 'Cargo', 'strategy': 'hatches, slow and steady', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Hatch', 'teamDBRef': 'team-7237', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-28', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Sorta', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'High'}",
|
||||||
|
,,"{'notes': 'collected 1 ball and couldn’t do anything with it', 'contribution': '', 'fillChoice': 'Cargo', 'strongMedium': 'Ball', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7237', 'speed': 'Slow', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-7', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'Yes', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'Hab I'}"
|
||||||
|
|
@ -1,20 +1,4 @@
|
|||||||
sandstormCrossBonus,,,None
|
sandstormCrossBonus,gmkR7hN4D1fQguey5X5V48d3PhO2,strongMediumTeleop,fillChoiceTeleop,cargoSuccessTeleop,contrubution,functional,lowRocketSuccessTeleop,startingHatch,nTG6cThsi9TB9mTkcwuo5bKEo9B3,size,speed,hiRocketSuccessTeleop,strategy,match,fillChoice,endingHab,teamDBRef,strongMedium,sandstormCross
|
||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,"{'notes': 'dud bot can’t complete objectives ', 'contribution': '', 'fillChoice': '', 'strategy': 'defense only', 'strongMedium': 'Neither', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7560', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-17', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,
|
,"{'notes': 'dud bot can’t complete objectives ', 'contribution': '', 'fillChoice': '', 'strategy': 'defense only', 'strongMedium': 'Neither', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7560', 'speed': 'Fast', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-17', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'None', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",,,,,,,,,,,,,,,,,,
|
||||||
strongMediumTeleop,,,Neither
|
,,,,,,,,,"{'notes': 'i think it got stuck on the habitat ', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7560', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-27', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 2', 'functional': 'Sorta', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}",,,,,,,,,,
|
||||||
fillChoiceTeleop,,,None
|
None,,Neither,None,N/A,Weak,Yes,N/A,Hab I,,IDK,slow,N/A,None,match-50,None,None,team-7560,Neither,None
|
||||||
cargoSuccessTeleop,,,N/A
|
|
||||||
contrubution,,,Weak
|
|
||||||
functional,,,Yes
|
|
||||||
lowRocketSuccessTeleop,,,N/A
|
|
||||||
startingHatch,,,Hab I
|
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,"{'notes': 'i think it got stuck on the habitat ', 'contribution': 'Weak', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7560', 'speed': '', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-27', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': 'Hab 2', 'functional': 'Sorta', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}",
|
|
||||||
size,,,IDK
|
|
||||||
speed,,,slow
|
|
||||||
hiRocketSuccessTeleop,,,N/A
|
|
||||||
strategy,,,None
|
|
||||||
match,,,match-50
|
|
||||||
fillChoice,,,None
|
|
||||||
endingHab,,,None
|
|
||||||
teamDBRef,,,team-7560
|
|
||||||
strongMedium,,,Neither
|
|
||||||
sandstormCross,,,None
|
|
||||||
|
|
@ -1,2 +1,4 @@
|
|||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,,,"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': 'pinning opponent', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7608', 'hiRocketSuccessTeleop': '', 'speed': 'Medium', 'match': 'match-47', 'size': 'Small', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
nTG6cThsi9TB9mTkcwuo5bKEo9B3,9fv7QhcLPsfU59sRrPq7LcJlD8J3
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,"{'notes': 'potato', 'contribution': '', 'cargoSuccess': '', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7608', 'speed': '', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'match': 'match-2', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': '', 'hiRocketSuccess': ''}","{'contribution': 'Weak', 'notes': 'miserably slow', 'fillChoice': '', 'strategy': 'try to place hatches', 'cargoSuccessTeleop': 'Low', 'strongMedium': 'Hatch', 'teamDBRef': 'team-7608', 'speed': 'Slow', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-35', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'No', 'startingHatch': '', 'lowRocketSuccessTeleop': 'Low'}",
|
,"{'notes': 'potato', 'contribution': '', 'cargoSuccess': '', 'fillChoice': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7608', 'speed': '', 'hiRocketSuccessTeleop': '', 'lowRocketSuccess': '', 'match': 'match-2', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'lowRocketSuccessTeleop': '', 'startingHatch': '', 'hiRocketSuccess': ''}"
|
||||||
|
,"{'contribution': 'Weak', 'notes': 'miserably slow', 'fillChoice': '', 'strategy': 'try to place hatches', 'cargoSuccessTeleop': 'Low', 'strongMedium': 'Hatch', 'teamDBRef': 'team-7608', 'speed': 'Slow', 'hiRocketSuccessTeleop': 'N/A', 'size': 'Medium', 'match': 'match-35', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'No', 'startingHatch': '', 'lowRocketSuccessTeleop': 'Low'}"
|
||||||
|
"{'contribution': 'Weak', 'notes': '', 'fillChoice': '', 'strategy': 'pinning opponent', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7608', 'hiRocketSuccessTeleop': '', 'speed': 'Medium', 'match': 'match-47', 'size': 'Small', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",
|
||||||
|
|
@ -1,37 +1,3 @@
|
|||||||
sandstormRocketCargoFailure,0,
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,strongMediumTeleop,teleOpCargoShipHatchFailure,sandstormRocketCargoSuccess,size,speed,strategy,teamDBRef,sandstormCross,sandstormCrossBonus,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,lowRocketSuccessTeleop,teleOpRocketHatchFailure,teleOpRocketCargoFailure,klQQqapPjwO3jnpN8Dieequh3OI3,cargoSuccessTeleop,sandstormCargoShipHatchSuccess,startingHatch,e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,fillChoice,functional,sandstormCargoShipCargoSuccess,strongMedium,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,fillChoiceTeleop,contrubution,HABClimb,match,hiRocketSuccessTeleop,endingHab,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,0,
|
0,0,0,,0,0,,slow,,team-7609,L1,,0,0,0,,0,0,"{'notes': '', 'contribution': 'Weak', 'fillChoice': 'None', 'strategy': 'resorted to defense after couldn’t collect hatches', 'strongMedium': 'Neither', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7609', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-13', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': '', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'idk'}",,0,,,,,0,,0,0,0,,,L1,match-13,,,0
|
||||||
sandstormRocketHatchSuccess,0,
|
,,,Neither,,,IDK,Fast,Defense,team-7609,L1,L1,,,,N/A,,,,N/A,,Hab I,"{'contribution': '', 'notes': 'literally useless just drove around trying to defend I think ', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7609', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'match': 'match-33', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}",None,Yes,,Neither,,,,None,Weak,,match-33,N/A,L1,
|
||||||
strongMediumTeleop,,Neither
|
|
||||||
teleOpCargoShipHatchFailure,0,
|
|
||||||
sandstormRocketCargoSuccess,0,
|
|
||||||
size,,IDK
|
|
||||||
speed,slow,Fast
|
|
||||||
strategy,,Defense
|
|
||||||
teamDBRef,team-7609,team-7609
|
|
||||||
sandstormCross,L1,L1
|
|
||||||
sandstormCrossBonus,,L1
|
|
||||||
teleOpCargoShipHatchSuccess,0,
|
|
||||||
teleOpRocketHatchSuccess,0,
|
|
||||||
sandstormCargoShipCargoFailure,0,
|
|
||||||
lowRocketSuccessTeleop,,N/A
|
|
||||||
teleOpRocketHatchFailure,0,
|
|
||||||
teleOpRocketCargoFailure,0,
|
|
||||||
klQQqapPjwO3jnpN8Dieequh3OI3,"{'notes': '', 'contribution': 'Weak', 'fillChoice': 'None', 'strategy': 'resorted to defense after couldn’t collect hatches', 'strongMedium': 'Neither', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7609', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-13', 'fillChoiceTeleop': 'Low Rocket', 'strongMediumTeleop': '', 'endingHab': 'Hab 1', 'functional': '', 'lowRocketSuccessTeleop': 'N/A', 'startingHatch': 'idk'}",
|
|
||||||
cargoSuccessTeleop,,N/A
|
|
||||||
sandstormCargoShipHatchSuccess,0,
|
|
||||||
startingHatch,,Hab I
|
|
||||||
e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,,"{'contribution': '', 'notes': 'literally useless just drove around trying to defend I think ', 'fillChoice': '', 'strategy': '', 'strongMedium': '', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-7609', 'speed': 'Medium', 'hiRocketSuccessTeleop': '', 'match': 'match-33', 'size': '', 'fillChoiceTeleop': '', 'strongMediumTeleop': '', 'endingHab': '', 'functional': '', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab I'}"
|
|
||||||
fillChoice,,None
|
|
||||||
functional,,Yes
|
|
||||||
sandstormCargoShipCargoSuccess,0,
|
|
||||||
strongMedium,,Neither
|
|
||||||
teleOpCargoShipCargoFailure,0,
|
|
||||||
sandstormRocketHatchFailure,0,
|
|
||||||
sandstormCargoShipHatchFailure,0,
|
|
||||||
fillChoiceTeleop,,None
|
|
||||||
contrubution,,Weak
|
|
||||||
HABClimb,L1,
|
|
||||||
match,match-13,match-33
|
|
||||||
hiRocketSuccessTeleop,,N/A
|
|
||||||
endingHab,,L1
|
|
||||||
teleOpCargoShipCargoSuccess,0,
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
klQQqapPjwO3jnpN8Dieequh3OI3,,"{'notes': '', 'contribution': 'Equal', 'fillChoice': '', 'strategy': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7738', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'match': 'match-30', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",
|
klQQqapPjwO3jnpN8Dieequh3OI3,jouGPhPF0qME5wNIbd86MzYFsGw2,9fv7QhcLPsfU59sRrPq7LcJlD8J3,gmkR7hN4D1fQguey5X5V48d3PhO2
|
||||||
jouGPhPF0qME5wNIbd86MzYFsGw2,,,"{'contribution': '', 'notes': '', 'fillChoice': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7738', 'hiRocketSuccessTeleop': '', 'speed': 'Medium', 'match': 'match-6', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Sorta', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}"
|
,,"{'contribution': 'Equal', 'notes': 'sort of slow, yet was able to land cargo balls', 'fillChoice': '', 'strategy': 'capture low-height low distance ', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Neither', 'teamDBRef': 'team-7738', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-26', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': '', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': 'Low'}",
|
||||||
9fv7QhcLPsfU59sRrPq7LcJlD8J3,"{'contribution': 'Equal', 'notes': 'sort of slow, yet was able to land cargo balls', 'fillChoice': '', 'strategy': 'capture low-height low distance ', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Neither', 'teamDBRef': 'team-7738', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Small', 'match': 'match-26', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': '', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': 'Low'}",,
|
"{'notes': '', 'contribution': 'Equal', 'fillChoice': '', 'strategy': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7738', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'match': 'match-30', 'size': 'Medium', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'Hab 1', 'functional': 'No', 'lowRocketSuccessTeleop': 'Mid', 'startingHatch': 'Hab I'}",,,
|
||||||
gmkR7hN4D1fQguey5X5V48d3PhO2,,,"{'contribution': '', 'notes': 'dc’ed in the middle', 'fillChoice': '', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Neither', 'teamDBRef': 'team-7738', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-6', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'idk', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}"
|
,"{'contribution': '', 'notes': '', 'fillChoice': '', 'strongMedium': 'Neither', 'cargoSuccessTeleop': 'Low', 'teamDBRef': 'team-7738', 'hiRocketSuccessTeleop': '', 'speed': 'Medium', 'match': 'match-6', 'size': 'Large', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': 'None', 'functional': 'Sorta', 'lowRocketSuccessTeleop': '', 'startingHatch': 'Hab II'}",,"{'contribution': '', 'notes': 'dc’ed in the middle', 'fillChoice': '', 'cargoSuccessTeleop': 'Mid', 'strongMedium': 'Neither', 'teamDBRef': 'team-7738', 'speed': 'Slow', 'hiRocketSuccessTeleop': '', 'size': 'Medium', 'match': 'match-6', 'fillChoiceTeleop': 'Cargo', 'strongMediumTeleop': 'Ball', 'endingHab': '', 'functional': 'idk', 'startingHatch': 'Hab II', 'lowRocketSuccessTeleop': ''}"
|
||||||
|
|
@ -1,23 +1,5 @@
|
|||||||
sandstormRocketCargoFailure,,,,0
|
sandstormRocketCargoFailure,teleOpRocketCargoSuccess,sandstormRocketHatchSuccess,teleOpCargoShipHatchFailure,nTG6cThsi9TB9mTkcwuo5bKEo9B3,sandstormRocketCargoSuccess,speed,teamDBRef,sandstormCross,teleOpCargoShipHatchSuccess,teleOpRocketHatchSuccess,sandstormCargoShipCargoFailure,teleOpRocketHatchFailure,teleOpRocketCargoFailure,sandstormCargoShipHatchSuccess,e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,sandstormCargoShipCargoSuccess,teleOpCargoShipCargoFailure,sandstormRocketHatchFailure,sandstormCargoShipHatchFailure,HABClimb,match,teleOpCargoShipCargoSuccess
|
||||||
teleOpRocketCargoSuccess,,,,2
|
,,,,"{'contribution': 'Great', 'notes': 'hatch did not stick on during storm', 'fillChoice': 'Low Rocket', 'strategy': 'focused on getting hatch and cargo on the rocket', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-930', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'size': 'Large', 'match': 'match-13', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'None', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'High'}",,,,,,,,,,,,,,,,,,
|
||||||
sandstormRocketHatchSuccess,,,,0
|
,,,,,,,,,,,,,,,"{'contribution': 'Equal', 'notes': 'the hatch mechanism is good it can get the high rocket hatch easily', 'fillChoice': 'High Rocket', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-930', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'match': 'match-32', 'size': 'Large', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'idk'}",,,,,,,
|
||||||
teleOpCargoShipHatchFailure,,,,0
|
,,,,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Low Rocket', 'strategy': 'hatch and ball in rocket. very successful in these areas. then ball in cargo ships', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-930', 'hiRocketSuccessTeleop': 'High', 'speed': 'Fast', 'match': 'match-46', 'size': 'Large', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'High'}",,,,,,,,,,,,,,,,,,
|
||||||
nTG6cThsi9TB9mTkcwuo5bKEo9B3,"{'contribution': 'Great', 'notes': 'hatch did not stick on during storm', 'fillChoice': 'Low Rocket', 'strategy': 'focused on getting hatch and cargo on the rocket', 'cargoSuccessTeleop': '', 'strongMedium': 'Hatch', 'teamDBRef': 'team-930', 'speed': 'Fast', 'hiRocketSuccessTeleop': 'High', 'size': 'Large', 'match': 'match-13', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Both', 'endingHab': 'None', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'High'}",,"{'contribution': 'Great', 'notes': '', 'fillChoice': 'Low Rocket', 'strategy': 'hatch and ball in rocket. very successful in these areas. then ball in cargo ships', 'cargoSuccessTeleop': 'High', 'strongMedium': 'Hatch', 'teamDBRef': 'team-930', 'hiRocketSuccessTeleop': 'High', 'speed': 'Fast', 'match': 'match-46', 'size': 'Large', 'fillChoiceTeleop': '', 'strongMediumTeleop': 'Hatch', 'endingHab': 'Hab 1', 'functional': 'Yes', 'startingHatch': 'Hab I', 'lowRocketSuccessTeleop': 'High'}",
|
0,2,0,0,,0,slow,team-930,L1,0,5,0,1,1,1,,0,0,0,0,None,match-7,0
|
||||||
sandstormRocketCargoSuccess,,,,0
|
|
||||||
speed,,,,slow
|
|
||||||
teamDBRef,,,,team-930
|
|
||||||
sandstormCross,,,,L1
|
|
||||||
teleOpCargoShipHatchSuccess,,,,0
|
|
||||||
teleOpRocketHatchSuccess,,,,5
|
|
||||||
sandstormCargoShipCargoFailure,,,,0
|
|
||||||
teleOpRocketHatchFailure,,,,1
|
|
||||||
teleOpRocketCargoFailure,,,,1
|
|
||||||
sandstormCargoShipHatchSuccess,,,,1
|
|
||||||
e0Q3j2NrXuYvSrgZ5UZQ89UMvXY2,,"{'contribution': 'Equal', 'notes': 'the hatch mechanism is good it can get the high rocket hatch easily', 'fillChoice': 'High Rocket', 'strategy': '', 'strongMedium': 'Hatch', 'cargoSuccessTeleop': '', 'teamDBRef': 'team-930', 'speed': 'Medium', 'hiRocketSuccessTeleop': 'High', 'match': 'match-32', 'size': 'Large', 'fillChoiceTeleop': 'High Rocket', 'strongMediumTeleop': 'Hatch', 'endingHab': '', 'functional': 'Yes', 'lowRocketSuccessTeleop': '', 'startingHatch': 'idk'}",,
|
|
||||||
sandstormCargoShipCargoSuccess,,,,0
|
|
||||||
teleOpCargoShipCargoFailure,,,,0
|
|
||||||
sandstormRocketHatchFailure,,,,0
|
|
||||||
sandstormCargoShipHatchFailure,,,,0
|
|
||||||
HABClimb,,,,None
|
|
||||||
match,,,,match-7
|
|
||||||
teleOpCargoShipCargoSuccess,,,,0
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user