Module: NYCGeoClient::Client::BBL

Included in:
NYCGeoClient::Client
Defined in:
lib/nyc_geo_client/client/bbl.rb

Overview

Defines methods related to branches

Instance Method Summary collapse

Instance Method Details

#bbl(borough, block, lot) ⇒ Hashie::Mash

Returns property level information about a tax lot.

Examples:

property level information about a tax lot

NYCGeoClient.bbl('manhattan','00233', '0004')

Parameters:

  • borough (String)

    The borough in which the address is located

  • block (String)

    Tax block number

  • lot (String)

    Tax lot number

Returns:

  • (Hashie::Mash)


15
16
17
18
19
20
21
22
# File 'lib/nyc_geo_client/client/bbl.rb', line 15

def bbl(borough, block, lot)
  options = {
    block:   block,
    lot:     lot,
    borough: borough
  }
  get(bbl_path, options)
end