@cityssm/mpac-tools 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/codes/index.d.ts +5 -0
- package/codes/index.js +5 -0
- package/codes/index.ts +5 -0
- package/codes/yetf.bb.codes.d.ts +340 -0
- package/codes/yetf.bb.codes.js +341 -0
- package/codes/yetf.bb.codes.ts +356 -0
- package/codes/yetf.cc.codes.d.ts +297 -0
- package/codes/yetf.cc.codes.js +329 -0
- package/codes/yetf.cc.codes.ts +358 -0
- package/codes/yetf.dd.codes.d.ts +16 -0
- package/codes/yetf.dd.codes.js +42 -0
- package/codes/yetf.dd.codes.ts +45 -0
- package/codes/yetf.gg.codes.d.ts +48 -0
- package/codes/yetf.gg.codes.js +48 -0
- package/codes/yetf.gg.codes.ts +52 -0
- package/codes/yetf.pa.codes.d.ts +82 -0
- package/codes/yetf.pa.codes.js +131 -0
- package/codes/yetf.pa.codes.ts +137 -0
- package/index.d.ts +2 -1
- package/index.js +2 -1
- package/index.ts +3 -1
- package/package.json +11 -4
- package/rollNumbers/lookups.js +29 -0
- package/rollNumbers/utilities.d.ts +10 -0
- package/rollNumbers/utilities.js +11 -0
- package/rollNumbers/utilities.ts +0 -1
- package/CODE_OF_CONDUCT.md +0 -140
- package/CONTRIBUTING.md +0 -33
- package/SECURITY.md +0 -15
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
/* eslint-disable @cspell/spellchecker */
|
|
2
|
+
|
|
3
|
+
export const propertyCodeClasses = {
|
|
4
|
+
100: 'Land',
|
|
5
|
+
200: 'Farm',
|
|
6
|
+
300: 'Residential',
|
|
7
|
+
400: 'Commercial',
|
|
8
|
+
500: 'Industrial',
|
|
9
|
+
600: 'Institutional',
|
|
10
|
+
700: 'Special Purpose',
|
|
11
|
+
800: 'Government'
|
|
12
|
+
} as const
|
|
13
|
+
|
|
14
|
+
export const propertyCodeNames = {
|
|
15
|
+
'100': 'Vacant residential land not on water',
|
|
16
|
+
'101': 'Second tier vacant lot',
|
|
17
|
+
'102': 'Conservation Authority land',
|
|
18
|
+
'103': 'Municipal park',
|
|
19
|
+
'105': 'Vacant commercial land',
|
|
20
|
+
'106': 'Vacant industrial land',
|
|
21
|
+
'107': 'Provincial park',
|
|
22
|
+
'108': 'Federal park',
|
|
23
|
+
'109': 'Large land holdings, greater than 1000 acres',
|
|
24
|
+
'110': 'Vacant residential/recreational land on water',
|
|
25
|
+
'111': 'Island under single ownership',
|
|
26
|
+
'112': 'Multi-residential vacant land',
|
|
27
|
+
'113': 'Condominium development land - residential (vacant lot)',
|
|
28
|
+
'114': 'Condominium development land - non residential (vacant lot)',
|
|
29
|
+
'115': 'Property in process of redevelopment utilizing existing structure(s)',
|
|
30
|
+
'120': 'Water lot (entirely under water)',
|
|
31
|
+
'125': 'Residential development land',
|
|
32
|
+
'127': 'Townhouse block - freehold units',
|
|
33
|
+
'130': 'Non-buildable land',
|
|
34
|
+
'134': 'Land designated and zoned for open space',
|
|
35
|
+
'140': 'Common land',
|
|
36
|
+
'150': 'Mining lands - patented',
|
|
37
|
+
'151': 'Mining lands - unpatented',
|
|
38
|
+
'155': 'Land associated with power dam',
|
|
39
|
+
'169': 'Vacant land condominium (residential)',
|
|
40
|
+
'200': 'Farm property without any buildings/structures',
|
|
41
|
+
'201':
|
|
42
|
+
'Farm with residence - with or without secondary structures; no farm outbuildings',
|
|
43
|
+
'210':
|
|
44
|
+
'Farm without residence - with secondary structures; with farm outbuildings',
|
|
45
|
+
'211':
|
|
46
|
+
'Farm with residence - with or without secondary structures; with farm outbuildings',
|
|
47
|
+
'220': 'Farm without residence - with commercial/industrial operation',
|
|
48
|
+
'221': 'Farm with residence - with commercial/industrial operation',
|
|
49
|
+
'222': 'Farm with a winery',
|
|
50
|
+
'223': 'Grain/seed and feed operation',
|
|
51
|
+
'224': 'Tobacco farm',
|
|
52
|
+
'225': 'Ginseng farm',
|
|
53
|
+
'226': 'Exotic farms',
|
|
54
|
+
'227': 'Nut Orchard',
|
|
55
|
+
'228': 'Farm with gravel pit',
|
|
56
|
+
'229': 'Farm with campground/mobile home park',
|
|
57
|
+
'230': 'Intensive farm operation - without residence',
|
|
58
|
+
'231': 'Intensive farm operation - with residence',
|
|
59
|
+
'232': 'Large scale greenhouse operation',
|
|
60
|
+
'233': 'Large scale swine operation',
|
|
61
|
+
'234': 'Large scale poultry operation',
|
|
62
|
+
'235': 'Government - agriculture research facility',
|
|
63
|
+
'236': 'Farm with oil/gas well(s)',
|
|
64
|
+
'240': 'Managed forest property, vacant land not on water',
|
|
65
|
+
'241': 'Managed forest property, vacant land on water',
|
|
66
|
+
'242': 'Managed forest property, seasonal residence not on water',
|
|
67
|
+
'243': 'Managed forest property, seasonal residence on water',
|
|
68
|
+
'244': 'Managed forest property, residence not on water',
|
|
69
|
+
'245': 'Managed forest property, residence on water',
|
|
70
|
+
'260':
|
|
71
|
+
'Vacant residential/commercial/ industrial land owned by a non-farmer with a portion being farmed',
|
|
72
|
+
'261':
|
|
73
|
+
'Land owned by a non-farmer improved with a non-farm residence with a portion being farmed',
|
|
74
|
+
'262':
|
|
75
|
+
'Land owned by a farmer improved with a non-farm residence with a portion being farmed',
|
|
76
|
+
'301': 'Single family detached (not on water)',
|
|
77
|
+
'302': 'More than one structure used for residential purposes',
|
|
78
|
+
'303': 'Residence with a commercial unit',
|
|
79
|
+
'304': 'Residence with a commercial/ industrial use building',
|
|
80
|
+
'305': 'Link home',
|
|
81
|
+
'306': 'Boathouse with residence above',
|
|
82
|
+
'307': 'Community lifestyle (not a mobile home park)',
|
|
83
|
+
'309': 'Freehold Townhouse/Row house',
|
|
84
|
+
'311': 'Semi-detached residential',
|
|
85
|
+
'313': 'Single family detached on water',
|
|
86
|
+
'314': 'Clergy Residence',
|
|
87
|
+
'322': 'Semi-detached residence with both units under one ownership',
|
|
88
|
+
'332': 'Residential structure with two self-contained units.',
|
|
89
|
+
'333': 'Residential property with three self-contained units',
|
|
90
|
+
'334': 'Residential property with four self-contained units',
|
|
91
|
+
'335': 'Residential property with five self-contained units',
|
|
92
|
+
'336': 'Residential property with six self-contained units',
|
|
93
|
+
'340': 'Multi-residential, with 7 or more self-contained units',
|
|
94
|
+
'341':
|
|
95
|
+
'Multi-residential, with 7 or more self-contained residential units, with small commercial unit(s)',
|
|
96
|
+
'350': 'Row housing, with three to six units under single ownership',
|
|
97
|
+
'352': 'Row housing, with seven or more units under single ownership',
|
|
98
|
+
'360': 'Rooming or boarding house',
|
|
99
|
+
'361': 'Bachelorette',
|
|
100
|
+
'363': 'House-keeping cottages - no American plan',
|
|
101
|
+
'364': 'House-keeping cottages - less than 50% American plan',
|
|
102
|
+
'365': 'Group Home',
|
|
103
|
+
'366': 'Student housing (off campus)',
|
|
104
|
+
'367': 'Service or amenity unit',
|
|
105
|
+
'368': 'Residential Dockominium',
|
|
106
|
+
'369': 'Vacant land condominium (residential - improved)',
|
|
107
|
+
'370': 'Residential Condominium Unit',
|
|
108
|
+
'371': 'Life Lease - No Redemption.',
|
|
109
|
+
'372': 'Life Lease - Return on Invest.',
|
|
110
|
+
'373': 'Cooperative housing - equity',
|
|
111
|
+
'374': 'Cooperative housing - non-equity',
|
|
112
|
+
'375': 'Co-ownership',
|
|
113
|
+
'376': 'Condominium locker unit - separately deeded.',
|
|
114
|
+
'377': 'Condominium parking space/unit - separately deeded.',
|
|
115
|
+
'378': 'Residential Leasehold Condominium Corporation',
|
|
116
|
+
'379': 'Residential phased condominium corporation',
|
|
117
|
+
'380': 'Residential common elements condominium corporation',
|
|
118
|
+
'381': 'Mobile home',
|
|
119
|
+
'382': 'Mobile home park',
|
|
120
|
+
'383': 'Bed and breakfast establishment',
|
|
121
|
+
'385': 'Time-share, fee simple',
|
|
122
|
+
'386': 'Time share, right-to-use',
|
|
123
|
+
'391': 'Seasonal/recreational dwelling - first tier on water',
|
|
124
|
+
'392': 'Seasonal/recreational dwelling - second tier to water',
|
|
125
|
+
'395': 'Seasonal/recreational dwelling - not located on water',
|
|
126
|
+
'400': 'Small Office building',
|
|
127
|
+
'401': 'Small Medical/dental building',
|
|
128
|
+
'402': 'Large office building',
|
|
129
|
+
'403': 'Large medical/dental building',
|
|
130
|
+
'405': 'Office use converted from house',
|
|
131
|
+
'406': 'Retail use converted from house',
|
|
132
|
+
'407': 'Retail lumber yard',
|
|
133
|
+
'408': 'Freestanding Beer Store or LCBO',
|
|
134
|
+
'409': 'Retail',
|
|
135
|
+
'410': 'Retail',
|
|
136
|
+
'411': 'Restaurant - conventional',
|
|
137
|
+
'412': 'Restaurant - fast food',
|
|
138
|
+
'413': 'Restaurant - conventional, national chain',
|
|
139
|
+
'414': 'Restaurant - fast food, national chain',
|
|
140
|
+
'415': 'Cinema/movie house/drive-in',
|
|
141
|
+
'416': 'Concert hall/live theatre',
|
|
142
|
+
'417': 'Entertainment complex',
|
|
143
|
+
'419': 'Automotive service centre, highway - 400 series highways',
|
|
144
|
+
'420': 'Automotive fuel station with or without service facilities',
|
|
145
|
+
'421': 'Specialty automotive shop',
|
|
146
|
+
'422': 'Auto dealership',
|
|
147
|
+
'423': 'Auto dealership',
|
|
148
|
+
'425': 'Neighbourhood shopping centre',
|
|
149
|
+
'426': 'Small box shopping centre',
|
|
150
|
+
'427': 'Big box shopping/power centre',
|
|
151
|
+
'428': 'Regional shopping centre',
|
|
152
|
+
'429': 'Community shopping centre',
|
|
153
|
+
'430': 'Neighbourhood shopping centre',
|
|
154
|
+
'431': 'Department store',
|
|
155
|
+
'432': 'Banks and similar financial institutions, including credit unions',
|
|
156
|
+
'433': 'Banks and similar financial institutions, including credit unions',
|
|
157
|
+
'434': 'Freestanding supermarket',
|
|
158
|
+
'435': 'Large retail building centre',
|
|
159
|
+
'436': 'Freestanding large retail store, national chain',
|
|
160
|
+
'438': 'Neighbourhood shopping centre with offices above',
|
|
161
|
+
'441': 'Tavern/public house/small hotel',
|
|
162
|
+
'444': 'Full service hotel',
|
|
163
|
+
'445': 'Limited service hotel',
|
|
164
|
+
'446': 'Apartment hotel',
|
|
165
|
+
'447': 'Condominium Hotel Unit',
|
|
166
|
+
'450': 'Motel',
|
|
167
|
+
'451': 'Seasonal motel',
|
|
168
|
+
'460': 'Resort hotel',
|
|
169
|
+
'461': 'Resort lodge',
|
|
170
|
+
'462': 'Country inns & small inns',
|
|
171
|
+
'463': 'Fishing/hunting lodges/resorts',
|
|
172
|
+
'465': 'Child and community oriented camp/resort',
|
|
173
|
+
'470': 'Multi-type complex',
|
|
174
|
+
'471': 'Retail or office with residential unit(s) above or behind',
|
|
175
|
+
'472': 'Retail or office with residential unit(s) above or behind',
|
|
176
|
+
'473': 'Retail with more than one non-retail use',
|
|
177
|
+
'475': 'Commercial condominium',
|
|
178
|
+
'476': 'Commercial condominium (live/work)',
|
|
179
|
+
'477': 'Retail with office(s)',
|
|
180
|
+
'478': 'Retail with office(s)',
|
|
181
|
+
'480': 'Surface parking lot',
|
|
182
|
+
'481': 'Parking garage',
|
|
183
|
+
'482': 'Surface parking lot',
|
|
184
|
+
'483': 'Parking garage',
|
|
185
|
+
'486': 'Campground',
|
|
186
|
+
'487': 'Billboard',
|
|
187
|
+
'489': 'Driving range/golf centre',
|
|
188
|
+
'490': 'Golf course',
|
|
189
|
+
'491': 'Ski resort',
|
|
190
|
+
'492': 'Marina - located on waterfront',
|
|
191
|
+
'493': 'Marina - not located on waterfront',
|
|
192
|
+
'495': 'Communication towers',
|
|
193
|
+
'496': 'Communication buildings',
|
|
194
|
+
'500': 'Mines - active',
|
|
195
|
+
'501': 'Mines - inactive',
|
|
196
|
+
'502': 'Mine tailings site associated with an active mine',
|
|
197
|
+
'503': 'Mine tailings site not associated with an active mine',
|
|
198
|
+
'504': 'Oil/gas wells',
|
|
199
|
+
'505': 'Sawmill/lumber mill',
|
|
200
|
+
'506': 'Forest products',
|
|
201
|
+
'510': 'Heavy manufacturing (non-automotive)',
|
|
202
|
+
'511': 'Pulp and paper mill',
|
|
203
|
+
'512': 'Cement/asphalt manufacturing plant',
|
|
204
|
+
'513': 'Steel mill',
|
|
205
|
+
'514': 'Automotive assembly plant',
|
|
206
|
+
'515': 'Shipyard/dry-dock',
|
|
207
|
+
'516': 'Automotive parts production plant',
|
|
208
|
+
'517': 'Specialty steel production (mini-mills)',
|
|
209
|
+
'518': 'Smelter/ore processing',
|
|
210
|
+
'519': 'Foundry',
|
|
211
|
+
'520':
|
|
212
|
+
'Standard industrial properties not specifically identified by other industrial Property Codes',
|
|
213
|
+
'521': 'Distillery/brewery',
|
|
214
|
+
'522': 'Grain elevators - Great Lakes waterway',
|
|
215
|
+
'523': 'Grain handling - Primary elevators (including feed mills)',
|
|
216
|
+
'525': 'Process elevators - flour mills, oilseed crushing, malt houses',
|
|
217
|
+
'527': 'Abattoir/slaughter house/rendering plants',
|
|
218
|
+
'528': 'Food processing plant',
|
|
219
|
+
'529': 'Freezer plant/cold storage',
|
|
220
|
+
'530': 'Warehousing',
|
|
221
|
+
'531': 'Mini-warehousing',
|
|
222
|
+
'532': 'Dry Cleaning Plant',
|
|
223
|
+
'535': 'Research and development facilities',
|
|
224
|
+
'540': 'Other industrial',
|
|
225
|
+
'541': 'Printing plant',
|
|
226
|
+
'544': 'Truck terminal',
|
|
227
|
+
'545': 'Major distribution centre',
|
|
228
|
+
'550': 'Petro-chemical plant',
|
|
229
|
+
'551': 'Oil refinery',
|
|
230
|
+
'552': 'Tank farm',
|
|
231
|
+
'553': 'Bulk oil/fuel distribution terminal',
|
|
232
|
+
'555': 'O.P.G. Hydraulic Generating Station',
|
|
233
|
+
'556': 'O.P.G. Nuclear Generating Station',
|
|
234
|
+
'557': 'O.P.G. Fossil Generating Station',
|
|
235
|
+
'558': 'Hydro One Transformer Station',
|
|
236
|
+
'559': 'MEU Generating Station',
|
|
237
|
+
'560': 'MEU Transformer Station',
|
|
238
|
+
'561': 'Hydro One Right-of-Way',
|
|
239
|
+
'562': 'Private Hydro Rights-of-Way',
|
|
240
|
+
'563': 'Private Hydraulic Generating Station',
|
|
241
|
+
'564': 'Private Nuclear Generating Station',
|
|
242
|
+
'565': 'Private Generating Station (Fossil Fuels and Cogen)',
|
|
243
|
+
'566': 'Private Transformer Station',
|
|
244
|
+
'567': 'Wind Turbine',
|
|
245
|
+
'568': 'Solar/Photo Voltaic Electricity Generating Facility',
|
|
246
|
+
'575': 'Industrial condominium',
|
|
247
|
+
'580': 'Industrial mall',
|
|
248
|
+
'588': 'Pipelines',
|
|
249
|
+
'589': 'Compressor station',
|
|
250
|
+
'590': 'Water treatment/filtration/water towers/pumping station',
|
|
251
|
+
'591': 'Sewage treatment/waste pumping/waste disposal',
|
|
252
|
+
'592': 'Dump/transfer station/incineration plant/landfill',
|
|
253
|
+
'593': 'Gravel pit, quarry, sand pit',
|
|
254
|
+
'594': 'Peat moss operation',
|
|
255
|
+
'595': 'Heat or steam plant',
|
|
256
|
+
'596': 'Recycling facility',
|
|
257
|
+
'597': 'Railway right-of-way',
|
|
258
|
+
'598':
|
|
259
|
+
'Railway buildings and lands described as assessable in the Assessment Act',
|
|
260
|
+
'599': 'GO transit station/rail yard',
|
|
261
|
+
'601': 'Post secondary education',
|
|
262
|
+
'602':
|
|
263
|
+
'Multiple occupancy educational institutional residence located on or off campus',
|
|
264
|
+
'605': 'School',
|
|
265
|
+
'608': 'Day Care',
|
|
266
|
+
'610': 'Other educational institution',
|
|
267
|
+
'611': 'Other institutional residence',
|
|
268
|
+
'621': 'Hospital, private or public',
|
|
269
|
+
'623': 'Continuum of care seniors facility',
|
|
270
|
+
'624': 'Retirement/nursing home (combined)',
|
|
271
|
+
'625': 'Nursing home',
|
|
272
|
+
'626': 'Old age/retirement home',
|
|
273
|
+
'627': 'Other health care facility',
|
|
274
|
+
'630': 'Federal penitentiary or correctional facility',
|
|
275
|
+
'631': 'Provincial correctional facility',
|
|
276
|
+
'632': 'Other correctional facility',
|
|
277
|
+
'700': 'Place of worship - with a clergy residence',
|
|
278
|
+
'701': 'Place of Worship - without a clergy residence',
|
|
279
|
+
'702': 'Cemetery',
|
|
280
|
+
'703': 'Cemetery with non-internment services',
|
|
281
|
+
'704': 'Crematorium',
|
|
282
|
+
'705': 'Funeral Home',
|
|
283
|
+
'710': 'Recreational sport club - non commercial',
|
|
284
|
+
'711': 'Bowling alley',
|
|
285
|
+
'713': 'Casino',
|
|
286
|
+
'715': 'Racetrack - auto',
|
|
287
|
+
'716': 'Racetrack - horse, with slot facility',
|
|
288
|
+
'717': 'Racetrack - horse, without slot facility',
|
|
289
|
+
'718': 'Exhibition grounds/fair grounds',
|
|
290
|
+
'720': 'Commercial sport complex',
|
|
291
|
+
'721': 'Non-commercial sports complex',
|
|
292
|
+
'722': 'Professional sports complex',
|
|
293
|
+
'725': 'Amusement park',
|
|
294
|
+
'726': 'Amusement park - large/regional',
|
|
295
|
+
'730': 'Museum and/or art gallery',
|
|
296
|
+
'731': 'Library and/or literary institutions',
|
|
297
|
+
'733': 'Convention, conference, congress centre',
|
|
298
|
+
'734': 'Banquet hall',
|
|
299
|
+
'735': 'Assembly hall, community hall',
|
|
300
|
+
'736': 'Clubs - private, fraternal',
|
|
301
|
+
'737': 'Federal airport',
|
|
302
|
+
'738': 'Provincial airport',
|
|
303
|
+
'739': 'Local government airport',
|
|
304
|
+
'740': 'Airport leasehold',
|
|
305
|
+
'741': 'Airport Authority',
|
|
306
|
+
'742': 'Public transportation - easements and rights',
|
|
307
|
+
'743': 'International bridge/tunnel',
|
|
308
|
+
'744': 'Private airport/hangar',
|
|
309
|
+
'745': 'Recreational airport',
|
|
310
|
+
'746': 'Subway station',
|
|
311
|
+
'748': 'Transit garage',
|
|
312
|
+
'749': 'Public transportation - other',
|
|
313
|
+
'750':
|
|
314
|
+
'Scientific, pharmaceutical, medical research facility (structures predominantly other than office)',
|
|
315
|
+
'755': 'Lighthouses',
|
|
316
|
+
'760': 'Military base or camp (CFB)',
|
|
317
|
+
'761': 'Armoury',
|
|
318
|
+
'762': 'Military education facility',
|
|
319
|
+
'805': 'Post office or depot',
|
|
320
|
+
'806': 'Postal mechanical sorting facility',
|
|
321
|
+
'810': 'Fire Hall',
|
|
322
|
+
'812': 'Ambulance Station',
|
|
323
|
+
'815': 'Police Station',
|
|
324
|
+
'822': 'Government - agricultural research facility',
|
|
325
|
+
'824': 'Government - wharves and harbours',
|
|
326
|
+
'826': 'Government - special educational facility',
|
|
327
|
+
'828': 'Government - canals and locks',
|
|
328
|
+
'830': 'Government - navigational facilities',
|
|
329
|
+
'832': 'Government - historic site or monument',
|
|
330
|
+
'840': 'Port authority - port activities',
|
|
331
|
+
'842': 'Port authority - other activities'
|
|
332
|
+
} as const
|
|
333
|
+
|
|
334
|
+
export const serviceCodeNames = {
|
|
335
|
+
A: 'All Services',
|
|
336
|
+
H: 'Hydro Access',
|
|
337
|
+
M: 'Municipal Water',
|
|
338
|
+
N: 'No Services',
|
|
339
|
+
P: 'Part Services',
|
|
340
|
+
S: 'Sanitary Services',
|
|
341
|
+
T: 'Septic System',
|
|
342
|
+
W: 'Well Water',
|
|
343
|
+
X: 'No Water',
|
|
344
|
+
Y: 'No Water Disposal'
|
|
345
|
+
} as const
|
|
346
|
+
|
|
347
|
+
export const accessCodeNames = {
|
|
348
|
+
I: 'Island Access',
|
|
349
|
+
L: 'Land Locked',
|
|
350
|
+
N: 'No Road Access',
|
|
351
|
+
O: 'Private Road Access',
|
|
352
|
+
R: 'Right-of-Way Access',
|
|
353
|
+
S: 'Summer or Seasonal Access Only',
|
|
354
|
+
W: 'Water Access Only',
|
|
355
|
+
Y: 'Year Round Access by Road'
|
|
356
|
+
} as const
|
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
export declare const characterOfConstructionDescriptions: Readonly<Record<string, {
|
|
2
|
+
description?: string;
|
|
3
|
+
floor?: string;
|
|
4
|
+
framing?: string;
|
|
5
|
+
roof?: string;
|
|
6
|
+
walls?: string;
|
|
7
|
+
}>>;
|
|
8
|
+
export declare const yearBuiltCodeNames: {
|
|
9
|
+
readonly A: "Addition";
|
|
10
|
+
readonly B: "Both Estimated and Renovated";
|
|
11
|
+
readonly C: "Both Estimated and Addition";
|
|
12
|
+
readonly D: "Both Renovated and Addition";
|
|
13
|
+
readonly E: "Estimated";
|
|
14
|
+
readonly M: "Estimated, Renovated and Addition";
|
|
15
|
+
readonly N: "None of the above codes are applicable";
|
|
16
|
+
readonly R: "Renovated";
|
|
17
|
+
};
|
|
18
|
+
export declare const conditionCodes: Readonly<Record<string, {
|
|
19
|
+
name: string;
|
|
20
|
+
ranking: number;
|
|
21
|
+
}>>;
|
|
22
|
+
export declare const partStoreyCodeNames: {
|
|
23
|
+
'1': string;
|
|
24
|
+
'2': string;
|
|
25
|
+
'3': string;
|
|
26
|
+
};
|
|
27
|
+
export declare const splitCodeNames: {
|
|
28
|
+
readonly B: "Back or Front Split";
|
|
29
|
+
readonly N: "No Split";
|
|
30
|
+
readonly S: "Side Split";
|
|
31
|
+
readonly Y: "Yes (unconventional split style)";
|
|
32
|
+
};
|
|
33
|
+
export declare const basementFinishCodeNames: {
|
|
34
|
+
readonly '2': "Recreation";
|
|
35
|
+
readonly '5': "Finished";
|
|
36
|
+
readonly '8': "Apartment";
|
|
37
|
+
readonly A: "Apartment";
|
|
38
|
+
readonly R: "Recreation";
|
|
39
|
+
};
|
|
40
|
+
export declare const heatingTypeCodeNames: {
|
|
41
|
+
readonly AS: "Airtight Stove";
|
|
42
|
+
readonly EL: "Electric Heating";
|
|
43
|
+
readonly FA: "Forced Air";
|
|
44
|
+
readonly GR: "Gravity Hot Air";
|
|
45
|
+
readonly HP: "Heat Pump";
|
|
46
|
+
readonly HW: "Hot Water";
|
|
47
|
+
readonly IF: "In-Floor Radiant";
|
|
48
|
+
readonly NO: "No Central Heating System";
|
|
49
|
+
readonly OT: "Other";
|
|
50
|
+
readonly PL: "Pipeless Hot Air";
|
|
51
|
+
readonly RD: "Radiant Electric";
|
|
52
|
+
readonly ST: "Conventional Heating Stove";
|
|
53
|
+
};
|
|
54
|
+
export declare const garageTypeCodeNames: {
|
|
55
|
+
readonly A: "Attached";
|
|
56
|
+
readonly B: "Basement or Built-in";
|
|
57
|
+
readonly C: "Carport";
|
|
58
|
+
readonly D: "Detached";
|
|
59
|
+
readonly I: "Indoor";
|
|
60
|
+
readonly M: "More than one type is present";
|
|
61
|
+
readonly N: "No parking or No garage";
|
|
62
|
+
readonly O: "Outdoor";
|
|
63
|
+
readonly P: "Parking";
|
|
64
|
+
};
|
|
65
|
+
export declare const structureCodeClasses: {
|
|
66
|
+
readonly 100: "Secondary";
|
|
67
|
+
readonly 200: "Farm";
|
|
68
|
+
readonly 300: "Residential";
|
|
69
|
+
readonly 400: "Commercial";
|
|
70
|
+
readonly 500: "Industrial";
|
|
71
|
+
readonly 600: "Institutional";
|
|
72
|
+
readonly 700: "Special Purpose";
|
|
73
|
+
};
|
|
74
|
+
export declare const structureCodeNames: {
|
|
75
|
+
'101': string;
|
|
76
|
+
'102': string;
|
|
77
|
+
'103': string;
|
|
78
|
+
'104': string;
|
|
79
|
+
'105': string;
|
|
80
|
+
'106': string;
|
|
81
|
+
'107': string;
|
|
82
|
+
'108': string;
|
|
83
|
+
'109': string;
|
|
84
|
+
'110': string;
|
|
85
|
+
'115': string;
|
|
86
|
+
'116': string;
|
|
87
|
+
'117': string;
|
|
88
|
+
'118': string;
|
|
89
|
+
'119': string;
|
|
90
|
+
'120': string;
|
|
91
|
+
'121': string;
|
|
92
|
+
'122': string;
|
|
93
|
+
'123': string;
|
|
94
|
+
'124': string;
|
|
95
|
+
'125': string;
|
|
96
|
+
'126': string;
|
|
97
|
+
'127': string;
|
|
98
|
+
'128': string;
|
|
99
|
+
'129': string;
|
|
100
|
+
'130': string;
|
|
101
|
+
'150': string;
|
|
102
|
+
'151': string;
|
|
103
|
+
'161': string;
|
|
104
|
+
'162': string;
|
|
105
|
+
'163': string;
|
|
106
|
+
'199': string;
|
|
107
|
+
'201': string;
|
|
108
|
+
'202': string;
|
|
109
|
+
'203': string;
|
|
110
|
+
'204': string;
|
|
111
|
+
'211': string;
|
|
112
|
+
'212': string;
|
|
113
|
+
'215': string;
|
|
114
|
+
'216': string;
|
|
115
|
+
'217': string;
|
|
116
|
+
'220': string;
|
|
117
|
+
'224': string;
|
|
118
|
+
'225': string;
|
|
119
|
+
'226': string;
|
|
120
|
+
'227': string;
|
|
121
|
+
'228': string;
|
|
122
|
+
'229': string;
|
|
123
|
+
'230': string;
|
|
124
|
+
'232': string;
|
|
125
|
+
'234': string;
|
|
126
|
+
'236': string;
|
|
127
|
+
'237': string;
|
|
128
|
+
'238': string;
|
|
129
|
+
'240': string;
|
|
130
|
+
'242': string;
|
|
131
|
+
'244': string;
|
|
132
|
+
'245': string;
|
|
133
|
+
'250': string;
|
|
134
|
+
'252': string;
|
|
135
|
+
'254': string;
|
|
136
|
+
'256': string;
|
|
137
|
+
'258': string;
|
|
138
|
+
'260': string;
|
|
139
|
+
'262': string;
|
|
140
|
+
'264': string;
|
|
141
|
+
'266': string;
|
|
142
|
+
'268': string;
|
|
143
|
+
'270': string;
|
|
144
|
+
'275': string;
|
|
145
|
+
'282': string;
|
|
146
|
+
'284': string;
|
|
147
|
+
'286': string;
|
|
148
|
+
'288': string;
|
|
149
|
+
'289': string;
|
|
150
|
+
'299': string;
|
|
151
|
+
'301': string;
|
|
152
|
+
'302': string;
|
|
153
|
+
'303': string;
|
|
154
|
+
'304': string;
|
|
155
|
+
'305': string;
|
|
156
|
+
'310': string;
|
|
157
|
+
'311': string;
|
|
158
|
+
'312': string;
|
|
159
|
+
'313': string;
|
|
160
|
+
'322': string;
|
|
161
|
+
'323': string;
|
|
162
|
+
'324': string;
|
|
163
|
+
'325': string;
|
|
164
|
+
'326': string;
|
|
165
|
+
'330': string;
|
|
166
|
+
'331': string;
|
|
167
|
+
'340': string;
|
|
168
|
+
'341': string;
|
|
169
|
+
'350': string;
|
|
170
|
+
'351': string;
|
|
171
|
+
'352': string;
|
|
172
|
+
'353': string;
|
|
173
|
+
'354': string;
|
|
174
|
+
'355': string;
|
|
175
|
+
'356': string;
|
|
176
|
+
'357': string;
|
|
177
|
+
'358': string;
|
|
178
|
+
'359': string;
|
|
179
|
+
'360': string;
|
|
180
|
+
'361': string;
|
|
181
|
+
'362': string;
|
|
182
|
+
'399': string;
|
|
183
|
+
'401': string;
|
|
184
|
+
'412': string;
|
|
185
|
+
'422': string;
|
|
186
|
+
'423': string;
|
|
187
|
+
'424': string;
|
|
188
|
+
'425': string;
|
|
189
|
+
'426': string;
|
|
190
|
+
'427': string;
|
|
191
|
+
'428': string;
|
|
192
|
+
'429': string;
|
|
193
|
+
'433': string;
|
|
194
|
+
'434': string;
|
|
195
|
+
'435': string;
|
|
196
|
+
'436': string;
|
|
197
|
+
'437': string;
|
|
198
|
+
'438': string;
|
|
199
|
+
'439': string;
|
|
200
|
+
'442': string;
|
|
201
|
+
'443': string;
|
|
202
|
+
'452': string;
|
|
203
|
+
'454': string;
|
|
204
|
+
'460': string;
|
|
205
|
+
'461': string;
|
|
206
|
+
'462': string;
|
|
207
|
+
'463': string;
|
|
208
|
+
'464': string;
|
|
209
|
+
'465': string;
|
|
210
|
+
'466': string;
|
|
211
|
+
'467': string;
|
|
212
|
+
'468': string;
|
|
213
|
+
'469': string;
|
|
214
|
+
'470': string;
|
|
215
|
+
'472': string;
|
|
216
|
+
'473': string;
|
|
217
|
+
'474': string;
|
|
218
|
+
'482': string;
|
|
219
|
+
'484': string;
|
|
220
|
+
'490': string;
|
|
221
|
+
'491': string;
|
|
222
|
+
'492': string;
|
|
223
|
+
'493': string;
|
|
224
|
+
'494': string;
|
|
225
|
+
'495': string;
|
|
226
|
+
'496': string;
|
|
227
|
+
'499': string;
|
|
228
|
+
'501': string;
|
|
229
|
+
'502': string;
|
|
230
|
+
'503': string;
|
|
231
|
+
'504': string;
|
|
232
|
+
'505': string;
|
|
233
|
+
'506': string;
|
|
234
|
+
'507': string;
|
|
235
|
+
'508': string;
|
|
236
|
+
'509': string;
|
|
237
|
+
'510': string;
|
|
238
|
+
'522': string;
|
|
239
|
+
'523': string;
|
|
240
|
+
'524': string;
|
|
241
|
+
'525': string;
|
|
242
|
+
'526': string;
|
|
243
|
+
'527': string;
|
|
244
|
+
'528': string;
|
|
245
|
+
'532': string;
|
|
246
|
+
'533': string;
|
|
247
|
+
'534': string;
|
|
248
|
+
'542': string;
|
|
249
|
+
'551': string;
|
|
250
|
+
'552': string;
|
|
251
|
+
'553': string;
|
|
252
|
+
'554': string;
|
|
253
|
+
'555': string;
|
|
254
|
+
'556': string;
|
|
255
|
+
'557': string;
|
|
256
|
+
'558': string;
|
|
257
|
+
'559': string;
|
|
258
|
+
'567': string;
|
|
259
|
+
'568': string;
|
|
260
|
+
'569': string;
|
|
261
|
+
'572': string;
|
|
262
|
+
'582': string;
|
|
263
|
+
'592': string;
|
|
264
|
+
'593': string;
|
|
265
|
+
'594': string;
|
|
266
|
+
'595': string;
|
|
267
|
+
'596': string;
|
|
268
|
+
'597': string;
|
|
269
|
+
'598': string;
|
|
270
|
+
'599': string;
|
|
271
|
+
'600': string;
|
|
272
|
+
'608': string;
|
|
273
|
+
'610': string;
|
|
274
|
+
'620': string;
|
|
275
|
+
'630': string;
|
|
276
|
+
'640': string;
|
|
277
|
+
'645': string;
|
|
278
|
+
'650': string;
|
|
279
|
+
'660': string;
|
|
280
|
+
'661': string;
|
|
281
|
+
'699': string;
|
|
282
|
+
'705': string;
|
|
283
|
+
'709': string;
|
|
284
|
+
'710': string;
|
|
285
|
+
'711': string;
|
|
286
|
+
'725': string;
|
|
287
|
+
'730': string;
|
|
288
|
+
'731': string;
|
|
289
|
+
'732': string;
|
|
290
|
+
'740': string;
|
|
291
|
+
'750': string;
|
|
292
|
+
'760': string;
|
|
293
|
+
'770': string;
|
|
294
|
+
'780': string;
|
|
295
|
+
'790': string;
|
|
296
|
+
'799': string;
|
|
297
|
+
};
|