Brands Hatch definitely is safe.Big session last night, golding both TTs.
Genesis brand hatch : 1:41.395
Valkyrie red bull : 1:18.430
Both should be safe ?
Guys, I'm pleased to announce that now, we, plebeian D-Pad users, can now match those wheel user aliens.
As for my time? See for yourselves:
Yes... 18th in the world. I couldn't believe it, but I've also read the patch notes and apparently, the controller sensitivity has been re-worked, and I guess that's why the Dualsense feels so much sharper in the slow speed corners in particular. Hopefully PD lets it stay this way. If I can put up a time like this, then the Alien D-Pad users are probably right up there with the wheel monsters.
Only 1 tenth away from the top 10 and only 0.5% / 4 tenths off the time of aliens like Drumont... I'll try to improve it further even.
My personal curse of the Hatch continues....
1:40.2xx....1:40.1xx...1:40.089....1:40.056 and now a 1:40.014 🤣🤣
Welcome to GTPlanet!Hi guys,
first time poster here. I joined the GT7 community when I bought my PSVR2. Not having been a huge racing game fan until this point, I expected it to be a fun experience, but not much beyond that. Oh how wrong I was
Anyway, after having completed all the menus and driven ~14,000 km in the various single player modes over the last few months, I have now shifted my attention to the sports mode, and time trials in particular. I am really not good at it compared to a lot of you guys here, but over the last few weeks I at least improved to the point where I can somewhat comfortably get into silver territory - gold is definitely out of reach though (so far, I am working on it ).
I have been very much enjoying the statistics that @half_sourly is publishing on a regular basis, but being as impatient as I am, I was looking for a way to get some of that data in real time, and created this little script: https://greasyfork.org/en/scripts/469934-gt7-tt-statistics
You can install it in your browser with an extension such as Tampermonkey or Userscript. When you visit a time trial on the GT website, e.g. https://www.gran-turismo.com/us/gt7/sportmode/event/6696/ for the current Valkyrie one, it will show a little red "Stats" link in the top menu. This will open a pop-up with the current number of participants and the percentage of players in each tier (be patient, it might take up to 30 seconds to load all the data). The percentages are cumulative, so e.g. the bronze percentage includes all players in bronze, silver and gold.
Let me know if you think it's useful, find bugs or have suggestions for additional features.
That is wheelspin due to lack traction. You need to lift throttle slightly, and/or let go the overtake button, or keep it pinned and just wait it out.Does anyone have issues with the valkyrie cutting throttle in 4th or 5th gear on the back straight? Seems hud shows something up with right rear wheel. TCS at 0
Welcome to .Hi guys,
first time poster here. I joined the GT7 community when I bought my PSVR2. Not having been a huge racing game fan until this point, I expected it to be a fun experience, but not much beyond that. Oh how wrong I was
Anyway, after having completed all the menus and driven ~14,000 km in the various single player modes over the last few months, I have now shifted my attention to the sports mode, and time trials in particular. I am really not good at it compared to a lot of you guys here, but over the last few weeks I at least improved to the point where I can somewhat comfortably get into silver territory - gold is definitely out of reach though (so far, I am working on it ).
I have been very much enjoying the statistics that @half_sourly is publishing on a regular basis, but being as impatient as I am, I was looking for a way to get some of that data in real time, and created this little script: https://greasyfork.org/en/scripts/469934-gt7-tt-statistics
You can install it in your browser with an extension such as Tampermonkey or Userscript. When you visit a time trial on the GT website, e.g. https://www.gran-turismo.com/us/gt7/sportmode/event/6696/ for the current Valkyrie one, it will show a little red "Stats" link in the top menu. This will open a pop-up with the current number of participants and the percentage of players in each tier (be patient, it might take up to 30 seconds to load all the data). The percentages are cumulative, so e.g. the bronze percentage includes all players in bronze, silver and gold.
View attachment 1269855
View attachment 1269856
Let me know if you think it's useful, find bugs or have suggestions for additional features.
Thanks a lot, this is a great community you're having here!Welcome to .
Right, so what it does is:I presume the result is produced relatively quickly because the script only has to find a few data points; first time, total participants, gold, silver and bronze times and participant count at each. Guess you'd still need the full results set do analysis like DR splits, etc?
I don't know what your current process is, but there are certainly ways to automate parts, e.g. scraping the raw data for an event into a CSV file etc. Let me know how I can help you.If there is a way to automate some of the analysis I do in the weekly results, I'd be very interested to hear about it.
Technically yes, that should be possible, although not very efficiently. I did not yet see an API that returns the times for an individual player, which would mean the script cannot do the binary search and would have to sequentially fetch all pages of each event until it finds the player, so for a player that sits at 50% of the ranking, that would mean 500 requests for an event that has 1,000 pages (100,000 players). And there also seems to be an API rate limiter in place, so it might be that the script would have to be throttled.I wonder also if you'd be able to create a script for a driver's results across all TTs to date?
Guys......ladies and gentleman and aliens...
Today is the day.... I'm hyped, I'm happy and i am damn proud of myself pulling this of!
I finally killed the curse of the Hatch! The worst thing is that I had a pretty bad S2 and I lost a fair bit of time in the last corner but for me....irrelevant 🤣🤣 ......Hello 39 club 😁 🤣🤣.
For the people who think this came easy for me.....naaah... I fought for it for 2372 km that's 1474 miles ....
For me that is my day driving to my vacation location in the south of France and back 🤣
But this morning it was all worth it
@Dan_Tes sorry dude 🤣
1:39.906
View attachment 1269926
View attachment 1269925
Thanks for the reply.Thanks a lot, this is a great community you're having here!
Right, so what it does is:
- fetch the first page to get the top time and the number of pages, calculate the times for bronze, silver and gold
- fetch the last page to get the total participants
- do a binary search for the pages containing the gold, silver and bronze times (i.e. if there are 1000 pages, start with 500, then 250 or 750 and so forth). For the 886 pages of the Valkyrie TT it currently takes 28 requests to find all relevant pages
What's a DR split?
I don't know what your current process is, but there are certainly ways to automate parts, e.g. scraping the raw data for an event into a CSV file etc. Let me know how I can help you.
Technically yes, that should be possible, although not very efficiently. I did not yet see an API that returns the times for an individual player, which would mean the script cannot do the binary search and would have to sequentially fetch all pages of each event until it finds the player, so for a player that sits at 50% of the ranking, that would mean 500 requests for an event that has 1,000 pages (100,000 players). And there also seems to be an API rate limiter in place, so it might be that the script would have to be throttled.
Guys......ladies and gentleman and aliens...
Today is the day.... I'm hyped, I'm happy and i am damn proud of myself pulling this of!
I finally killed the curse of the Hatch! The worst thing is that I had a pretty bad S2 and I lost a fair bit of time in the last corner but for me....irrelevant 🤣🤣 ......Hello 39 club 😁 🤣🤣.
For the people who think this came easy for me.....naaah... I fought for it for 2372 km that's 1474 miles ....
For me that is my day driving to my vacation location in the south of France and back 🤣
But this morning it was all worth it
@Dan_Tes sorry dude 🤣
1:39.906
View attachment 1269926
View attachment 1269925