Skip to content

Instantly share code, notes, and snippets.

@DaveyJake
Created September 13, 2023 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DaveyJake/69719345ff4fed5da087a8d94f393ec1 to your computer and use it in GitHub Desktop.
Save DaveyJake/69719345ff4fed5da087a8d94f393ec1 to your computer and use it in GitHub Desktop.
Common Street and Direction Abbreviations
/**
* Abbreviations for common street names and directions.
*
* @author Davey Jacobson <daveyjake21 [at] geemail [dot] com>
*/
const addressAbbreviations = {
'Avenue': 'Ave',
'Boulevard': 'Blvd',
'Circle': 'Cir',
'Drive': 'Dr',
'Lane': 'Ln',
'Parkway': 'Pkwy',
'Pike': 'Pk',
'Road': 'Rd',
'Street': 'St',
'Suite': 'Ste',
'Way': 'Wy',
// Directional
'North': 'N',
'N. ': 'N ',
'East': 'E',
'E. ': 'E ',
'South': 'S',
'S. ': 'S ',
'West': 'W',
'W. ': 'W '
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment