- 28-32 PSI on Race tires
- On track temps near 32-33 psi
- Lower pressure = smoother loss of grip
- Lower Front/Higher Rear = Oversteer
- Higher Front/Lower Rear = Understeer
Drop front a notch to correct understeer for specific tracks
class Formatting { | |
private getCountriesQuery(skip: number, limit: number, order: string, searchName: string) { | |
const Continentscountriescities_Country = Parse.Object.extend('Continentscountriescities_Country'); | |
const query = new Parse.Query(Continentscountriescities_Country); | |
query.limit(limit); // limit to at most 10 results | |
query.skip(skip); // skip the first 10 results | |
const orders: string[] = order.split(','); | |
orders.map(o => { | |
if (o.startsWith('-')) { |
// Mixins providing different address formatting functions. | |
// This allows address display to be consistent across the entire app. | |
export const AddressMixin = { | |
methods: { | |
formatAddress (address) { | |
let text = '' | |
if (address !== null) { | |
if (address.streetAddress) text += address.streetAddress + '<br />' | |
if (address.city) text += address.city | |
if (address.state) { |