2.0.0 • Published 3 years ago

gridbeam-systems v2.0.0

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
3 years ago

gridbeam-systems

modular GridBeam systems

npm install --save gridbeam-systems

usage

const systems = require('gridbeam-systems')

systems

gridbeam.com

  • name: gridbeam.com
  • system of measurement: imperial
  • default beam width: 1 1/2 inch
  • default material: wood
beam widthmaterialshole diameterbolt diameter
1 1/2 inchwood5/16 inch1/4 inch
1 1/2 inchaluminum13/32 inch3/8 inch
2 inchaluminum, steel7/16 inch3/8 inch
3 inchaluminum3/4 inch1/2 inch

how-to-build-with-grid-beam-book

  • name: "How To Build With Grid Beam" book
  • system of measurement: imperial
  • default beam width: 1 1/2 inch
  • default material: wood
beam widthmaterialshole diameterbolt diameter
3/4 inchmetal9/32 inch1/4 inch
1 inchmetal11/32 inch5/16 inch
1 1/2 inchwood5/16 inch1/4 inch
1 1/2 inchmetal21/64 inch5/16 inch
2 inchmetal7/16 inch3/8 inch

gridkit.nz

  • name: gridkit.nz
  • system of measurement: metric
  • default beam width: 40 mm
  • default material: wood
beam widthmaterialshole diameterbolt diameter
40 mmwood8 mm6 mm

data schema

interface System {
  id: string
  label: string
  systemOfMeasurement: 'imperial' | 'metric'
  defaultSizeId: string
  sizes: Array<Size>
  defaultMaterialId: string
  materials: Array<Material>
}

interface Size {
  id: string
  beamWidth: number
  beamWidthLabel: string
  holes: Array<Hole>
}

interface Hole {
  id: string
  holeDiameter: number
  holeDiameterLabel: string
  boltDiameter: number
  boltDiameterLabel: string
}

interface Material {
  id: string
  label: string
  sizeIds: Array<string>
  holeId: string
}

license

The Apache License

Copyright © 2019 Michael Williams

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

2.0.0

3 years ago

1.0.0

5 years ago