-
Notifications
You must be signed in to change notification settings - Fork 0
/
combined.ttl
607 lines (487 loc) · 23.8 KB
/
combined.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
# @prefix cdt: <http://w3id.org/lindt/custom_datatypes#> .
@prefix cdt: <https://w3id.org/cdt/> .
@prefix : <http://www.example.org/ns/lu/zoning#> .
# These permitted used were derived from the International Zoning Code 2021.
# Specifically §401.1, §501.1, §601.1, & §701.1.
# International Code Council is the copyright owner of the document.
# This was created and used in an educational context for a class.
##### Custom Unit ########
# The IZC has three custom units: Dwelling units per acre, acres per dwelling units, and units per acre.
# I would like to denote these by [du/acr_us], [acr_us/du], and [u/acr_us].
# These are units are upper bounds for the density of dwelling units in an area.
# Per the The Unified Code for Units of Measure (Sections 2 & Section 3) - https://unitsofmeasure.org/ucum
# There are two ways to treat this unit as an arbitrary unit or a special unit.
# * Arbitrary units are considered dimensionless and should not be converted.
# * Special units are customary units and are enclosed with square brackets [].
# * Curly braces {} enclose annotation.
#
# Using this notation for the moment...
# :maxDensity "4 [du/acr_us]"^^cdt:dimensionless ;
#
# Notes about creating a custom unit: https://ci.mines-stetienne.fr/lindt/
# ISSUES:
# * Permitted uses have some repetition.
# * Using :seeAlso to link residential :ZoningDistrictDivision needs a property that links it back to its :ZoningDistrict
# Not sure if this really gets at the proper relationship.
# Class definitions -----------------------------------------------------------
:ZoningDistrict rdf:type rdfs:Class .
# This is for the division of residential densities with different dimensional requirements.
:ZoningDistrictDivision rdfs:subClassOf :ZoningDistrict .
# Define a subclass of Property, for the properties that are related to dimensional requirements
:DimensionalProperty rdfs:subClassOf rdf:Property .
# Property Definitions ---------------------------------------------------------
:permitsUse rdf:type rdf:Property ;
rdfs:label "permits use" ;
rdfs:range rdfs:Literal .
:minLotSize rdf:type :DimensionalProperty ;
rdfs:label "minimum lot size" ;
rdfs:range cdt:area .
:maxDensity rdf:type :DimensionalProperty ;
rdfs:label "maximum density" ;
rdfs:range cdt:dimensionless .
:minLotWidth rdf:type :DimensionalProperty ;
rdfs:label "minimum lot width" ;
rdfs:range cdt:length .
:minLotDepth rdf:type :DimensionalProperty ;
rdfs:label "minimum lot depth" ;
rdfs:range cdt:length .
:minFrontSetback rdf:type :DimensionalProperty ;
rdfs:label "minimum front setback" ;
rdfs:range cdt:length .
:minSideSetback rdf:type :DimensionalProperty ;
rdfs:label "minimum side setback" ;
rdfs:range cdt:length .
:minRearSetback rdf:type :DimensionalProperty ;
rdfs:label "minimum rear setback" ;
rdfs:range cdt:length .
:maxBuildingHeight rdf:type :DimensionalProperty ;
rdfs:label "maximum building height" ;
rdfs:range cdt:length .
# Instance Definitions
###############################################################################
##### PERMITTED USES #####################################################
###############################################################################
######## Residential Zoning Districts ########
:r1 a :ZoningDistrict ;
rdfs:label "R1" .
:r1 :permitsUse "single-family dwellings" ;
:permitsUse "publicly owned and operated parks" ;
:permitsUse "recreation centers" ;
:permitsUse "swimming pools and playgrounds" ;
:permitsUse "police and fire department stations" ;
:permitsUse "public and governmental services" ;
:permitsUse "public libraries" ;
:permitsUse "schools and colleges (excluding colleges or trade schools operated for profit)" ;
:permitsUse "public parking lots" ;
:permitsUse "private garages" ;
:permitsUse "buildings accessory to the permitted uses (including private garages and accessory living quarters)" ;
:permitsUse "temporary buildings" .
:r2 a :ZoningDistrict ;
rdfs:label "R2" .
:r2 :permitsUse "two-family dwellings" .
# These are the permitted uses from R1
:r2 :permitsUse "single-family dwellings" ;
:permitsUse "publicly owned and operated parks" ;
:permitsUse "recreation centers" ;
:permitsUse "swimming pools and playgrounds" ;
:permitsUse "police and fire department stations" ;
:permitsUse "public and governmental services" ;
:permitsUse "public libraries" ;
:permitsUse "schools and colleges (excluding colleges or trade schools operated for profit)" ;
:permitsUse "public parking lots" ;
:permitsUse "private garages" ;
:permitsUse "buildings accessory to the permitted uses (including private garages and accessory living quarters)" ;
:permitsUse "temporary buildings" .
:r3 a :ZoningDistrict ;
rdfs:label "R3" .
:r3 :permitsUse "multiple family dwellings, such as apartment houses, boarding houses, condominiums and congregate residences" .
# These are the permitted uses from R2
:r3 :permitsUse "two-family dwellings" .
# These are the permitted uses from R1
:r3 :permitsUse "single-family dwellings" ;
:permitsUse "publicly owned and operated parks" ;
:permitsUse "recreation centers" ;
:permitsUse "swimming pools and playgrounds" ;
:permitsUse "police and fire department stations" ;
:permitsUse "public and governmental services" ;
:permitsUse "public libraries" ;
:permitsUse "schools and colleges (excluding colleges or trade schools operated for profit)" ;
:permitsUse "public parking lots" ;
:permitsUse "private garages" ;
:permitsUse "buildings accessory to the permitted uses (including private garages and accessory living quarters)" ;
:permitsUse "temporary buildings" .
######## Agricultural Zoning Districts ########
:a1 a :ZoningDistrict ;
rdfs:label "A1" .
:a1 :permitsUse "open space" .
:a2 a :ZoningDistrict ;
rdfs:label "A2" .
:a2 :permitsUse "agricultural use" ;
:permitsUse "dwellings" ;
:permitsUse "maintenance/storage buildings" .
# A3 USES HAVE BEEN OMITTED
:a3 a :ZoningDistrict;
rdfs:label "A3" .
######## Commercial Zoning Districts ########
:c1 a :ZoningDistrict ;
rdfs:label "C1" .
:c1 :permitsUse "minor automotive repair" ;
:permitsUse "automotive motor fuel dispensing facilities" ;
:permitsUse "automotive self-service motor fuel dispensing facilities" ;
:permitsUse "business services" ;
:permitsUse "financial services" ;
:permitsUse "convenience and neighborhood commercial centers (excluding wholesale sales)" ;
:permitsUse "family and group day care facilities" ;
:permitsUse "libraries" ;
:permitsUse "mortuary and funeral homes" ;
:permitsUse "public and governmental services" ;
:permitsUse "police and fire department stations" ;
:permitsUse "places of religious worship" ;
:permitsUse "public utility stations" ;
:permitsUse "restaurants" .
:c2 a :ZoningDistrict ;
rdfs:label "C2" .
:c2 :permitsUse "light commercial (excluding wholesale sales)" ;
:permitsUse "group care facilities" ;
:permitsUse "physical fitness centers" ;
:permitsUse "religious, cultural and fraternal activities" ;
:permitsUse "rehabilitation centers" ;
:permitsUse "school and colleges operated for profit (including commercial, vocational and trade schools)" .
# These are the permitted uses from C1
:c2 :permitsUse "minor automotive repair" ;
:permitsUse "automotive motor fuel dispensing facilities" ;
:permitsUse "automotive self-service motor fuel dispensing facilities" ;
:permitsUse "business services" ;
:permitsUse "financial services" ;
:permitsUse "convenience and neighborhood commercial centers (excluding wholesale sales)" ;
:permitsUse "family and group day care facilities" ;
:permitsUse "libraries" ;
:permitsUse "mortuary and funeral homes" ;
:permitsUse "public and governmental services" ;
:permitsUse "police and fire department stations" ;
:permitsUse "places of religious worship" ;
:permitsUse "public utility stations" ;
:permitsUse "restaurants" .
:c3 a :ZoningDistrict ;
rdfs:label "C3" .
:c3 :permitsUse "amusement centers (including bowling alleys, golf driving ranges miniature golf courses, ice rinks, pool and billiard halls, and similar recreational uses)" ;
:permitsUse "automotive sales" ;
:permitsUse "building material supply sales (wholesale and retail)" ;
:permitsUse "cultural institutions (such as museums and art galleries)" ;
:permitsUse "community commercial centers (including wholesale and retail sales)" ;
:permitsUse "health and medical institutions (such as hospitals)" ;
:permitsUse "hotels and motels (excluding other residential occupancies)" ;
:permitsUse "commercial printing and publishing" ;
:permitsUse "taverns and cocktail lounges" ;
:permitsUse "indoor theaters" ;
:permitsUse "self-storage warehouses" .
# These are the permitted uses from C2
:c3 :permitsUse "light commercial (excluding wholesale sales)" ;
:permitsUse "group care facilities" ;
:permitsUse "physical fitness centers" ;
:permitsUse "religious, cultural and fraternal activities" ;
:permitsUse "rehabilitation centers" ;
:permitsUse "school and colleges operated for profit (including commercial, vocational and trade schools)" .
# These are the permitted uses from C1
:c3 :permitsUse "minor automotive repair" ;
:permitsUse "automotive motor fuel dispensing facilities" ;
:permitsUse "automotive self-service motor fuel dispensing facilities" ;
:permitsUse "business services" ;
:permitsUse "financial services" ;
:permitsUse "convenience and neighborhood commercial centers (excluding wholesale sales)" ;
:permitsUse "family and group day care facilities" ;
:permitsUse "libraries" ;
:permitsUse "mortuary and funeral homes" ;
:permitsUse "public and governmental services" ;
:permitsUse "police and fire department stations" ;
:permitsUse "places of religious worship" ;
:permitsUse "public utility stations" ;
:permitsUse "restaurants" .
:c4 a :ZoningDistrict ;
rdfs:label "C4" .
:c4 :permitsUse "major automotive repair" ;
:permitsUse "commercial bakeries" ;
:permitsUse "regional commercial centers (including wholesale and retail sales)" ;
:permitsUse "plastic product design, molding and assembly" ;
:permitsUse "small metal products design, casting, fabricating, and processing" ;
:permitsUse "manufacture and finishing" ;
:permitsUse "storage yards" ;
:permitsUse "wood products manufacturing and finishing" .
# These are the permitted uses from C3
:c4 :permitsUse "amusement centers (including bowling alleys, golf driving ranges miniature golf courses, ice rinks, pool and billiard halls, and similar recreational uses)" ;
:permitsUse "automotive sales" ;
:permitsUse "building material supply sales (wholesale and retail)" ;
:permitsUse "cultural institutions (such as museums and art galleries)" ;
:permitsUse "community commercial centers (including wholesale and retail sales)" ;
:permitsUse "health and medical institutions (such as hospitals)" ;
:permitsUse "hotels and motels (excluding other residential occupancies)" ;
:permitsUse "commercial printing and publishing" ;
:permitsUse "taverns and cocktail lounges" ;
:permitsUse "indoor theaters" ;
:permitsUse "self-storage warehouses" .
# These are the permitted uses from C2
:c4 :permitsUse "light commercial (excluding wholesale sales)" ;
:permitsUse "group care facilities" ;
:permitsUse "physical fitness centers" ;
:permitsUse "religious, cultural and fraternal activities" ;
:permitsUse "rehabilitation centers" ;
:permitsUse "school and colleges operated for profit (including commercial, vocational and trade schools)" .
# These are the permitted uses from C1
:c4 :permitsUse "minor automotive repair" ;
:permitsUse "automotive motor fuel dispensing facilities" ;
:permitsUse "automotive self-service motor fuel dispensing facilities" ;
:permitsUse "business services" ;
:permitsUse "financial services" ;
:permitsUse "convenience and neighborhood commercial centers (excluding wholesale sales)" ;
:permitsUse "family and group day care facilities" ;
:permitsUse "libraries" ;
:permitsUse "mortuary and funeral homes" ;
:permitsUse "public and governmental services" ;
:permitsUse "police and fire department stations" ;
:permitsUse "places of religious worship" ;
:permitsUse "public utility stations" ;
:permitsUse "restaurants" .
### OMIT Commercial Residential Districts for the moment.
######## Factory/Industrial Zoning Districts ########
:fi1 a :ZoningDistrict ;
rdfs:label "FI1" .
:fi1 :permitsUse "warehouses" ;
:permitsUse "research or testing laboratories" ;
:permitsUse "product distribution centers" ;
:permitsUse "woodworking shops" ;
:permitsUse "auto body shops" ;
:permitsUse "furniture assembly" ;
:permitsUse "dry cleaning plants" ;
:permitsUse "places of religious worship" ;
:permitsUse "public and governmental services" ;
:permitsUse "machine shops" ;
:permitsUse "boat storage yards" .
:fi2 a :ZoningDistrict ;
rdfs:label "FI2" .
:fi2 :permitsUse "stadiums and arenas" ;
:permitsUse "indoor swap meets" ;
:permitsUse "breweries" ;
:permitsUse "liquid fertilizer manufacturing" ;
:permitsUse "carpet manufacturing" ;
:permitsUse "monument works" ;
:permitsUse "regional recycling center" .
# These are the permitted uses from FI1
:fi2 :permitsUse "warehouses" ;
:permitsUse "research or testing laboratories" ;
:permitsUse "product distribution centers" ;
:permitsUse "woodworking shops" ;
:permitsUse "auto body shops" ;
:permitsUse "furniture assembly" ;
:permitsUse "dry cleaning plants" ;
:permitsUse "places of religious worship" ;
:permitsUse "public and governmental services" ;
:permitsUse "machine shops" ;
:permitsUse "boat storage yards" .
:fi3 a :ZoningDistrict ;
rdfs:label "FI3" .
:fi3 :permitsUse "auto-dismantling yards" ;
:permitsUse "alcohol manufacturing" ;
:permitsUse "cotton gins" ;
:permitsUse "paper manufacturing" ;
:permitsUse "quarries" ;
:permitsUse "salt works" ;
:permitsUse "petroleum refining" .
# These are the permitted uses from FI2
:fi3 :permitsUse "stadiums and arenas" ;
:permitsUse "indoor swap meets" ;
:permitsUse "breweries" ;
:permitsUse "liquid fertilizer manufacturing" ;
:permitsUse "carpet manufacturing" ;
:permitsUse "monument works" ;
:permitsUse "regional recycling center" .
# These are the permitted uses from FI1
:fi3 :permitsUse "warehouses" ;
:permitsUse "research or testing laboratories" ;
:permitsUse "product distribution centers" ;
:permitsUse "woodworking shops" ;
:permitsUse "auto body shops" ;
:permitsUse "furniture assembly" ;
:permitsUse "dry cleaning plants" ;
:permitsUse "places of religious worship" ;
:permitsUse "public and governmental services" ;
:permitsUse "machine shops" ;
:permitsUse "boat storage yards" .
###############################################################################
##### DIMENSIONAL REQUIREMENTS ##########################################
###############################################################################
######## Residential Zoning Districts/Divisions ########
# need some kind of relationship between these smaller Division and the Parent Zoning District
# Smaller Divisions, Parent Zone
# :ZoningDivision rdfs:subClassOf :ZoningDistrict .
# :r1a :r1
:r1a a :ZoningDistrictDivision ;
rdfs:seeAlso :r1 ;
rdfs:label "R1a" ;
:minLotSize "35000 [sft_i]"^^cdt:area ;
:maxDensity "1 [du/acr_us]"^^cdt:dimensionless ;
:minLotWidth "125 [ft_i]"^^cdt:length ;
:minLotDepth "150 [ft_i]"^^cdt:length ;
:minFrontSetback "25 [ft_i]"^^cdt:length ;
:minSideSetback "10 [ft_i]"^^cdt:length ;
:minRearSetback "30 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
:r1b a :ZoningDistrictDivision ;
rdfs:seeAlso :r1 ;
rdfs:label "R1b" ;
:minLotSize "20000 [sft_i]"^^cdt:area ;
:maxDensity "2 [du/acr_us]"^^cdt:dimensionless ;
:minLotWidth "100 [ft_i]"^^cdt:length ;
:minLotDepth "125 [ft_i]"^^cdt:length ;
:minFrontSetback "20 [ft_i]"^^cdt:length ;
:minSideSetback "10 [ft_i]"^^cdt:length ;
:minRearSetback "25 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
:r1c a :ZoningDistrictDivision ;
rdfs:seeAlso :r1 ;
rdfs:label "R1c" ;
:minLotSize "10000 [sft_i]"^^cdt:area ;
:maxDensity "4 [du/acr_us]"^^cdt:dimensionless ;
:minLotWidth "75 [ft_i]"^^cdt:length ;
:minLotDepth "100 [ft_i]"^^cdt:length ;
:minFrontSetback "20 [ft_i]"^^cdt:length ;
:minSideSetback "5 [ft_i]"^^cdt:length ;
:minRearSetback "25 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
:r1d a :ZoningDistrictDivision ;
rdfs:seeAlso :r1 ;
rdfs:label "R1d" ;
:minLotSize "6000 [sft_i]"^^cdt:area ;
:maxDensity "6 [du/acr_us]"^^cdt:dimensionless ;
:minLotWidth "60 [ft_i]"^^cdt:length ;
:minLotDepth "90 [ft_i]"^^cdt:length ;
:minFrontSetback "15 [ft_i]"^^cdt:length ;
:minSideSetback "5 [ft_i]"^^cdt:length ;
:minRearSetback "20 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
:r2a a :ZoningDistrictDivision ;
rdfs:seeAlso :r2 ;
rdfs:label "R2a" ;
:minLotSize "10000 [sft_i]"^^cdt:area ;
:maxDensity "4 [du/acr_us]"^^cdt:dimensionless ;
:minLotWidth "60 [ft_i]"^^cdt:length ;
:minLotDepth "70 [ft_i]"^^cdt:length ;
:minFrontSetback "20 [ft_i]"^^cdt:length ;
:minSideSetback "5 [ft_i]"^^cdt:length ;
:minRearSetback "20 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
:r2b a :ZoningDistrictDivision ;
rdfs:seeAlso :r2 ;
rdfs:label "R2b" ;
:minLotSize "6000 [sft_i]"^^cdt:area ;
:maxDensity "6 [du/acr_us]"^^cdt:dimensionless ;
:minLotWidth "60 [ft_i]"^^cdt:length ;
:minLotDepth "70 [ft_i]"^^cdt:length ;
:minFrontSetback "15 [ft_i]"^^cdt:length ;
:minSideSetback "5 [ft_i]"^^cdt:length ;
:minRearSetback "20 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
:r3a a :ZoningDistrictDivision ;
rdfs:seeAlso :r3 ;
rdfs:label "R3a" ;
:minLotSize "6000 [sft_i]"^^cdt:area ;
:maxDensity "8 [du/acr_us]"^^cdt:dimensionless ;
:minLotWidth "60 [ft_i]"^^cdt:length ;
:minLotDepth "70 [ft_i]"^^cdt:length ;
:minFrontSetback "15 [ft_i]"^^cdt:length ;
:minSideSetback "5 [ft_i]"^^cdt:length ;
:minRearSetback "20 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
:r3b a :ZoningDistrictDivision ;
rdfs:seeAlso :r3 ;
rdfs:label "R3b" ;
:minLotSize "6000 [sft_i]"^^cdt:area ;
:maxDensity "12 [du/acr_us]"^^cdt:dimensionless ;
:minLotWidth "60 [ft_i]"^^cdt:length ;
:minLotDepth "70 [ft_i]"^^cdt:length ;
:minFrontSetback "15 [ft_i]"^^cdt:length ;
:minSideSetback "5 [ft_i]"^^cdt:length ;
:minRearSetback "20 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
######## Commercial Zoning Districts ########
:c1 # rdfs:label "C1" ;
:minLotSize "6000 [sft_i]"^^cdt:area ;
:maxDensity "12 [u/acr_us]"^^cdt:dimensionless ;
:minLotWidth "30 [ft_i]"^^cdt:length ;
:minLotDepth "70 [ft_i]"^^cdt:length ;
:minFrontSetback "0 [ft_i]"^^cdt:length ;
:minSideSetback "0 [ft_i]"^^cdt:length ;
:minRearSetback "0 [ft_i]"^^cdt:length ;
:maxBuildingHeight "30 [ft_i]"^^cdt:length .
:c2 # rdfs:label "C2" ;
:minLotWidth "30 [ft_i]"^^cdt:length ;
:minLotDepth "70 [ft_i]"^^cdt:length ;
:minFrontSetback "0 [ft_i]"^^cdt:length ;
:minSideSetback "0 [ft_i]"^^cdt:length ;
:minRearSetback "0 [ft_i]"^^cdt:length ;
:maxBuildingHeight "40 [ft_i]"^^cdt:length .
:c3 # rdfs:label "C3" ;
:minLotWidth "75 [ft_i]"^^cdt:length ;
:minLotDepth "100 [ft_i]"^^cdt:length ;
:minFrontSetback "0 [ft_i]"^^cdt:length ;
:minSideSetback "0 [ft_i]"^^cdt:length ;
:minRearSetback "0 [ft_i]"^^cdt:length ;
:maxBuildingHeight "50 [ft_i]"^^cdt:length .
:c4 # rdfs:label "C4" ;
:minLotWidth "75 [ft_i]"^^cdt:length ;
:minLotDepth "100 [ft_i]"^^cdt:length ;
:minFrontSetback "0 [ft_i]"^^cdt:length ;
:minSideSetback "0 [ft_i]"^^cdt:length ;
:minRearSetback "0 [ft_i]"^^cdt:length ;
:maxBuildingHeight "50 [ft_i]"^^cdt:length .
######## Factory/Industrial Zoning Districts ########
:fi1 # rdfs:label "FI1" ;
:minLotWidth "50 [ft_i]"^^cdt:length ;
:minLotDepth "75 [ft_i]"^^cdt:length ;
:minFrontSetback "0 [ft_i]"^^cdt:length ;
:minSideSetback "0 [ft_i]"^^cdt:length ;
:minRearSetback "0 [ft_i]"^^cdt:length ;
:maxBuildingHeight "60 [ft_i]"^^cdt:length .
:fi2 # rdfs:label "FI2" ;
:minLotWidth "75 [ft_i]"^^cdt:length ;
:minLotDepth "100 [ft_i]"^^cdt:length ;
:minFrontSetback "0 [ft_i]"^^cdt:length ;
:minSideSetback "0 [ft_i]"^^cdt:length ;
:minRearSetback "0 [ft_i]"^^cdt:length ;
:maxBuildingHeight "80 [ft_i]"^^cdt:length .
:fi3 # rdfs:label "FI3" ;
:minLotWidth "100 [ft_i]"^^cdt:length ;
:minLotDepth "150 [ft_i]"^^cdt:length ;
:minFrontSetback "0 [ft_i]"^^cdt:length ;
:minSideSetback "0 [ft_i]"^^cdt:length ;
:minRearSetback "0 [ft_i]"^^cdt:length ;
:maxBuildingHeight "80 [ft_i]"^^cdt:length .
######## Agricultural Zoning Districts ########
:a1 # rdfs:label "A1" ;
:minLotSize "20 [acr_us]"^^cdt:area ;
:maxDensity "20 [acr_us/du]"^^cdt:dimensionless ;
:minLotWidth "600 [ft_i]"^^cdt:length ;
:minLotDepth "600 [ft_i]"^^cdt:length ;
:minFrontSetback "30 [ft_i]"^^cdt:length ;
:minSideSetback "15 [ft_i]"^^cdt:length ;
:minRearSetback "60 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
:a2 # rdfs:label "A2" ;
:minLotSize "10 [acr_us]"^^cdt:area ;
:maxDensity "10 [acr_us/du]"^^cdt:dimensionless ;
:minLotWidth "400 [ft_i]"^^cdt:length ;
:minLotDepth "400 [ft_i]"^^cdt:length ;
:minFrontSetback "30 [ft_i]"^^cdt:length ;
:minSideSetback "15 [ft_i]"^^cdt:length ;
:minRearSetback "60 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .
:a3 # rdfs:label "A3" ;
:minLotSize "5 [acr_us]"^^cdt:area ;
:maxDensity "5 [acr_us/du]"^^cdt:dimensionless ;
:minLotWidth "250 [ft_i]"^^cdt:length ;
:minLotDepth "250 [ft_i]"^^cdt:length ;
:minFrontSetback "30 [ft_i]"^^cdt:length ;
:minSideSetback "15 [ft_i]"^^cdt:length ;
:minRearSetback "60 [ft_i]"^^cdt:length ;
:maxBuildingHeight "35 [ft_i]"^^cdt:length .