Skip to content

Instantly share code, notes, and snippets.

@unruthless
Created July 26, 2012 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save unruthless/3184073 to your computer and use it in GitHub Desktop.
Save unruthless/3184073 to your computer and use it in GitHub Desktop.
Parking Spot calculator logic
var qty_parking_spots,
square_feet,
qty_lubrication_or_service_bay,
qty_day_shift_employees;
// Automobile or machinery sales and service garages
// rule: 1 parking space for each 400 square feet of floor area
parking_spots = floor(square_feet / 400);
// etc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment