forked from sfbrigade/datasci-housing-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
San_Francisco_Development_Pipeline_2018_Quarter_1.csv
We can't make this file beautiful and searchable because it's too large.
2120 lines (2002 loc) · 867 KB
/
San_Francisco_Development_Pipeline_2018_Quarter_1.csv
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
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
PROJECT_TYPE,BLKLOT,NAMEADDR,ENTITLED,BESTSTAT,BESTDATE,UNITS,UNITSNET,AFFORDABLE,AFFORDABLENET,SECTION416,AFF_TARGET,TENURE_TYPE,CASENO,DESCRIPT,DBIDESC,TOTAL_GSF,NET_GSF,CIE_EXIST,CIE,CIENET,MED_EXIST,MED,MEDNET,MIPS_EXIST,MIPS,MIPSNET,PDR_EXIST,PDR,PDRNET,RET_EXIST,RET,RETNET,RESTAURANT,RESTAURANTNET,VISIT_EXIST,VISIT,VISITNET,HOTEL_ROOM_EXIST,HOTEL_ROOM_PROP,HOTEL_ROOM_NET,PLANNER,SPONSOR,CONTACT,CONTACTPH,PD,SUPEDIST,PLAN_AREA,PDA,YEAR,QTR,YEAR_QTR,Location 1,SF Find Neighborhoods,Current Police Districts,Current Supervisor Districts,Analysis Neighborhoods
Resident,0439A048,37 RICO WY,FALSE,BP FILED,12/23/2016 0:00,1,1,0,0,,,,,,CONSTRUCT (N) 3-STORY SINGLE FAMILY RESIDENCE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MAYCHRIS,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.8046474664, -122.439158177)",17,4,6,13
Retail/Ent,206013,439 WASHINGTON ST,FALSE,PL FILED,,0,0,0,0,,,,2015-015553PRJ,,,4500,-5000,0,0,0,0,0,0,7000,0,-7000,0,0,0,2500,4500,2000,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7955476237, -122.401114625)",108,6,3,6
Resident,4937006A,1050 GILMAN AV,FALSE,BP FILED,12/2/2015 0:00,2,1,0,0,,,,,,LEGALIZE EXISTING KITCHEN ON THE GROUND FLOOR. TO LEGALIZE 1 RESIDENTIAL UNIT UNDER UNIT LEGALIZATION ORD 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SAMONSKY,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7190448307, -122.38903716)",88,2,9,1
Resident,6729067,49 SUSSEX ST,FALSE,BP FILED,9/16/2016 0:00,1,1,0,0,,,,,,"ERECT 4 STORIES, TYPE V, SINGLE FAMILY RESIDENCE.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.736507857, -122.433855046)",96,9,5,10
Resident,7120036,62 VERNON ST,TRUE,BP ISSUED,1/4/2018 0:00,1,1,0,0,,,,,,ERECT 3 STORIES SINGLE FAMILY HOME,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TKENNEDY,,,,13 - Ingleside,11,,19th Avenue,2018,Q1,2018_Q1,"(37.7136326317, -122.467710836)",65,10,1,24
Resident,1026005,2704 CALIFORNIA ST,FALSE,BP Filed,1/10/2018 0:00,4,4,0,0,,,,,,Multiple Permits,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.788524384, -122.439272613)",102,4,6,30
Resident,5744075,347 CRESCENT AV,TRUE,BP ISSUED,1/28/2015 0:00,2,2,0,0,,,,,,CONSTRUCTION OF NEW 2 UNIT RESIDENTIAL BLDG IN A VACANT LOT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJACKSON,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7351605943, -122.417776009)",61,9,2,2
Resident,2764010,268 GRAND VIEW AV,TRUE,BP ISSUED,12/21/2016 0:00,1,1,0,0,,,,,,"CONSTRUCT 2-STORY, 2 BASEMENTS, TYPE VB, SINGLE FAMILY RESIDENCE WITH GARAGE",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TCHANG,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7539421723, -122.441545726)",51,3,5,38
Resident,2799042,49 HOPKINS AV,FALSE,BP Filed,12/7/2017 0:00,1,1,0,0,,,,,,"TO ERECT A TYPE V, (3) STORY, NO BASEMENT SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7529023382, -122.444583152)",51,7,5,38
Mixed,6594010,CPMC HOSPITAL - ST. LUKE'S CAMPUS,TRUE,CONSTRUCTION,3/31/2017 0:00,0,0,0,0,,,,2009,"Construction of a new 145,000 sq.ft. St. Luke's Hospital at a height of 114 feet (6 stories); demolition of the existing St. Luke's Hospital after the new hospital is operational, and construction of a new medical office building/future expansion buildin",,533115,164617,0,313115,-52983,0,0,0,0,220000,217600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,Mission District Streetscape Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7465754119, -122.423057031)",84,9,5,22
Mixres,6250030,79 - 81 LELAND AV,FALSE,BP FILED,6/29/2015 0:00,4,4,0,0,,,,2015-009015PRJ,"FRONT BLDG - ERECT 3-STORY, TYPE 5, 4 DWELLING UNITS WITH OFFICE BUILDING.","FRONT BLDG - ERECT 3-STORY, TYPE 5, 4 DWELLING UNITS WITH OFFICE BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JSPEIRS,,LI JOHNNY K & SANDY,,12 - South Central,10,Schlage Lock,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7116224562, -122.405461951)",75,9,9,40
Retail/Ent,3537016,198 CHURCH ST,TRUE,CONSTRUCTION,8/28/2017 0:00,0,0,0,0,,,,2016-002786PRJ,Expansion of existing ground floor bar use into the second story.,"CHANGE OF USE FROM OFFICE TO BAR ON 2ND FLOOR, MINOR INTERIOR RENOVATION TO CONSTRUCT A NEW BAR",3940,1525,0,0,1525,0,0,0,0,0,-1440,0,0,0,0,3940,1440,0,0,0,0,0,0,0,0,NTRAN,AMD PROJECT LLC,AMD PROJECT LLC,,6 - Buena Vista,8,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7679422172, -122.429182402)",28,7,5,5
Resident,6555019,4250 26TH ST,FALSE,BP Filed,2/14/2018 0:00,1,1,0,0,,,,,,"TO ERECT 4 STORIES, 1 BASEMENT, TYPE V-B, SINGLE FAMILY RESIDENCE.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7482687735, -122.43497162)",84,3,5,22
Resident,5478006,3299 - 3333 SAN BRUNO AV,FALSE,PL FILED,,15,15,15,15,,,,2016-015876PRJ,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,10,,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7204302097, -122.400537201)",91,9,9,25
Mixres,8711021,MISSION BAY BLOCK 6E,TRUE,CONSTRUCTION,3/7/2018 0:00,143,143,143,143,,20% AMI; 30% AMI; 50% AMI;,Rental,,,"CONSTRUCT (N) RESIDENTIAL APARTMENTS, RESIDENTIAL SUPPORT SPACES, RETAIL & RESTAURANT SHELL SPACE",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Mission Bay,Mission Bay,2018,Q1,2018_Q1,"(37.7714019604, -122.391771649)",34,1,10,4
Resident,6405006,948 NAPLES ST,FALSE,BP Filed,6/27/2017 0:00,2,1,0,0,,,,,,BASEMENT ADD 1 UNIT @ GROUND FLOOR PER ODINANCE# 162-16. 2 BEDROOMS & 2 BATHROOMS.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Rest of the City,2018,Q1,2018_Q1,"(37.714898923, -122.436025993)",90,9,1,7
Resident,7203007A,2990 20TH AV,TRUE,BP APPROVED,12/15/2017 0:00,2,1,0,0,,,,,,ADD NEW UNIT. CONVERT PART OF GROUND FLOOR INTO 1 BEDROOM ACCESSORY DWELLING UNIT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,19th Avenue,2018,Q1,2018_Q1,"(37.7329884086, -122.475767068)",62,10,8,35
Resident,2688050,115 BELGRAVE AV,FALSE,BP Filed,10/4/2017 0:00,1,1,0,0,,,,,,ERECT (N) 3-STORY SINGLE FAMILY DWELLING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7593436069, -122.450019214)",114,7,11,14
Mixres,3729011,1228 FOLSOM ST / 723 - 725 CLEMENTINA,TRUE,BP APPROVED,2/9/2018 0:00,24,24,3,3,BMR Ownership,,,2014,"Three lots merged to construct a new mixed-use occupancy, 6 story building in NCT-Folsom zoning and 4 story in RED-MX zoning, with a basement garage. Single-family residential R3 occupancy over ground floor commercial B occupancy over basement/private p",ERECT 5 STORIES OF 24 DWELLING UNIT. MIX USE COMMERCIAL & RESIDENTIAL.,1109,-6106,0,0,0,0,0,0,7215,0,-7215,0,0,0,0,1109,1109,0,0,0,0,0,0,0,0,DISALVOJ,,,,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7747316486, -122.410808139)",32,1,10,34
Resident,7097050,490 ELLINGTON AV,FALSE,BP Filed,12/11/2017 0:00,1,1,0,0,,,,2017-013446PRJ,Variance request from the rear yard requirement to permit the subdivision of one lot into two lots with new construction on one.,"TO ERECT A TYPE V, 3-STORY - NO BASEMENT SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,5104695202,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7114252812, -122.448281233)",66,9,1,28
Vacant,7224002A,2620 OCEAN AV,FALSE,BP Filed,1/5/2018 0:00,0,0,0,0,,,,,,CHANGE OF USE FROM MEDICAL OFFICE TO LIMITED RESTAURANT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,19th Avenue,2018,Q1,2018_Q1,"(37.7320658233, -122.473489223)",62,10,8,41
Mixres,3542041,2100 MARKET ST,TRUE,CONSTRUCTION,4/5/2018 0:00,60,60,7,7,On-site BMR Project,55% AMI;,Rental,2014,"The proposed project is to demolish an existing 2-story mixed-used building and construct a 7-story, mixed-use residential and retail building. The proposed new building will include 64 dwelling units, on grade parking for 15 cars with car lifts, and 4,","TO ERECT 7 STORIES, NO BASEMENT, 60 UNITS RESIDENTIAL WITH MIX USE TYPE 1 CONSTRUCTION.",2600,-1806,0,0,0,0,0,0,0,0,0,0,0,0,4406,2600,-1806,0,0,0,0,0,0,0,0,MSMITH,Brian Spiers,Brian Spiers,415-445-4670,6 - Buena Vista,8,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7675094279, -122.429431987)",28,7,5,5
Mixres,3506004,10 SOUTH VAN NESS AV,FALSE,PL FILED,4/11/2016 0:00,855,855,0,0,,,,2015-004568PRJ,"New high-rise, mixed-use construction consisting of studio, 1-bedroom, 2-bedroom and 3-bedroom residential units, associated amenity spaces, and retail spaces at the ground floor. Proposed project entails two 400' towers over a 120' podium building, wit",,28100,-71900,0,0,0,0,0,0,0,0,0,0,0,0,100000,28100,-71900,0,0,0,0,0,0,0,0,VBYRD,,,,8 - Mission,6,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7742592758, -122.419485989)",32,1,10,20
Mixres,1186009I,1735-1751 Fulton Street,FALSE,BP Filed,5/9/2017 0:00,9,9,0,0,,,,2015-013965PRJ,"Demolish two buildings (One Story each) and merge the lot to build 5 story with 9 dwelling units over retail.
The PPA was submitted on 10/09/15 and the 90 day deadline is 01/07/16.",TO DEMOLISH OF ONE STORY OF FOOD /BEVERAGE. N/A FOR MAHER ORDINANCE.,4340,61,0,0,0,0,0,0,0,0,0,0,0,0,0,4340,61,0,0,0,0,0,0,0,0,MWOODS,,,4155129660,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7756329471, -122.445541355)",24,7,11,18
Resident,5514031,630 PRECITA AV,FALSE,BP Filed,8/23/2017 0:00,2,1,0,0,,,,,,ADD (N) UNIT. 1ST UNIT ON 1ST FL & 2ND UNIT ON 2ND & 3RD FL. HORIZONTAL ADDITION ON 1ST & 2ND FL. VE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7475907061, -122.408739649)",60,9,2,2
Vacant,6955004,4680 - 4690 MISSION ST,FALSE,PL Filed,7/26/2017 0:00,0,4,0,0,,,,2017-009533PRJ,The proposed project is the demolition of walls and removal of (2) kitchens. Operation of storage and retail space on ground level and convert second floor existing office space to (4) dwelling units.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CCAMPBEL,Lezamark Building,,6505765932,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7234895371, -122.436024443)",80,9,1,28
Resident,2039029,1762 11TH AV,FALSE,BP Filed,6/20/2017 0:00,2,1,0,0,,,,,,"CONVERT GROUND FLOOR UNCONDITIONED SPACE INTO HABITABLE CONDITIONED SPACE. ADD FULL BATH, BEDROOM, K",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.755334144, -122.467522405)",44,10,8,14
Resident,9999999,HUNTERS VIEW,TRUE,CONSTRUCTION,10/1/2007 0:00,668,401,668,401,,,,,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7363254287, -122.380606164)",86,2,9,1
Mixres,836011,22 FRANKLIN ST,TRUE,CONSTRUCTION,12/22/2017 0:00,28,28,0,0,On-site BMR Project,55% AMI;,Rental,2013,"Demolish the existing auto body shop building on the lot 012 and construct a 8-story, 85-foot tall mixed use building. Construct a new building would include 24 dwelling units and 2,120 gross square feet of retail space along Franklin.","TO ERECT 8 STORIES, NO BASEMENT, 35 UNITS RESIDENTIAL & COMMERCIAL BUILDING.",1900,75,0,0,0,0,0,0,0,0,0,0,0,0,1825,1900,75,0,0,0,0,0,0,0,0,CGROB,,,,6 - Buena Vista,5,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7747267988, -122.420603685)",21,4,11,9
Mixres,670024,1433 BUSH ST,TRUE,BP ISSUED,12/20/2017 0:00,47,47,6,6,On-site BMR Project,,Ownership,2015-009279PRJ,"The proposed project is to demolish an existing one-story commercial building containing an automotive rental use and new construction of a 128-foot tall, 10-soty mixed-use building containing 34 dwelling units, 20 residential parking spaces and 1357 squ","TO ERECT 8 STORIES, 0 BASEMENT, 40 UNITS RESIDENTIAL CONDOS OVER GROUND FLOOR COMMERCIAL & PARKING.",1830,-4770,0,0,0,0,0,0,0,0,0,0,0,0,6600,1830,-4770,0,0,0,0,0,0,0,0,AHUISMAN,"JS Sullivan Devleopment, LLC",,4155302307,4 - Downtown,3,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7883632548, -122.420841306)",50,4,3,21
Mixres,1450008,5400 GEARY BL,TRUE,CONSTRUCTION,2/2/2018 0:00,41,41,4,4,On-site BMR Project,90% AMI;,Ownership,2004,Existing theater building would be preserved - second floor would be expanded to create a full second floor full-service restaurant (preserving one theater screen) and ground floor would be for retail use. New four-story mixed-use building would be con,"ERECT A 4-STORY, 41 DWELLING UNITS (RESIDENTIAL CONDO/COMM & GARAGE), 2 BASEMENTS.",1100,1100,0,0,0,0,0,0,0,0,0,0,0,0,0,1100,1100,0,0,0,0,0,0,0,0,MWOODS,Patrick Luy,David Silverman,567-9000,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7811065551, -122.477592478)",5,8,4,29
Resident,1419029,274 15TH AV,FALSE,BP Filed,12/28/2017 0:00,2,1,0,0,,,,,,"HORIZONTAL ADDDITION. ADDITION OF REAR STAIRS AND INTERIOR REMODEL OF DWELLING. INCLUDING (N) BEDS,",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.783004677, -122.473807564)",5,8,4,29
Resident,6017013,362 MADRID ST,FALSE,BP Filed,6/20/2017 0:00,2,1,0,0,,,,,,COMPLY W/COMPLAINT#201782940. UNIT LEGALIZATION ORD 43-4. LEGALIZATION OF UNIT INSTALLED WITHOUT PER,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7238624578, -122.431448697)",90,9,1,7
Resident,7279010,139 LAKESHORE DR,FALSE,BP Filed,6/26/2017 0:00,2,1,0,0,,,,,,ADU ADDITION IN GROUND FLOOR OF (E) HOUSE PER STATE LAW. NO CHANGES TO (E) EXTERIOR FACADE & NO ADDE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.729557518, -122.495237524)",43,10,8,35
Resident,6971A049,666 GENEVA AV,FALSE,BP Filed,3/13/2018 0:00,2,1,0,0,,,,,,LEGALIZATION OF 1ST FLR UNIT W/ 1 BEDRM AND 1 BATH PER ORD# 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.719150286, -122.444323931)",80,9,1,28
Resident,3084008,842 MONTEREY BL,FALSE,BP Filed,6/7/2017 0:00,2,1,0,0,,,,,,"COMPLY WITH NOV #201780911, 200876639, 200875573. LEGALIZE 2ND UNIT INCLUDING KITCHEN, LIVING RM, DI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7317865068, -122.454447644)",70,9,8,41
Mixres,3751029,750 HARRISON ST,TRUE,CONSTRUCTION,4/4/2018 0:00,79,79,9,9,On-site BMR Project,55% AMI;,Rental,2013,"The proposed project would invove demolition of existing one-story commercial building (constructed in 1954) and construction of a new eight-story, residential building. The proposed building would consist of seven residential levels with 77 units, over",CONSTRUCT (N) 9-STORY MIXED-USE BUILDING. MAHER ORDINANCE IS NOT COMPLY.,3289,-2035,0,0,0,0,0,0,0,0,0,0,0,0,5324,3289,-2035,0,0,0,0,0,0,0,0,DVU,,,,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7817807119, -122.398675748)",32,1,10,34
Resident,2041035,1726 09TH AV,FALSE,BP Filed,1/8/2018 0:00,3,1,0,0,,,,,,LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT PERMIT. ADU APPLICATION ORDINANCE 43-14. LEGALIZE SH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7560397824, -122.46542529)",44,10,8,14
Resident,6656059,20 CHENERY ST,FALSE,BP Filed,8/14/2017 0:00,3,1,0,0,,,,,,"INSTALLING APT. BATHROOM, BEDROOM & KITCHEN.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7415908786, -122.426061167)",59,9,5,10
Resident,2406026,2450 20TH AV,FALSE,BP Filed,3/15/2018 0:00,2,1,0,0,,,,,,COMPLY W/ NOV# 201755441 TO REMOVE NORTH BEDRM & BATH @ 1ST FL; REMOVE TEMP PARTITION WALL & CLOSETO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.742037445, -122.476364088)",40,10,7,35
Mixres,331016,231 ELLIS ST,FALSE,PL FILED,1/24/2006 0:00,400,400,400,400,,,,2002,"The proposed project involves the demolition of seven buildings containing a mixture of commercial, residential and retail uses totaling about 105,000gsf and construction of a 735,000gsf affordable housing complex containing 11,000gsf of office space, 11",,22000,22000,0,0,0,0,0,0,0,11000,11000,0,0,0,0,11000,11000,0,0,0,0,0,0,0,0,TBLOMGRE,Glide Eco,Glide Eco,415 923 4,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7848834093, -122.410259045)",20,5,10,36
Resident,2198019,2174 20TH AV,FALSE,BP Filed,9/19/2017 0:00,2,1,0,0,,,,,,TO LEGALIZE AN EXISTING ILLEGAL SECOND UNIT PER ORDINANCE 43-14. TO COMPLY WITH NOV #201791662.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.747248882, -122.476730717)",40,10,7,35
Vacant,3755113,182 LANGTON ST,FALSE,PL Filed,1/22/2018 0:00,0,0,0,0,,,,2018-001227PRJ,Variance request from rear yard and open space requirement to permit (2) ADU dwelling units on ground floor. Seismic upgrade on separate building permit.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,DNM Architecture,,4153488910,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7752426027, -122.407299004)",32,1,10,34
Vacant,3504029,33 GOUGH ST,FALSE,PL Filed,1/31/2018 0:00,518,518,0,0,,,,2017-007761PRJ,"The project proposes demolition of the existing building and construction of a 23-story (+250 feet) residential podium and tower with ground floor commercial space, community amenity spaces, a planted courtyard and a public mews. The project would contai",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,"33 Gough, LLC",,3102922807,8 - Mission,6,The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7720548789, -122.421271111)",32,1,10,20
Resident,1066050,435 EUCLID AV,FALSE,BP Filed,9/20/2017 0:00,30,6,0,0,,,,,,ADDITION OF ADU PER ORDINANCE NO. 162-16.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7837977372, -122.45338217)",11,8,6,31
Mixres,763009,600 VAN NESS AVE,FALSE,BP Filed,12/19/2017 0:00,150,150,0,0,,,,2015-012729PRJ,Demolition of existing McDonald's building; Construction of new 9 floor (+ mech. penthouse) residential building: Project includes ground level retail on Van Ness & golden Gate Ave.; 2-story townhouses on Elm Street; new street trees on Elm Street and go,"*** CPC/DBI PARALLEL P/C PER MAYOR'S DIRECTIVE 17-02.***
TO ERECT 13 STORIES, 1 BASEMENT, TYPE I-A, 168 UNIT RESIDENTIAL BUILDING.",4997,-4603,0,0,0,0,0,0,0,0,0,0,0,0,0,4997,-4603,0,0,0,0,0,0,0,0,VBYRD,"Reuben, Junius & Rose LLP",,4155679000,4 - Downtown,6,Van Ness Corridor; Civic Center Public Realm Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7813374317, -122.420093312)",21,4,10,36
Resident,2347004G,2350 19TH AV,TRUE,CONSTRUCTION,10/27/2017 0:00,10,10,0,0,Fee Payment,,,2007,"The proposed project would demolish a 300 square foot carport/office shack, subdivide one lot into five new (25'x100') lots, and the construct two units on each lot for a total of ten dwelling units.","TO ERECT 4 STORY, 2 DWELLING UNITS BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,INISHIMU,San Franc,Chris Fol,577-9885,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7440384472, -122.475368144)",44,10,8,41
Resident,3730040A,2 SUMNER ST,FALSE,BP Filed,1/20/2017 0:00,1,1,0,0,,,,2017-001506PRJ,"CHANGE OF USE SITE PERMIT, CHANGE GROUND FL FROM COMMERCIAL TO RESIDENTIAL, EXPAND BUILDING TO REAR PROPERTY LINE, ADD THIRD FLOOR, ADD ROOF DECK AT ALL LEVELS.","CHANGE OF USE SITE PERMIT, CHANGE GROUND FL FROM COMMERCIAL TO RESIDENTIAL, EXPAND BUILDING TO REAR PROPERTY LINE, ADD THIRD FLOOR, ADD ROOF DECK AT ALL LEVELA.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CALEXAND,Harvey Hacker Architects,,4159570579,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7763643066, -122.410794369)",32,1,10,34
Resident,3108003,1565 PLYMOUTH AV,FALSE,BP Filed,6/2/2017 0:00,2,1,0,0,,,,,,"UNIT LEGALIZATION ORDINANCE 43-14. LEGALIZE EXISTING KITCHEN, ONE BED RM & ONE BATH ROOM. ALL WORK A",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7304842449, -122.457498455)",71,9,8,41
Resident,779015,904 STEINER ST,FALSE,BP Filed,2/2/2018 0:00,2,1,0,0,,,,,,ADDING ONE RESIDENTIAL UNIT WITH 2 BEDROOMS & 2 BATH AT (E) LOWER LEVEL AND NEW REAR HORIZONTAL EXTE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7778119819, -122.432973232)",23,4,11,39
Mixres,3571031,2070 FOLSOM ST,TRUE,BP ISSUED,11/8/2017 0:00,127,127,127,127,,50% AMI; 60% AMI;,Rental,2015-014715PRJ,"Re-zoning of site from P to UMU. Construction of a new mixed-use 7-story building with ~109 units of affordable family housing along with community and building serving support services on the first and second floors, a ground floor cafe/retail space, an","MOHCD PROJECT ERECT 9 STORIES Type 1-B OF 127 DWELLING UNITS MIX USE (R-2, B, M, E, A-3). Site plan only",16000,16000,0,5000,5000,0,0,0,0,10000,10000,0,0,0,0,1000,1000,0,0,0,0,0,0,0,0,VBYRD,Y.A. Studio,,4159201939,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7642712647, -122.415742571)",53,3,2,20
Resident,7097019,33 RAE AV,FALSE,BP Filed,6/27/2017 0:00,2,1,0,0,,,,,,IN COMPLIANCE OF NOV#201755827 TO LEGALIZE (E) KITCHEN AND ADD NEW LIVING ROOM AT GROUND FLOOR TO CR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7121242528, -122.447732505)",66,9,1,28
Resident,5652028,3625 FOLSOM ST,FALSE,BP Filed,9/26/2017 0:00,2,1,0,0,,,,,,"LEGALIZATION OF GROUND FLOOR ""IN LAW"" APT AND BASEMENT, CODE UPGRADES TO PRE-EXISTING SPACE-1 BATH A",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7411171593, -122.413050256)",83,9,2,2
Mixres,3521056,1532 HARRISON ST,TRUE,BP ISSUED,7/28/2017 0:00,136,136,22,22,On-site BMR Project,90% AMI;,Rental,2013,"The proposed project is proposing two versions of a residential project on the project site at 1532 Harrison Street. The first version would demolish an existing parking lot and construct an approximately 103,544 gsf mixed use project with 119 dwelling u",ERECT A 7 STORIES TYPE 1A 136 RESIDENTIAL UNITS AND COMMERCIAL BUILDING. MAHER EXEMPTED.,1463,1463,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,1463,0,0,0,0,0,0,0,0,RSUCRE,,,,8 - Mission,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7704838958, -122.413316348)",32,1,10,20
Resident,6343037,641 LISBON ST,TRUE,BP ISSUED,4/2/2018 0:00,2,1,0,0,,,,,,COMPLY WITH NOV#201787121. LEGALIZE DWELLING UNIT AT GROUND FLOOR PER ORDINACE 43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7181391203, -122.436180744)",90,9,1,7
Resident,7029A001,718 GENEVA AV,FALSE,BP Filed,10/30/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION PER ORDINANCE 43-14 AT 1ST FLR. (TO COMPLY WITH VIOLATION #201796701.),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7184436444, -122.443483402)",80,9,1,28
Resident,4733008B,1182 PALOU AV,FALSE,BP Filed,9/27/2017 0:00,2,1,0,0,,,,,,"ADDING ONE UNIT (ADU) ORDINANCE 162-16, ON LOWER LEVEL. COVERTING EXISTING GARAGE INTO NEW SECONDARY",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7297481543, -122.382914601)",78,2,9,1
Resident,7100007,556 ELLINGTON AV,FALSE,BP Filed,5/2/2017 0:00,1,1,0,0,,,,,,ERECT A 3 STORY TYPE V CONSTRUCTION SINGLE FAMILY DWELLING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7106210049, -122.449162524)",66,9,1,28
Resident,2711036,4741 19TH ST,TRUE,BP APPROVED,2/7/2018 0:00,2,1,0,0,,,,,,CONVERSION OF GARAGE / STORAGE LEVEL TO INCLUDE A UNIT WHILE MAINTAINING PARKING. STUDIO UNIT TO INC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7587187104, -122.442865497)",115,3,5,5
Mixres,0522002A,2601 VAN NESS AV,TRUE,BP ISSUED,4/4/2016 0:00,26,26,0,0,Fee Payment,,,2013,"Construct a 7 story, 26 unit building with 3 ground floor commercial and 2 levels subterranean garage with 35 spaces","ERECT 7-STORY, 27 DWELLING UNITS, RESIDENTIAL/R.2, A-2/B/S-2. Life safety permits deferred.",7632,7632,0,0,0,0,0,0,0,0,0,0,0,0,0,7632,7632,0,0,0,0,0,0,0,0,GNELSON,L. F. Geo,L. F. Geo,415.665.5,2 - Marina,2,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7996624907, -122.424616675)",15,4,6,13
Resident,1634019,678 11TH AV,FALSE,BP Filed,9/11/2017 0:00,3,1,0,0,,,,,,"PER UNIT LEGALIZATION ORDINANCE 43-14, LEGALIZE UNIT AT 1ST FLOOR, HABITABLE SPACE UNDER PA 9515386.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.775561267, -122.468926941)",5,8,4,11
Resident,4967035,1215 HOLLISTER AV,FALSE,BP Filed,5/9/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION FOR ORD 43-14. REMOVE 40 LF NON-BEARING WALL. ADD 30 LF NON-BEARING WALL. CHANGE (,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7207717667, -122.394815482)",88,2,9,1
Resident,1781035,1346 27TH AV,TRUE,BP APPROVED,2/9/2018 0:00,2,1,0,0,,,,,,ADD UNIT PER ORDINANCE NO. 162-16. REVISION TO PA#201703171678 AT FIRST FLOOR. ADD NEW KITCHEN FOR N,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7623005228, -122.48530779)",39,10,7,35
Resident,3601071,3927-3931 19TH ST,FALSE,BP FILED,8/13/2008 0:00,6,3,0,0,,,,2014,"Add a second residential unit at the front of each of three lots that contain one residence at the rear of each lot. Increase number residences from three to six and increase total residential area from 4,917 sf to 16,917 sf.",ERECT 5 STORY SINGLE FAMILY DWELLING. 3 STORY OCCUPAANCY AND 2 BASEMENT),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MSMITH,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7592647573, -122.431204638)",52,3,5,5
Resident,1825002A,1427 28TH AV,FALSE,BP Filed,2/2/2018 0:00,2,1,0,0,,,,,,"LEGALIZATION OF (1) (E) UNIT, ORDINANCE 43-14",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7607059152, -122.48692876)",39,10,7,35
Resident,4591C001,HUNTERS POINT SHIPYARD (UNDER CONSTRUCTION),TRUE,CONSTRUCTION,1/7/2016 0:00,164,164,0,0,,,,2013,Hunters Point Shipyard Phase 1 D4D amendments and associated review of buildings within Phase I,Multiple Permits,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,,,,10 - South Bayshore,10,Hunters Point Shipyard,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7298349392, -122.370839091)",78,2,9,1
Mixres,2081001,3701 NORIEGA ST,TRUE,BP APPROVED,3/15/2017 0:00,12,12,0,0,Fee Payment,,,2014-002414PRJ,Demolish automotive service station. Construct mixed use building with ground floor retail (grocery) and 14 upper floor dwelling units.,"TO ERECT 3-STORY, 2 BASEMENT, 12 UNITS CONDO, TYPE IA, RETAIL, PARKING BUILDING.
** MAHER: DISTURBANCE OF AT LEAST 50 CU.YD.OF SOIL; ROUTE TO DPH **",9635,8325,0,0,0,0,0,0,0,0,0,0,0,0,0,9635,8325,0,0,0,0,0,0,0,0,AHUISMAN,"Farella, Braun + Martel",,4159544902,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7528079187, -122.503572958)",39,10,7,35
Mixres,6959019,4840 MISSION ST,FALSE,PL FILED,2/21/2017 0:00,134,134,114,114,,30% AMI; 50% AMI; 60% AMI;,,2016-012545PRJ,"Development of a mixed-use Affordable Housing project with 114 Affordable units, 20 Market Rate units, 24 parking spaces, 110 bicycle spaces with open space on 2 lots with 21 buildings. Project is applying for the State Density Bonus.",,8300,8300,0,0,0,0,0,0,0,0,0,0,0,0,0,8300,8300,0,0,0,0,0,0,0,0,,BRIDGE Housing Corporation,,4153213523,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7206931959, -122.438500004)",80,9,1,28
Vacant,66003,2205 TAYLOR ST,TRUE,PL Approved,1/24/2018 0:00,0,1,0,0,,,,2017-010477PRJ,Variance from the exposure requirements to permit the addition of an Accessory Dwelling Unit (ADU) in the existing rear yard.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MCHANDLE,Drafting Green,,8132972958,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8028452306, -122.414983733)",107,6,3,32
Resident,516034,2163 GREENWICH ST,FALSE,BP Filed,12/14/2017 0:00,4,2,0,0,,,,,,ADD ACCESSORY DWELLING UNIT 2163A ON 4TH FL PER ORDINACE #162-16. FIRE SPRINKLERS UNDER SEPERATE PER,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7988587545, -122.435200726)",15,4,6,13
Resident,7091022,24 RANDOLPH ST,FALSE,BP Filed,11/1/2017 0:00,3,1,0,0,,,,,,COMPLY W/ COMPLAINT #201713653 & #201711441. LEGALIZATION OF DWELLING UNIT INSTALLED W/O PERMIT. UNI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,19th Avenue,2018,Q1,2018_Q1,"(37.714551054, -122.463096377)",65,10,1,24
Vacant,3642051A,871-873 CAPP ST,FALSE,PL Filed,8/1/2017 0:00,0,2,0,0,,,,2017-009779PRJ,Variance request from the exposure requirement to permit the addition of two new accessory dwelling units to an existing 8-unit building.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MCHRISTE,Van T. Ly & Associates,,4158677182,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7527750957, -122.417075332)",53,3,2,20
Vacant,316010,420 TAYLOR ST,FALSE,BP Filed,12/14/2017 0:00,0,0,0,0,,,,2017-016476PRJ,CONVERSION OF (E) GROUND FLOOR & BASEMENT PARKING INTO OFFICE SPACE WITH ADDITION OF PARTIAL MEZZANINE @ GROUND FLOOR & ADDITION OF OFFICE SPACE @ EXISTING 4TH FLOOR ROOF DECK,CONVERSION OF (E) GROUND FLOOR & BASEMENT PARKING INTO OFFICE SPACE WITH ADDITION OF PARTIAL MEZZANINE @ GROUND FLOOR & ADDITION OF OFFICE SPACE @ EXISTING 4TH FLOOR ROOF DECK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ETUFFY,,,4155462933,4 - Downtown,3,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7863320761, -122.411031019)",20,5,3,36
Mixres,1939001,TREASURE ISLAND DEVELOPMENT AREA,TRUE,PL APPROVED,3/15/2011 0:00,8619,7800,2050,1800,,,,2007,"Development and Redevelopment Plan for Treasure Island and Yerba Buena Island, including land uses up to (approximately): 6,000 units residential, 500 rooms hotel, 250,000-sf retail, 300 acres park and open space, parking, reuse and historic rehabilitati",,381000,381000,0,0,0,0,0,0,0,0,0,0,0,0,0,250000,250000,0,0,0,131000,131000,0,500,500,JSWITZKY,,,,-,6,Treasure Island,Treasure Island & Yerba Buena Island,2018,Q1,2018_Q1,"(37.8242837711, -122.370951497)",36,1,10,37
Mixres,3953002,88 ARKANSAS ST,TRUE,BP ISSUED,11/9/2016 0:00,127,127,25,25,On-site BMR Project,55% AMI;,Rental,2015-000453PRJ,Priority Processing application for both Affordable Housing and LEED Platinum. The proposed project at 88 Arkansas Street proposes to demolish two existing single-story buildings on separate lots in order to build a new five story 127-unit Type 1 reside,"TO ERECT 5 STORIES, 1 BASEMENT, 127 DWELLING UNITS, MIX USE WITH COMMERICIAL, MAHER ORDINANCE.",3118,-9237,0,0,0,0,0,0,2870,0,-2870,9485,0,-9485,0,3118,3118,0,0,0,0,0,0,0,0,KCONNER,"Fifth Historic Properties, LLC/Mart",Julie Heinzler,415-348-4644,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7653561325, -122.399047725)",54,1,9,4
Resident,6272027,2 RUSSIA AV,TRUE,BP APPROVED,4/13/2018 0:00,8,8,0,0,,,,,,"TO ERECT 5 STORIES, NO BASEMENT, TYPE VA OVER 1A, 8 UNITS RESIDENTIAL, COMMERCIAL, PARKING.
** MAHER",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7211733012, -122.436852339)",90,9,1,7
Resident,4914013,2845 INGALLS ST,FALSE,BP Filed,1/22/2018 0:00,1,1,0,0,,,,,,"REAR BUILD; VERTICAL ADDITION CONVERT (E) GARAGE INTO SINGLE FAMILY DWELLING, ADD 2ND FLOOR, ADD (N)",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7210016016, -122.390994293)",88,2,9,1
Mixres,3548016,1500 - 1528 15TH ST,FALSE,PL FILED,4/24/2017 0:00,138,138,35,35,,,,2016-011827PRJ,,,1327,127,0,0,0,0,0,0,0,0,0,0,0,0,1200,1327,127,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7670006794, -122.417934216)",53,3,2,20
Mixres,4991075,EXECUTIVE PARK - OCEAN LANDING,TRUE,BP FILED,12/1/2016 0:00,586,586,72,72,On-site BMR Project,90% AMI;,Ownership/Rental,2015-009690PRJ,The project consists of demolishing an existing office building and surface parking lot and constructing a new residential development. The project is being submitted in conformity to the Executive Park Subarea Plan of the Bayview Hunters Point Area Plan,,6730,-93270,0,0,0,0,0,0,99200,0,-99200,0,0,0,800,6730,5930,0,0,0,0,0,0,0,0,SMENDRIN,Michael Liu,OCEAN LANDING LLC,4154454558,10 - South Bayshore,10,Executive Park; Bayview Hunters Point,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7099924854, -122.393791199)",79,2,9,1
Resident,6304004,920 RUTLAND ST,FALSE,BP Filed,1/18/2018 0:00,2,1,0,0,,,,,,LEGALIZATION OF ADDITION UNIT ORDINANCE #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,10,,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7111244815, -122.408382018)",75,9,9,40
Resident,1735054,1212 16TH AVE,FALSE,BP Filed,12/27/2016 0:00,2,1,0,0,,,,2017-000141PRJ,"ADD 3RD FLOOR ADDITION WITH NEW STAIR AND ELEVATOR, REMODEL INTERIOR INCLUDING 1 1/2 NEW BATHS AND A NEW KITCHEN FOR 2ND UNIT.","ADD 3RD FLOOR ADDITION WITH NEW STAIR AND ELEVATOR, REMODEL INTERIOR INCLUDING 1 1/2 NEW BATHS AND A NEW KITCHEN FOR 2ND UNIT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CMAY,Actual-Size Architecture,,4156433366,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.765231612, -122.473807646)",109,10,11,14
Resident,0935006B,3130 BRODERICK ST,FALSE,BP Filed,9/5/2017 0:00,9,0,0,0,,,,2017-013205PRJ,Addition of an accessory dwelling unit to an existing 8 unit building.,"ADD UNIT PER ORDINANCE NO. 162-16 ADU AT 1ST FLOOR, CONVERT OF (E) STORAGE & MECH RM TO HABITABLE SPACE, (N) KITCHEN, BATH, LIVING & 2 BEDRM AT REAR FACADE, (N) DOORS, WINDOWS, REMOVE MASONRY CHIMNEY, ELECT & PLUMB AS REQ'D. NO CHANGE TO BLDG FOOTPRINT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DWEISSGL,Rodgers Arch.,,4153099612,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7992815182, -122.444187126)",17,4,6,13
Mixres,3736086,555 HOWARD STREET,FALSE,BP FILED,9/21/2016 0:00,127,127,0,0,,,,2015-008058PRJ,"Demolish two existing2-story buildings and construct new mixed-use tower with ~194,000 GSF residential (127 units) and ~167,000 GSF hotel (223 rooms). The project will have 2 levels of below-grade parking (76 spaces).
The PPA was submitted on 6/19/15 a",,179000,136745,0,0,0,0,0,0,0,6075,-25180,0,0,0,0,6300,-4700,0,0,0,166625,166625,0,0,0,,Pacific Eagle Holdings,,4157807308,9 - South of Market,6,Downtown; Downtown Streetscape Plan; Transbay; Transit Center District; Transit Center District Streetscape Plan,Transit Center District,2018,Q1,2018_Q1,"(37.7873788559, -122.396874969)",32,1,10,8
Mixres,6935001,1601 - 1635 OCEAN AV,FALSE,PL FILED,12/11/2013 0:00,31,31,4,4,,,,2009,"The proposed project would demolish five commercial buildings and construct a new four-story building containing 48 dwelling units, 8,114 square-feet of retail space, and 48 off-street parking spaces. PROJECT REVISED 5//13: 1649 Ocean Avenue (parcel 027)",,33275,15454,0,15082,15082,0,0,0,0,0,0,0,0,0,17821,18193,372,0,0,0,0,0,0,0,0,MBOUDREA,,,,13 - Ingleside,7,Balboa Park; Ocean Avenue Corridor Design,Balboa Park,2018,Q1,2018_Q1,"(37.7242977921, -122.459377307)",64,10,8,24
Mixres,6969001,5050 MISSION ST,TRUE,CONSTRUCTION,5/27/2016 0:00,61,61,9,9,On-site BMR Project,90% AMI;,Ownership,2006,"The proposed project would demolish the existing retail and auto repair shop and construct a 61-unit residential building, 8,000 sq. ft. of retail, and 82 parking spaces. The building would be 60 feet in height plus basement and would be approximately 11","TO ERECT 6 STORIES, NO BASEMENT, 61 UNITS OF COMMERICAL & RESIDENTIAL MIX USED BUILDING. INCLUDES MEP AND STRUCTURAL. F/A AND SPRINKLERS ON SEPARATE PERMIT.",7000,2600,0,0,0,0,0,0,0,0,0,0,0,0,4400,7000,2600,0,0,0,0,0,0,0,0,BBOLLING,Paul O'Driscoll,Warner Schmalz,415-252-7063,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7177327712, -122.44058783)",80,9,1,28
Mixres,3952001B,75 ARKANSAS ST,TRUE,CONSTRUCTION,4/12/2018 0:00,30,30,0,0,,,,2015-009928PRJ,"Demolition of existing 1-story warehouse building. Proposed new construction of a 4 story mixed-use building, with 8,150 sf of ground floor retail and multipurpose space with 56,700 sf of residential over 3 floors of student housing consisting of 30 un","TO ERECT 4 STORIES, TYPE VA, 30 UNITS STUDENT HOUSING WITH MIXED USE BUILDING.
** MAHER: N/A **",7584,-11666,0,0,0,0,0,0,0,0,0,19250,0,-19250,0,7584,7584,0,0,0,0,0,0,0,0,EJARDINE,Equity Community Builders,,4155773723,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7653947123, -122.398409564)",54,1,9,4
Mixres,453002,915 NORTH POINT ST,FALSE,PL Filed,2/1/2018 0:00,37,37,0,0,,,,2017-000280PRJ,The project site is on an L shaped lot facing North Point Street on the north side and Larkin Street on the east side. The project site is currently being used as a two story parking garage. The proposed project consists of the replacement of the parki,,1053,1053,0,0,0,0,0,0,0,0,0,0,0,0,0,1053,1053,0,0,0,0,0,0,0,0,VBYRD,TEF Design,Andrew Wolfram,415-901-4912,3 - Northeast,2,Northeast Waterfront; FishermanΓÇÖs Wharf Public Realm Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8051470343, -122.422351048)",98,6,6,32
Resident,3282001,101 KENWOOD WY,FALSE,BP Filed,5/25/2017 0:00,2,1,0,0,,,,,,"UNIT LEGALIZATION PER ORDINANCE# 43-14. CHANGE OF USE FROM 1 UNIT TO 2 UNITS. 2 BEDROOMS, 1 BATH & 1",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7284548006, -122.46077765)",68,10,8,41
Resident,5395064,27 LEDYARD ST,TRUE,BP REINSTATED,3/19/2018 0:00,2,1,0,0,,,,,,RESPOND TO COMPLAINT #201763092 & 201831181. ADDING AUXILIARY DWELLING UNIT PER ORDINANCE 95-17. NEW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7336790106, -122.402148026)",87,2,9,1
Resident,2751018,325 DIAMOND ST,FALSE,BP Filed,12/7/2017 0:00,2,1,0,0,,,,,,"INTERIOR & FACADE IMPROVEMENTS, NEW GARAGE, REMODEL OF (E) LOWER LEVEL AS NEW DWELLING UNIT, REAR AD",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7571196562, -122.436515028)",115,3,5,5
Resident,1822019C,1462 32ND AV,TRUE,BP ISSUED,12/15/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF (E) UNAUTHORIZED IN-LAW DWELLING UNIT PER ORDINANCE# 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7599301782, -122.490513796)",39,10,7,35
Resident,6352002,818 NAPLES ST,FALSE,BP Filed,9/26/2017 0:00,2,1,0,0,,,,,,"UNIT LEGALIZATION PER ORD 43-14. ADD (1) TREE 24"" BOX ON SIDEWAL. PROVIDE (2) BICYCLE SPOTS IN GARAG",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7160323671, -122.43519483)",90,9,1,7
Mixres,1216004,440-444 Divisadero St AND 1048-1064,FALSE,PL Filed,11/8/2017 0:00,154,152,0,0,,,,2015-007816PRJ,"1) Demolish existing car wash and gas station on Divisadero and two existing buildings on Oak; 2) Relocate one existing building on Oak to new location 50 feet to the east; and 3) Construct new 148,000 GSF residential building 4-6 stories in height, as w",,7787,4457,0,0,0,0,0,0,0,0,0,0,0,0,0,7787,4457,0,0,0,0,0,0,0,0,MWOODS,Genesis CA Development LLC,,9724048288,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7734429287, -122.436594891)",26,4,11,9
Resident,4939014A,1299 FITZGERALD AV,FALSE,BP Filed,11/21/2017 0:00,2,1,0,0,,,,,,"UNIT LEGALIZATION PER ORDINANCE 43-14 ON GROUND FLOOR, LEGALIZE KITCHEN AS SHOWN ON PLAN FOR NEW UNI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7217971891, -122.393091641)",88,2,9,1
Resident,1151001,861 BAKER ST,FALSE,BP Filed,7/18/2017 0:00,3,1,0,0,,,,,,"COMPLY W/ NOV'S 200343204, 2017661551, 201767571, 201786691. REMOVE UNPERMITTED KITCHEN FROM 3RD FLR",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7790544159, -122.442386375)",97,7,11,18
Vacant,645001,1501 CALIFORNIA ST,FALSE,PL Filed,1/10/2018 0:00,0,0,0,0,,,,2018-000751PRJ,Conditional Use Authorization to permit change of use from a vacant and unoccupied Retail space to Restaurant.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MCHANDLE,,,4155667442,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7905923754, -122.419251947)",105,4,3,21
Mixres,3750082,"667 FOLSOM ST, 120 & 126 HAWTHORNE ST",TRUE,PL APPROVED,1/5/2017 0:00,229,229,34,34,,,,2015-002604PRJ,"The proposal entails demolition of 126 Hawthorne Street, a 2 story concrete building and 667 Folsom Street, a 2 story concrete building. The 19,589 square foot project site comprises three adjoining rectangular lots. Following demolition, the proposal",,8873,-17041,0,0,0,0,0,0,21914,0,-21914,4000,0,-4000,0,8873,8873,0,0,0,0,0,0,0,0,CTOWNES,"EQR-Soma II LP, a Delaware limited",,4157677188,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7842209801, -122.397630824)",32,1,10,8
Resident,5463016,39 EXETER ST,FALSE,BP Filed,8/21/2017 0:00,2,1,0,0,,,,,,COMPLY WITH COMPLAINT #201787701 UNIT LEGALIZATION ORD 43-14. LEGALIZATION OF UNIT INSTALLED WITHOUT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.722269773, -122.398350435)",88,2,9,1
Vacant,836008,98 FRANKLIN ST,FALSE,PL Filed,1/10/2018 0:00,0,0,0,0,,,,2016-014802PRJ,Demolish existing surface parking lot and construct a 26-story residential tower above a 5-story podium. The podium (Floors 1 to 5) will be occupied by new secondary school facilities for the International High School of the French American International,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,Farella Braun & Martel,Steven L Vettel,415-954-4902,6 - Buena Vista,5,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7749509772, -122.42035034)",21,4,11,9
Vacant,294007,220 POST ST,FALSE,PL Filed,11/17/2017 0:00,0,0,0,0,,,,2017-014849PRJ,"Request for Conditional Use Authorization to permit change of use for approximately 12,350sq ft. of retail to office use on fourth and fifth floors.",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VLEWIS,"Reuben, Junius & Rose, LLP",,4155679000,4 - Downtown,3,Downtown; Downtown Streetscape Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7889078933, -122.405715964)",19,6,3,8
Resident,3510058,915 - 935 MINNA ST,TRUE,CONSTRUCTION,3/23/2018 0:00,44,44,6,6,On-site BMR Project,55% AMI;,Rental,2015-002600PRJ,"Proposed new construction of a residential building (4 stories above ground).
The PPA was submitted on 3/2/15 and the 90 day deadline is 5/31/2015.","TO ERECT 4 STORIES, 1 BASEMENT, 44 UNITS RESIDENTIAL APARTMENT BUILDING.
** MAHER: DISTURBANCE OF AT LEAST 50 CU. YD. OF SOIL. ADDENDUM TO BE ROUTED TO DPH **.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DVU,Equity Community Builders,,4156516200,4 - Downtown,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7742867308, -122.415799574)",32,1,10,34
Vacant,3610021,2475-2481 MISSION ST,FALSE,PL Filed,3/20/2018 0:00,0,0,0,0,,,,2018-003874PRJ,Conditional Use Authorization to permit the chance of use from retail to restaurant d.b.a. La Taza.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,4159214192,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7574798444, -122.418586676)",53,3,2,20
Resident,1718032,1254 33RD AV,FALSE,BP Filed,12/28/2017 0:00,2,1,0,0,,,,,,INTERIOR REMODEL AND REAR YARD ADDITION INCLUDING REPLACEMENT WINDOWS AND NEW FRONT STAIR AND THE AD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.763744574, -122.491857201)",39,10,7,35
Resident,1535018,1814 ANZA ST,FALSE,BP Filed,11/15/2017 0:00,3,1,0,0,,,,,,HORIZONTAL ADDITION @ REAR TO 75% OF LOT COVERAGE. CREATION OF 3RD LEVEL LEGAL UNIT ON 1ST & BASEMEN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.77917727, -122.467735705)",5,8,4,11
Vacant,3535012,2057 MARKET ST,FALSE,BP Filed,12/6/2017 0:00,0,0,0,0,,,,,,CHANGE OF USE FROM (E) NAIL SALON TO (N) DISPENSARY. MINOR DEMOLITION OF INTERIOR PORTIONS OF (E) SU,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7680321631, -122.427695095)",37,3,5,5
Resident,3626012,438 ALVARADO ST,TRUE,BP ISSUED,2/14/2018 0:00,2,1,0,0,,,,,,"Convert ground floor storage area into new studio dwelling unit, resulting in a 2-unit building.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7541467809, -122.430800612)",52,3,5,22
Mixres,3753081,345 06TH ST,TRUE,BP ISSUED,4/5/2017 0:00,102,102,14,14,On-site BMR Project,55% AMI;,Rental,2013,"The proposed project would construct an eight-story mixed use building with 89 SRO units and one 3,090 square-foot commercial space.","TO ERECT 9-STORY, 102 DWELLING UNITS APARTMENT, PARKING, RETAIL, MIX USE BUILDING. MAHER ORDINANCE NEED TO BE COMPLY.",1727,1727,0,0,0,0,0,0,0,0,0,0,0,0,0,1727,1727,0,0,0,0,0,0,0,0,RSUCRE,Marge Vincent,Toby Morris,749-0302,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7781649025, -122.404677387)",32,1,10,34
Resident,931013,2540 CHESTNUT ST,TRUE,BP ISSUED,12/11/2017 0:00,3,1,0,0,,,,,,"ADD A (N) RESIDENTIAL UNIT TO (E) 2-UNIT BLDG. NO ADDED FOOTPRINT.
1 BEDROOM & 1 BATH.
** MAHER: N",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7999547586, -122.445299071)",17,4,6,13
Resident,4006006,1601 - 1677 MARIPOSA ST / 485 CAROLINA,TRUE,CONSTRUCTION,4/11/2018 0:00,145,145,60,60,On-site BMR Project,50% AMI;,Rental,2012,"The proposed project would involve demolition of an existing 1-story industrial buildings and bus repair shop and the construction of a new mixed-use project with 316 dwelling-units, 8,823 sf ft. of commercial space, and 261 off-street parking spaces.","TO ERECT 4 STORIES, NO BASEMENT, 145 UNITS RESIDENTIAL & COMMERCIAL BUILDING.
** MAHER: EXEMPTED; SEE APPROVAL LETTER FROM DPH ON THE PLANS **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7632362399, -122.399760975)",54,2,9,26
Resident,1249023,1801 HAIGHT ST,FALSE,PL Filed,12/28/2017 0:00,7,7,0,0,,,,2017-001816PRJ,"New 4-story building on a lot with existing building to remain. New building to have 7 dwelling units and ground floor commercial, roof deck and basement.
The PPA was submitted on 2/10/17 and the 90 day deadline is 5/11/17.",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,,Michael Harris,4152438272,6 - Buena Vista,5,Haight Ashbury Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7691225783, -122.452033224)",25,7,11,3
Mixres,350003,1066 MARKET ST,TRUE,BP ISSUED,11/29/2017 0:00,303,303,85,85,TBD,,,2013,"The proposed project is the demolition of existing 2-story commercial building and parking lot and new construction of a 14-story building to house approximately up to 330 residential units, approximately 1,885 sq.ft. of retail on Market Street, approxim","TO ERECT 14 STORIES, 2 BASEMENT, 304 RESIDENTIAL & RETAIL BUILDING.",4540,-526,0,0,0,0,0,0,0,0,0,0,0,0,0,4540,-526,0,0,0,0,0,0,0,0,IWILSON,Thomas Hart,Thomas Hart,772-7000,4 - Downtown,6,Downtown; Civic Center Public Realm Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7817990067, -122.411741592)",20,5,10,36
Resident,6973021,165 TARA ST,FALSE,BP Filed,6/1/2017 0:00,2,1,0,0,,,,,,ADD UNIT PER ORDINANCE NO. 162-16 & COMPLY TO NOV#201636153. AT 1ST FLR ADD NEW ACCESSORY DWELLING U,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7204750427, -122.448818127)",81,10,1,24
Resident,5636022,501 FRANCONIA ST,TRUE,BP ISSUED,4/9/2018 0:00,2,1,0,0,,,,,,LEGALIZATION OF (E) UNIT. PER ORD #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7422576287, -122.407940036)",83,9,2,2
Vacant,6523001,1271 TREAT AV,FALSE,BP Filed,12/22/2017 0:00,0,0,0,0,,,,,,TO ERECT A 1-STORY CLUBHOUSE.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7502005808, -122.412235606)",53,3,2,20
Resident,1782009,1355 27TH AV,FALSE,BP Filed,1/18/2018 0:00,2,1,0,0,,,,,,"RETROACTIVELY ATTEMPTING TO LEGALIZE A IN-LAW UNIT, ORDINANCE 43-14",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7621345976, -122.485954837)",39,10,7,35
Resident,0303013B,891 POST ST,FALSE,BP Filed,12/21/2016 0:00,49,2,0,0,,,,2017-000777PRJ,"SITE PERMIT, ADD TWO NEW ACCESSORY DWELLING UNITS TO BASEMENT LEVEL PER ORDINANCE# 162-16. ** MAHER: N/A **","SITE PERMIT, ADD TWO NEW ACCESSORY DWELLING UNITS TO BASEMENT LEVEL PER ORDINANCE# 162-16.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CCAMPBEL,Open Scope Studios,,4159386480,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7870624892, -122.416361302)",50,6,10,36
Resident,6602030,463 DUNCAN ST,FALSE,BP Filed,8/15/2017 0:00,2,1,0,0,,,,,,ADD (N) RESIDENTIAL UNIT @ BASEMENT. SIDE ADDITION @ 2ND FL EAST & WEST ELEVATION. HORIZONTAL ADDITI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7456452395, -122.430474595)",84,9,5,22
Resident,6940031,242 ASHTON AV,TRUE,BP ISSUED,3/21/2018 0:00,2,1,0,0,,,,,,TO ADD AN ACCESSORY DWELLING UNIT (ADU)AT GROUND FL. PER ORDINANCE 162-16. (STUDIO UNIT),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7226331266, -122.461950885)",64,10,8,24
Vacant,1035004,3533 CALIFORNIA ST,FALSE,BP Filed,12/5/2017 0:00,0,0,0,0,,,,2018-001746PRJ,Conditional Use Authorization to expand a formula retail use for First Republic Bank.,"TO COMPLY WITH NOV 201704981 WORK WILL BE CONCURRENT WITH TI WORK: DEMO (N) STRUCTURAL PARITION S FINISHES, CONSTRUCTION PARTITIONS, FINISHES, LIGHTING AND MILLWORK, HVAC TO ACCOMODATE NEW LAYOUT (N) ELECTRICAL TO ACCOMODATE NEW LAYOUT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DLINDSAY,First Republic Bank,,4153644407,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7861737035, -122.452091751)",11,8,6,31
Mixres,3547027,80 JULIAN AV,TRUE,BP ISSUED,10/27/2011 0:00,0,0,0,-1,,,,2009,"Lot line adjustment, demo existing residential building, New construction of Community Facility having housing ground floor with commercial above.","ERECT 4 STORIES, TYPE 5, 7 BEDROOMS OUTPATIENT DENTAL/MEDICAL & CONGREGATE RESIDENCE BUILDING.",12900,12900,0,0,0,0,0,0,0,12900,12900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EOROPEZA,Cort Gross,Cort Gross,415-398-3137,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7672051483, -122.421392401)",53,3,2,20
Resident,1902006,1688 42ND AV,FALSE,BP Filed,10/16/2017 0:00,2,1,0,0,,,,,,"ADDITION OF DWELLING UNIT AT GROUND FLR PER ORDINANCE NO. 95-17. NEW UNIT TO BE ONE BEDROOM, ONE BAT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7552695658, -122.500979286)",39,10,7,35
Resident,1152019,1888 GOLDEN GATE AVE,TRUE,BP ISSUED,1/10/2018 0:00,17,2,0,0,,,,2016-006743PRJ,"ADDITION OF 3(N)UNITS AT G/F FOR TOTAL OF 18 UNITS (N)UNITS TO BE STUDIO, 1BED/1 BATH & 2 BED/2 BATH/(N)G/F PER ORD #30-15 (N) G/F UNIT & PATH OF EGRESS TO BE SPRINKLERED NFPA 13R SPRINKLER SYM UNDER SEPARATE PERMIT; REFER TO APP #201509248030 FOR SOFT S","ADDITION OF 3(N)UNITS AT G/F FOR TOTAL OF 18 UNITS (N)UNITS TO BE STUDIO, 1BED/1 BATH & 2 BED/2 BATH/(N)G/F PER ORD #30-15 (N) G/F UNIT & PATH OF EGRESS TO BE SPRINKLERED NFPA 13R SPRINKLER SYM UNDER SEPARATE PERMIT; REFER TO APP #201509248030 FOR SOFT S",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ESAMONSK,,LOW FAMILY LLC,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7785630295, -122.441656117)",97,7,11,39
Vacant,7052043,511 LAKEVIEW AVE,FALSE,BP Filed,12/21/2016 0:00,0,1,0,0,,,,2017-000073PRJ,"HORIZONTAL & VERTICAL ADDITION OVER GARAGE TO SINGLE FAMILY DWELLING, ADD TWO MASTER BEDROOMS, TWO BEDROOMS, LIVING ROOM, KITCHEN, DINING ROOM, OFFICE & HALF BATHS, EXERCISE ROOM.","HORIZONTAL & VERTICAL ADDITION OVER GARAGE TO SINGLE FAMILY DWELLING, ADD TWO MASTER BEDROOMS, TWO BEDROOMS, LIVING ROOM, KITCHEN, DINING ROOM, OFFICE & HALF BATHS, EXERCISE ROOM.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DWASHING,"Design Consultants Group, Inc.",,4158317180,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7180430226, -122.454531341)",81,10,1,24
Resident,5634013,645 PERALTA AV,TRUE,PL APPROVED,1/6/2017 0:00,2,1,2,1,,,,2015-001162PRJ,Convert an existing single family home into a 2 unit dwelling and new rear construction.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AHUISMAN,Jamie Pratt,Jamie Pratt,415-867-5357,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7424570014, -122.408581159)",83,9,2,2
Resident,5720051,166 PARK ST,FALSE,BP Filed,4/13/2017 0:00,2,1,0,0,,,,,,HORIZONTAL ADD.REAR ADDITION/REMODEL/CONVERT(E) LOWER FLOOR STORAGE(E)2 STORY BLDG INTO NEW RES'L DW,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7363554201, -122.421821849)",61,9,2,2
Mixres,3559001,2201 MARKET ST,TRUE,BP FILED,7/27/2016 0:00,9,9,2,2,,,,2014,"The proposed project is the demolition of an (existing) 2-story commercial building and the construction of a (new) 6-story, mixed-use commercial and 9-unit residential building. The proposed project would have a below-grade garage with 7 off-street park","ERECT A 6 STORIES, 9 DWELLING, BASEMENT, TYPE 1B NEW BUILDING.",2650,-1138,0,0,0,0,0,0,0,0,0,0,0,0,3788,2650,-1138,0,0,0,0,0,0,0,0,DVU,Chris Foley,Chris Foley,361-4803,7 - Central,8,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7653602593, -122.431194065)",38,3,5,5
Resident,5629029,61 PRENTISS ST,FALSE,BP Filed,11/22/2017 0:00,1,1,0,0,,,,,,"ERECT A SINGLE FAMILY DWELLING, ONE BASEMENT, 3 STORY. TYPE 5A BLDG",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7418734559, -122.411749283)",83,9,2,2
Vacant,4146005,930 FLORIDA ST,FALSE,PL Filed,3/30/2018 0:00,0,0,0,0,,,,2018-004519PRJ,Legalization of existing ground floor extension at the rear of a single family home. Second story vertical addition.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,4156379154,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7569609121, -122.410747866)",53,3,2,20
Mixres,3755054,349 08TH ST,FALSE,BP FILED,5/19/2017 0:00,38,38,6,6,BMR Ownership,,,2015-004085PRJ,Construct a new 5-story mixed-use residential building consisting of 38 residential units with associated private and common open space.,,1236,1236,0,0,0,0,0,0,0,0,0,0,0,0,0,1236,1236,0,0,0,0,0,0,0,0,KDURANDE,Riyad Ghannam,,415-649-6202,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7746832348, -122.409189205)",32,1,10,34
Resident,6529007A,2976 MISSION ST,FALSE,BP Filed,10/20/2017 0:00,8,0,0,0,,,,2017-013784PRJ,VERTICAL ADDITION. ONE (E) RESIDENTIAL UNIT IS RENOVATED & 7 NEW RESIDENTIAL UNITS ARE ADDED. CREATING A 6 STORY BUILDING ON GROUND. TYPE OF CONSTRUCITON FROM V-B TO II-A / III-A.,VERTICAL ADDITION. ONE (E) RESIDENTIAL UNIT IS RENOVATED & 7 NEW RESIDENTIAL UNITS ARE ADDED. CREATING A 6 STORY BUILDING ON GROUND. TYPE OF CONSTRUCITON FROM V-B TO II-A / III-A.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,,,4155371125,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7493228391, -122.418509436)",53,3,2,20
Resident,1560005,519 17TH AV,FALSE,BP Filed,9/26/2017 0:00,2,1,0,0,,,,,,ADD A (N) ACCESSORY DWELLING UNIT AT THE REAR PORTION OF THE GROUND FLOOR PER ORD 162-16.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7781199887, -122.47632334)",5,8,4,29
Resident,2609066,100 ALPINE TER,TRUE,BP ISSUED,7/5/2017 0:00,1,1,0,0,,,,2014-002093PRJ,New construction of a single family dwelling on an existing lot containing only a 3 stall garage used as storage.,VERTICAL ADDITION. ADD 2-STORY TO EXISTING GARAGE CREATE NEW SINGLE FAMILY DWELLING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DWASHING,Roma Design Group,,415-616-9900,6 - Buena Vista,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7688995352, -122.437764146)",112,7,5,5
Resident,4969019,1054 JAMESTOWN AV,FALSE,BP Filed,9/21/2017 0:00,3,1,0,0,,,,,,"ADD ADU PER ORDINANCE NO. 162-16. ADD (1) KITCHEN, (1) GREAT ROOM, (2) BATHS & (2) BEDROOMS AND COMP",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7193015625, -122.394488778)",88,2,9,1
Resident,1407009,345 26TH AV,FALSE,BP Filed,5/25/2017 0:00,4,2,0,0,,,,,,ADD UNIT PER ORDINANCE NO.162-16. INSTALL (1) NEW GROUND FLOOR DWELLING UNIT . REFRENCE LEGALIZATION,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7829034012, -122.486341857)",8,8,4,29
Resident,5334063,2144 REVERE AV,FALSE,BP Filed,1/3/2018 0:00,1,1,0,0,,,,,,ERECT A THREE STORY TYPE VB CONSTRUCTION SINGLE FAMILY DWELLING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7376765268, -122.400220756)",87,2,9,1
Mixres,6571001,1515 SOUTH VAN NESS AV,TRUE,BP FILED,7/25/2017 0:00,157,157,19,19,On-site BMR Project,90% AMI;,Rental,2014,"Demolition of existing commercial building and construction of a 160 unit rental apartment home community with 1,440 sf retail within a building measuring 65' along S. Van Ness and stepping down to 55' along Shotwell Street. Lennar intends to accommodat",,5241,-58119,0,0,0,0,0,0,0,0,-31680,0,0,-31680,0,5241,5241,0,0,0,0,0,0,0,0,DVU,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7490274545, -122.414995088)",53,3,2,20
Resident,4224038,1000 MISSISSIPPI ST,TRUE,BP ISSUED,4/22/2016 0:00,28,28,0,0,On-site BMR Project,,Ownership,2008,"Construct 28 dwelling units and 28 parking spaces in an underground garage on a vacant lot. The building would be approximately 57,974 sq. ft. and approxomately 40 feet in height.","ERECT 4 STORIES, 28 UNITS, 3 BASEMENTS, RESIDENTIAL CONDOMINIUM BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJACKSON,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7534626221, -122.394373515)",54,2,9,26
Resident,643010,1650 CALIFORNIA ST,FALSE,BP Filed,10/6/2017 0:00,28,0,0,0,,,,2017-013669PRJ,Addition of four new accessory dwelling units to an existing 24-unit building.,ADD (4) (N) ADUs @ BASEMENT PER ORD #162-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DGANETSO,Thousand Architects,,4154972300,3 - Northeast,3,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7907779308, -122.421551082)",105,4,3,21
Resident,2324003,2251 25TH AV,FALSE,BP Filed,3/20/2018 0:00,2,1,0,0,,,,,,COMPLY NOV 201839771. LEGALIZE UNIT PER ORD 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7455174955, -122.482641544)",40,10,7,35
Resident,7103055,452 PLYMOUTH AV,FALSE,BP Filed,1/30/2018 0:00,3,1,0,0,,,,,,ADD A NEW UNIT WITH 3 BEDROOMS & 2 BATH AT 1ST FLR AREA TO COMPLY WITH ORDINANCE 162-16. 3 BEDROOMS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7148080618, -122.455834863)",81,10,1,24
Mixres,3730290,280 07TH ST,FALSE,PL FILED,8/18/2016 0:00,17,17,2,2,,,,2016-004946PRJ,"Demolition of existing vacant two story nightclub and construction of a new six-story, mixed use residential buildings. The building shall consist of five residential levels, with a ground level commercial space above a basement garage. See attached proj",,6043,-207,0,0,0,0,0,0,0,0,0,0,4259,4259,6250,1784,-4466,0,0,0,0,0,0,0,0,,Workshop1,,4154099267,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7768950535, -122.408367063)",32,1,10,34
Resident,2171054,3721 QUINTARA ST,FALSE,BP Filed,1/19/2018 0:00,2,1,0,0,,,,,,"ADDITION OF NEW ADU UNIT PER ORD#95-17. NEW BATHROOM, BEDROOM LIVING ROOM, AND KITCHEN AT NEW FIRST",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.747101227, -122.50544791)",39,10,7,35
Mixres,318020,651 GEARY ST,FALSE,BP FILED,6/21/2017 0:00,52,52,6,6,90% AMI;,,,2013,"Demolish an existing 2-story vacant office building, and construct a new 13-story residential building with 1,100 sq.ft. retail space at ground floor.",,5945,-8010,0,0,0,0,0,0,0,0,-13955,0,0,0,0,5945,5945,0,0,0,0,0,0,0,0,TCHAN,Career Re,Structura,650-588-4,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.786344151, -122.413955468)",20,5,10,36
Vacant,163013,1020-1028 KEARNY ST,FALSE,PL Filed,6/7/2017 0:00,0,0,0,0,,,,2017-000282PRJ,"The project sponsor proposes converting the building from office use to group housing. In addition to the 24 group housing rooms proposed, 1,575 sf of open space would be provided through two outdoor courtyards and a roof deck. The project would include",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ETUFFY,"Starcity Properties, LLC",,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.797444497, -122.40515166)",106,6,3,23
Resident,1037042,3715 CALIFORNIA ST,FALSE,BP Filed,1/25/2017 0:00,15,3,0,0,,,,2017-001956PRJ,"ADU AT GROUND FLOOR ONLY. ADD 3 (N) UNITS TO (E) BLGD PER ORDINANCE NO. 162-16.EACH UNIT HAS 1 BEDROOM,1 BATHROOM, 1 KITCHEN. N/A FOR MAHER. ADD UNIT PER ORDINANCE NO. 155-13.","ADU AT GROUND FLOOR ONLY. ADD 3 (N) UNITS TO (E) BLGD PER ORDINANCE NO. 162-16.EACH UNIT HAS 1 BEDROOM,1 BATHROOM, 1 KITCHEN. N/A FOR MAHER. ADD UNIT PER ORDINANCE NO. 155-13.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GPANTOJA,,3715 CALIFORNIA ST LLC,,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7859601831, -122.455116723)",11,8,6,31
Resident,3505020,42 OTIS ST,FALSE,BP FILED,3/30/2017 0:00,25,25,3,3,,,,2016-005406PRJ,"Construction of a five-story, mixed-use building to include a total of 24 single-room occupancy units on four floors with ground level retail space.","TO ERECT 5 STORIES, 24 UNITS WITH COMMERCIAL ON 1ST FLOOR . MIX USE WITH TYPE 5 CONSTRUCTIOM.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,Elevation Architects,,4155371125,8 - Mission,6,The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7726520461, -122.419632436)",32,1,10,20
Resident,1778022,1838 JUDAH ST,FALSE,BP Filed,2/1/2018 0:00,2,1,0,0,,,,,,"IN 1ST FLR: ADD A NEW DWELLING UNIT WITH ONE BDRM, TWO FULL BATHS.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7617265143, -122.482006672)",39,10,7,35
Vacant,2880021,40 Dorantes Avenue,TRUE,PL Approved,9/20/2017 0:00,0,1,0,0,,,,2017-010242PRJ,New construction of a single-family residence on a vacant lot. Three floors above a garage.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,MAK Studio,Michael Kao,415-305-8419,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7462106865, -122.463069153)",45,10,8,41
Resident,3751031,2060 Folsom Street,TRUE,BP ISSUED,11/8/2017 0:00,127,127,127,127,,,,2016-011542PRJ,"Large Project Authorization: Project will include (127) affordable units. (22) ""Tay"" transitional aged youth studios, (22) ""Tay"" transitional aged youth 1BR, (8) affordable family 1BR, (55) affordable family 2BR, (35) affordable family 3BR. Ground floo","MOHCD PROJECT ERECT 9 STORIES, NO BASEMENT, TYPE 1-B OF 127 DWELLING UNITS RESIDENTIAL, RETAIL, OFFICE & CHILDCARE, MIX USE (R-2, B, E, A-3). Site plan only",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7642712647, -122.415742571)",53,3,2,20
Resident,6247042,198 LELAND AV,FALSE,BP Filed,10/27/2017 0:00,4,4,0,0,,,,,,"ERECT A 1 BUILDING TYPE 5, 3 STORIES 4 DWELLINGS UNITS AND COMMERCIAL BLDG",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,10,Schlage Lock,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7126669451, -122.407113794)",75,9,9,40
Resident,7143007,5850 MISSION ST,FALSE,BP Filed,4/19/2017 0:00,3,1,0,0,,,,,,"ADU. LEGALIZE ONE BEDROOM UNIT, PROPOSED NEW METER FOR GAS, NEW FURNACE, NEW APPITIONAL ELECTRIC MET",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7092307647, -122.45224495)",66,9,1,28
Resident,828014,668 OAK ST,FALSE,BP Filed,4/19/2017 0:00,4,4,0,0,,,,,,ERECT TYPE 5A FOUR STORY FOUR UNIT CONDO BUILDING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7743143316, -122.430377941)",26,4,11,9
Resident,2370068,2362 42ND AV,FALSE,BP Filed,1/24/2018 0:00,2,1,0,0,,,,,,"LEGALIZATION OF ONE IN-LAW GROUND LEVEL (ONE BEDROOM, ONE BATHROOM) TO COMPLY WITH VIOLATION#2017160",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7426722241, -122.500053551)",39,10,7,35
Mixres,3504030,1699 MARKET ST,TRUE,CONSTRUCTION,4/12/2018 0:00,160,160,0,0,Fee Payment,,,2014,"The proposed project would demolish an existing 60 year old 1 & 2 story industrial/commercial building and surface parking lot and construct a new 9-story residential (162 units) and commercial (3,937 sf) building with 97 below-grade parking spaces.","TO ERECT 9 STORIES, 1 BASEMENT, TYPE IB, 160 RESIDENTIAL, COMMERCIAL & BELOW GRADE PARKING BUILDING.",7293,-37047,0,3937,-18233,0,0,0,0,0,0,0,0,0,22170,3356,-18814,0,0,0,0,0,0,0,0,DVU,,,,8 - Mission,6,The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7723347315, -122.421943491)",32,1,10,20
Resident,4282A013,1453 RHODE ISLAND ST,FALSE,BP Filed,6/20/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF DWELLING UNIT INSTALLED W/O PERMIT ON GRD FLR UNDER ORD 43-14. ALL INTERIOR GRD FLR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7512968077, -122.400965725)",54,2,9,26
Resident,2697028,245 DIAMOND ST,TRUE,BP ISSUED,1/18/2018 0:00,3,1,0,0,,,,,,PER UNIT LEGALIZATION ORDINANCE 43-14.UNIT LEGALIZATION @ 1ST FL. ADD KITCHEN WITHIN THE EXSITING LI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7584550531, -122.436720258)",115,3,5,5
Resident,2314030A,2214 36TH AV,FALSE,BP Filed,5/30/2017 0:00,2,1,0,0,,,,,,"PER UNIT LEGALIZATION ORDINANCE 43-14. AT 1/F THE (E) BED RM, BATH RM. LAUNDRY AREA AND STORAGE RM @",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7456418315, -122.493881816)",40,10,7,35
Resident,5675001,180 CORTLAND AV,TRUE,BP ISSUED,1/10/2018 0:00,2,1,0,0,,,,,,DEVELOP NEW GROUND FLOOR UNIT TO RESTORE PREVIOUSLY REMOVED UPSTAIRS UNIT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7396204605, -122.419795273)",61,9,2,2
Resident,1067034,44 COOK ST,FALSE,BP Filed,3/30/2018 0:00,2,2,0,0,,,,,,"TO ERECT 4 STORIES, NO BASEMENT, TYPE V-B, 2 UNITS RESIDENTIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7830190629, -122.452061891)",11,8,6,31
Mixres,3701021,1270 MISSION ST,TRUE,BP APPROVED,2/7/2018 0:00,299,299,64,64,On-site BMR Project,55% AMI; 90% AMI;,Rental,2014,"The proposal includes the demolition of a one-story, 1,192 sq.ft. building currently being operated as a pizza shop and surface parking lot on the project site and construction of an approximately 120 foot tall, 13 story mixed-use building containing 199","ERECT 20 STORIES, TYPE I CONSTRUCTION, 299 DWELLING UNIT MIX USE RESIDENTAILA/COMMERCIAL.",2012,820,0,0,0,0,0,0,0,0,0,0,0,0,1192,2012,820,0,0,0,0,0,0,0,0,AA CONV,,,,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7768070779, -122.414522788)",32,5,10,34
Resident,149019,1616 TAYLOR ST,FALSE,BP Filed,3/13/2018 0:00,14,0,0,0,,,,2018-003610PRJ,(3) (N) DWELLING UNITS IN (E) 11-UNIT BUILDING. RECONFIGURE INTERIOR STAIRS. SPRINKLERS UNDER SEPARATE PERMIT,(3) (N) DWELLING UNITS IN (E) 11-UNIT BUILDING. RECONFIGURE INTERIOR STAIRS. SPRINKLERS UNDER SEPARATE PERMIT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SADINA,Gabriel Ng Architects Inc.,,4156828060,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7973839849, -122.413269543)",107,6,3,21
Mixres,855010,1740 MARKET ST,TRUE,BP FILED,10/21/2016 0:00,100,100,12,12,On-site BMR Project,90% AMI;,Rental,2014,"The proposed project is to demolish the existing 25,108 square foot commercial building and construct an 9-story, 85-foot tall mixed use building. The existing building on the 13, 642 square foot subject lot was constructed in 1940. The proposed new bu",TO ERECT 9 STORIES OF 100 DWELLING UNITS WITH ONE COMMERCIAL,4385,-20723,0,0,0,0,0,0,25108,0,-25108,0,0,0,0,4385,4385,0,0,0,0,0,0,0,0,TCHANG,,,,6 - Buena Vista,5,The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys; Lower Haight Public Realm Plan,Market & Octavia,2018,Q1,2018_Q1,"(37.7725441769, -122.42310203)",26,4,11,9
Vacant,310004,33 KEARNY ST,FALSE,BP Filed,1/19/2018 0:00,0,0,0,0,,,,,,CHANGE OF USE FROM RETAIL LTO RESTAURANT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,4 - Downtown,3,Downtown; Downtown Streetscape Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7882660037, -122.403864231)",19,6,3,8
Mixres,832025,300 OCTAVIA ST,TRUE,BP FILED,6/23/2016 0:00,12,12,1,1,,,,2014-002330PRJ,"The proposed project includes construction of two 5-story, approximately 55-foot-tall building with a combined 24 residential units over ground floor commercial uses with bicycle parking.",TO ERECT 12 DWELLING UNIT WITH 5 STORIES NEW BLDG(CONDO AND RETAIL),1606,1606,0,0,0,0,0,0,0,0,0,0,0,0,0,1606,1606,0,0,0,0,0,0,0,0,CGROB,,City County of San Francisco Office,554-5395,5 - Western Addition,5,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7750995495, -122.424039971)",22,4,11,9
Vacant,3618045,50 FAIR OAKS ST,FALSE,BP Filed,12/21/2017 0:00,0,0,0,0,,,,,,"TO ERECT 1 STORY, NO BASEMENT, TYPE V-B, GARAGE BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,8,Mission District Streetscape Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7558845838, -122.424671373)",52,3,5,20
Vacant,2648019,4230 18th Street,FALSE,PL Filed,7/20/2017 0:00,0,0,0,0,,,,2017-008334PRJ,Conditional Use Authorization to permit a change of use from Commercial/Retail to Tourist Hotel/Retail and demolition and construction of a new commercial building .,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,"Reuben, Junius & Rose, LLP",Daniel Frattin,415-567-9000,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7609777501, -122.436710417)",38,3,5,5
Resident,3281003,215 KENWOOD WY,FALSE,BP Filed,10/13/2017 0:00,2,1,0,0,,,,,,UNIT ADDITION UNDER ORDINANCE 162-17. INSTALL (N) KITCHEN @ DEN LOCATED AT BASEMENT LEVEL.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7279317169, -122.46320581)",68,10,8,41
Resident,6348013,743 LONDON ST,FALSE,BP Filed,4/21/2017 0:00,2,1,0,0,,,,,,"LEGALIZE DWELLING UNIT AT 1ST FLR PER ORDINANCE NO. 43-14. COMPLY WITH COMPLAINT #200564148, #201757",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.71746673, -122.438869832)",90,9,1,7
Resident,6742011,683 CHENERY ST,FALSE,BP Filed,2/15/2018 0:00,4,4,0,0,,,,,,(E) GROUND FL RESTAURANT FACING CHENERY ST. WILL BE REDEVELOPED AS A NEW RESTAURANT WITH A NEW KITCH,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,Glen Park,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7343428077, -122.433530578)",96,9,5,10
Mixres,331011,168 - 186 EDDY ST,TRUE,CONSTRUCTION,4/4/2018 0:00,113,113,113,113,,50% AMI;,Rental,2015-001077PRJ,Change of use from a parking lot to an 8 story mixed-use residential/retail development. 100% affordable housing project proposing 113 Units.,"ERECT 9 STORY, TYPE 1, ZERO BASEMENT, 113 DWELLING UNIT AND RETAIL BUILDING.",5297,5297,0,0,0,0,0,0,0,0,0,0,0,0,0,5297,5297,0,0,0,0,0,0,0,0,FOSTER N,,EDDY & TAYLOR ASSOCS LP,,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7846584584, -122.410695846)",20,5,10,36
Resident,1878002S,1574 33RD AV,TRUE,BP ISSUED,1/4/2018 0:00,2,1,0,0,,,,,,LEGALIZE AS-BUILT KITCHEN TO CREATE 2ND DWELLING UNIT (UNIT B) ON 1ST FLR PER PLAN PER ORDINANCE #43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7578126358, -122.491440516)",39,10,7,35
Resident,6616013,30 VALLEY ST,FALSE,BP Filed,2/2/2018 0:00,1,1,0,0,,,,,,"REMODEL OF THE (E) REAR STORAGE STRUCTURE, ADDITION OF 1 KITCHEN, 1 BATH.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,Mission District Streetscape Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7449692829, -122.423013726)",84,9,5,22
Vacant,3505033,1615 MARKET ST,FALSE,BP Filed,3/19/2018 0:00,0,0,0,0,,,,,,"ERECT 4 STORIES OFFICE, ASSEMBY TYPE B BLDG. 1 BASEMENT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,6,The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7737958607, -122.420278962)",32,1,10,20
Resident,2657022,31 HATTIE ST,FALSE,BP Filed,12/22/2017 0:00,2,0,0,0,,,,,,CONSTRUCT 2 (N) WOOD FRAMED UNITS ON TOP OF THE (E) FOUNDATIONS. THE FORMER HOME WAS DEMOLISHED UNDE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7612777677, -122.440785341)",115,7,5,5
Resident,6597028,667 SAN JOSE AV,FALSE,BP Filed,6/5/2017 0:00,3,1,0,0,,,,,,LEGALIZATION UNIT PER ORDINANCE 43-14. & TO COMPLY WITH NOTICE OF VIOLAION #2010-77532.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,8,Mission District Streetscape Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7447468005, -122.422068068)",83,9,5,2
Mixres,3732028,980 FOLSOM ST,FALSE,BP FILED,12/29/2014 0:00,34,34,4,4,,,,2013,"The proposal is to demolish the exiting 7,530 square-foot (sf), single-story auto repair building, and construct a new mixed-use building fronting on Folsom and Clemintina Streets. The proposed project would consist of approximately 36,494 sf containing","ERECT 8-STORY, 34 CONDO UNITS ABOVE PARKING & COMMERCIAL BUILDING.",765,-6765,0,0,0,0,0,0,0,0,0,0,0,-7530,0,765,765,0,0,0,0,0,0,0,0,CTOWNES,,,,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7790166305, -122.405364112)",32,1,10,34
Resident,4336002A,2830 BRYANT ST,FALSE,BP Filed,10/12/2017 0:00,3,1,0,0,,,,,,"CONSTRUCT (1) BEDROOM, (1) BATH ADU UNIT @ 1ST FLOOR PER ORD #162-16",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7490817533, -122.409095358)",53,3,2,20
Resident,1430042,230 04TH AV,FALSE,BP Filed,9/7/2017 0:00,3,1,0,0,,,,,,UNIT LEGALIZATION ORDINANCE 43-14. COMPLY WITH NOTICE OF VIOLATION #201757332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7843678024, -122.462046076)",5,8,4,11
Vacant,875011,20 STEINER ST,FALSE,PL Filed,8/23/2017 0:00,0,1,0,0,,,,2017-010846PRJ,Variance from the rear yard and open space requirements to permit the addition of an accessory dwelling unit (ADU).,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DGANETSO,architect mason kirby,,4158675357,6 - Buena Vista,8,Market and Octavia; Market Octavia Living Alleys; Lower Haight Public Realm Plan,Market & Octavia,2018,Q1,2018_Q1,"(37.7696753637, -122.431364279)",28,7,5,9
Vacant,4276018,2833 25TH ST,FALSE,BP Filed,12/14/2017 0:00,0,0,0,0,,,,,,"TO ERECT A 2-STORY WAREHOUSE & RETAIL, NO BASEMENT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7511103082, -122.406842453)",53,3,2,20
Mixres,3949001,901 16TH ST,TRUE,PL APPROVED,5/12/2016 0:00,395,395,42,42,On-site BMR Project; Fee Payment,,Rental,2011,"The proposed project will demolish metal warehouses and temporary office buildings; preserve and rehabilitate brick office building; lot line adjustment to create two lots, construct approximately 200 residential units in 4-story building on 17th Street;",,24468,-85032,0,0,0,0,0,0,0,0,-4500,0,0,-105000,0,24468,24468,0,0,0,0,0,0,0,0,WWIETGRE,Attn: Indrajit Obeysekere,Jay Murphy,415-833-1231,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7661247096, -122.395473062)",54,1,9,4
Resident,6973039,2340 SAN JOSE,FALSE,PL FILED,10/12/2017 0:00,121,121,0,121,,,,2017-012151PRJ,"Approximately 121 new units of affordable housing with associated common spaces, and approximately 12,000 s.f of ground floor commercial, community service spaces, and childcare to be constructed on an existing parking lot adjacent to the Balboa Park BAR",,7350,7350,0,0,0,0,0,0,0,3350,3350,0,0,0,0,4000,4000,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,Balboa Park,Balboa Park,2018,Q1,2018_Q1,"(37.7203382612, -122.44728108)",80,9,1,28
Vacant,738019,939 ELLIS ST,FALSE,PL Filed,1/11/2018 0:00,0,0,0,0,,,,2018-000813PRJ,Conditional Use Authorization application to permit a change of use to Health Services for Kaiser Permanente.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SVELLVE,Kaiser Foundation Health Plan,,5109871958,5 - Western Addition,5,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.783466224, -122.421778334)",100,4,11,39
Resident,1748011,126 HUGO ST,FALSE,BP Filed,11/30/2017 0:00,3,1,0,0,,,,,,"LEGALIZE AS BUILT UNIT (UNIT 126A) PER ODRINANCE 43-14 ON 1ST FLR W/ A BDRM, A FULL BATH, POWDER RM,",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7654907342, -122.459484245)",109,7,11,14
Resident,320011,750 OFARRELL ST,FALSE,BP Filed,12/21/2016 0:00,51,4,0,0,,,,2017-000612PRJ,SITE PERMIT TO ADD 4 NEW ACCESSORY DWELLING UNITS TO THE REAR PORTION OF THE BASEMENT PER ORDINANCE 162-16. ** MAHER: N/A **,"SITE PERMIT TO ADD 4 NEW ACCESSORY DWELLING UNITS TO THE REAR PORTION OF THE BASEMENT PER ORDINANCE 162-16.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SADINA,Open Scope Studios,,4159386480,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7855396777, -122.417252557)",20,5,10,36
Resident,1653026,3426 FULTON ST,FALSE,BP Filed,9/6/2017 0:00,3,1,0,0,,,,,,LEGALIZE (E) BASEMENT UNIT PER ORD 43-14. 950 SQ FT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7734863765, -122.468686778)",5,8,4,11
Resident,3596032,233 SAN CARLOS ST,FALSE,BP Filed,9/1/2017 0:00,2,2,0,0,,,,,,"TO ERECT TYPE 5, 4 STORY,2 FAMILY RESIDENCE, NO BASEMENT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7596362069, -122.419741502)",53,3,2,20
Resident,87060,462 FILBERT ST,FALSE,BP Filed,11/6/2017 0:00,3,1,0,0,,,,,,ADDITION OF DWELLING UNIT PER ORDINANCE #162-16. GROUND FL INTERIOR REMODEL OF UNCONDITIONED GARAGE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8019290337, -122.407251379)",18,6,3,23
Mixres,738018,830 EDDY ST,FALSE,BP FILED,12/28/2016 0:00,126,126,18,18,On-site BMR Project,55% AMI;,Rental,2015-009460PRJ,"The Project Site incorporates two parcels that were once part of a single development site and lot that was later subdivided. One parcel, located at 825 Van Ness Avenue, comprises an existing six story commercial building. The second parcel, located at","ERECT A 12 STORIES, 126 RESIDENTIAL UNITS, 2 BASEMENTS, TYPE 1A BUILDING.",0,0,0,0,0,0,0,0,29810,0,0,0,0,0,4940,0,0,0,0,0,0,0,0,0,0,VBYRD,Build Inc.,,4155517626,5 - Western Addition,5,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7830519011, -122.421646375)",100,4,11,39
Vacant,3582053,4068 18TH ST,TRUE,PL Approved,12/7/2017 0:00,0,0,0,0,,,,2017-005533PRJ,"Conditional Use Authorization to permit the intensification of a conditionally permitted restaurant use, brew station less than one third of the total floor area.",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,4085290958,7 - Central,8,,Market & Octavia,2018,Q1,2018_Q1,"(37.7611613208, -122.434230571)",38,3,5,5
Resident,7110A033,125 FARRAGUT AV,FALSE,BP Filed,12/1/2017 0:00,2,1,0,0,,,,,,COMPLY WITH COMPLAINT #20170771 AND #201709281. LEGALIZE DWELLING UNTI AT 1ST FL PER ORDINANCE #43-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7112566345, -122.451315147)",66,9,1,28
Resident,3597059,3569 19TH ST,FALSE,BP Filed,12/28/2017 0:00,4,2,0,0,,,,,,CHANGE OF OCCUPANCY FROM R-3 TO R-2. ADDITION OF (2) NEW UNITS ON FLOOR PER ORD 162-16. (2) BEDROOMS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,8,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7598238129, -122.422963366)",37,3,5,20
Retail/Ent,86012,1 TELEGRAPH HILL BL,TRUE,BP ISSUED,11/23/2016 0:00,0,0,0,0,,,,2016-006762PRJ,"(REAR BUILDING) TO ERECT 1 STORY, NO BASEMENT, LIMITED RESTAURANT.","(REAR BUILDING) TO ERECT 1 STORY, NO BASEMENT, LIMITED RESTAURANT.",135,-865,0,0,0,0,0,0,0,0,0,0,0,0,1000,135,-865,0,0,0,0,0,0,0,0,LAVALLEY,RECREATION AND PARK DEPARTMENT DEPA,RECREATION AND PARK DEPARTMENT,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8022717632, -122.405868305)",18,6,3,23
Resident,1575031,4139 ANZA ST,FALSE,BP Filed,9/22/2017 0:00,3,1,0,0,,,,,,LEGALIZE 1ST FLOOR DWELLING UNIT FROM (E) FAMILY ROOM AS PER ORD #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7775428486, -122.492785032)",8,8,4,29
Resident,3537059,20 BELCHER ST,FALSE,BP Filed,7/27/2017 0:00,4,3,0,0,,,,,,FRONT BLDG: ADDITIONS & ALTERATIONS TO AN (E) SINGLE FAMILY HOME (@ THE FRONT) TO CREATE A LARGER ST,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,8,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7689269998, -122.430524424)",28,7,5,5
Resident,2303001B,2209 46TH AV,FALSE,BP Filed,12/1/2017 0:00,2,1,0,0,,,,,,"COMPLY WITH COMPLAINT #201775111,#201703416 AND #201707011. LEGALIZE DWELLING UNIT AT 1ST FL PER ODI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7452133567, -122.505149462)",39,10,7,35
Resident,2350001C,1027 SANTIAGO ST,TRUE,BP ISSUED,3/21/2018 0:00,2,1,0,0,,,,,,LEGALIZE (E) UNIT INSTALLED WITHOUT PERMITS. INSTALL (N) WINDOW. UPGRADE RATING FOR WALLS & A DOOR.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7445999421, -122.478442684)",40,10,7,35
Resident,1742014,1275-1281 08TH AVE,FALSE,BP Filed,7/13/2017 0:00,28,0,0,0,,,,2017-009493PRJ,ADDITION OF FOUR NEW ACCESSORY DWELLING UNITS.,"(N) DWELLING UNITS (ADU) PER ORDINANCE NO. 162-16. LEGALIZE 9E) FOUR UNITS AT (E) 1ST FLR/GARAGE. UNITS INCLUDE KITCHEN, BATHROOM, LIVING & BEDROOM.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ESAMONSK,Xie Associates,,4156523047,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7645614468, -122.465599809)",109,10,11,14
Mixres,3552012,1990 FOLSOM ST,FALSE,PL FILED,3/9/2017 0:00,143,143,143,143,,,,2016-015092PRJ,"The proposed project is a new eight-story mixed-use building. The first floor will replace and exceed existing
PDR use with proposed PDR space dedicated to the arts. In addition, the ground floor will contain childcare use
as well as community space and",,13893,5046,0,0,0,0,0,0,0,1405,1405,8847,12488,3641,0,0,0,0,0,0,0,0,0,0,0,,MEDA,,415-282-3320,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.76555237, -122.415898803)",53,3,2,20
Mixres,3703079,1036 - 1040 MISSION ST,TRUE,CONSTRUCTION,2/28/2018 0:00,83,83,83,83,,20% AMI; 30% AMI; 50% AMI;,Rental,2014,"A 9 story mid-rise residential building, housing 83 afforable units ranging from studios (junior one-bedrooms to three bedroom flats. The project also includes common rooms, management offices, laundry, lobby, circulation & supportive service spaces desi","TO ERECT 9 STORIES, NO BASEMENT, 83 RESIDENTIAL APARTMENTS, RESIDENTIAL SUPPORT SPACES & RETAIL SPACES.",963,963,0,0,0,0,0,0,0,0,0,0,0,0,0,963,963,0,0,0,0,0,0,0,0,KCONNER,Nick Griffin,Nick Griffin,415.776.2151,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7805850094, -122.409785547)",32,5,10,34
Resident,2701024A,50 SEWARD ST,FALSE,BP Filed,4/19/2017 0:00,2,1,0,0,,,,,,"RENOVATION & ADDITION TO SFD. ADDITION OF 2ND RESIDENTIAL UNIT. NEW 4TH FLOOR ADDITION, NEW 3 STORY",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7583015646, -122.440042928)",115,3,5,38
Resident,2038A026,1730 12TH AV,TRUE,BP ISSUED,3/20/2018 0:00,2,1,0,0,,,,,,ADDITION OF DWELLING UNIT PER ORDINANCE 162-16. REMOVE INTERNAL STAIRS & BUILD KITCHEN AT 1ST FLR. S,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7558354246, -122.468632035)",44,10,8,14
Vacant,5354048,9 APOLLO ST,FALSE,PL Filed,8/31/2017 0:00,0,-1,0,0,,,,2017-011214PRJ,Conditional Use Authorization to permit the removal of a dwelling unit in an existing 2-unit home.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,4158103703,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7324235068, -122.396947178)",87,2,9,1
Resident,5330030,1983 PALOU AV,FALSE,BP Filed,3/6/2018 0:00,2,1,0,0,,,,,,COMPLY WITH COMPLAINT #201831281. UNIT LEGALIZATION ORDINANCE 43-14. LEGALIZATION OF UNIT INSTALLED,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.737823351, -122.398228075)",87,2,9,1
Resident,1876001B,1523 30TH AV,TRUE,BP ISSUED,4/12/2018 0:00,2,1,0,0,,,,,,LEGALIZE A SECOND DWELLING UNIT ON THE 1ST FLR OF AN (E) SINGLE FAMILY DWELLING PER UNIT LEGALIZATIO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7588166911, -122.488942396)",39,10,7,35
Resident,7274032,323 COUNTRY CLUB DR,FALSE,BP Filed,8/14/2017 0:00,2,1,0,0,,,,,,"LEGALIZE 1 DWELLING UNIT AS PER ORDINANCE 43-14 INCLUDING (2) BEDROOMS, 1 FULL BATH, LIVING, DINING",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7327105899, -122.495663133)",43,10,8,35
Mixres,766010,555 GOLDEN GATE AV,FALSE,PL FILED,10/1/2014 0:00,60,60,7,7,,,,2014,"The proposed project is to demolish the existing two-story commercial building on a through lot with frontages on Golden Gate Avenue and Redwood Alley and construct a 10-story, 121-foot tall mixed-use building. The existing building on the 8,000 square",,1000,-7000,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,-7000,0,-8000,0,0,0,0,0,0,MWOODS,Sean Sullivan,Nick Cranmer,415-501-0931,4 - Downtown,6,Civic Center; Van Ness Corridor; Civic Center Public Realm Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7808756412, -122.419596942)",21,4,10,36
Resident,4224022,1058 MISSISSIPPI ST,FALSE,BP FILED,12/31/2015 0:00,2,2,0,0,,,,2016-000814PRJ,TO ERECT 3 STORIES OF 3 FAMILY DWELLING.,TO ERECT 3 STORIES OF 3 FAMILY DWELLING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SAMONSKY,REDLAND GROUP INC,REDLAND GROUP INC,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7530033594, -122.393981996)",54,2,9,26
Vacant,3775096,421 BRYANT ST,FALSE,BP Filed,8/28/2017 0:00,0,0,0,0,,,,,,"CHANGE OF OCCUPANCY FROM WAREHOUSE TO OFFICE, NO CONSTRUCTION UNDER THIS PERMIT. ALL WORK PERFORMED",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7824940728, -122.393955231)",31,1,10,8
Mixres,6529002,2918 MISSION ST,FALSE,BP FILED,12/28/2016 0:00,75,75,7,7,,,,2014,Project involves the demolition of the existing retail building and surface parking lot and the construction of a new residential/retail building. The proposed building is 64' and six stories high. Approximately 18 parking spaces plus car share space. 1,"ERECT A 8 STORIES, 75 RESIDENTIAL UNITS, TYPE 1B MIXED USE BUILDING. BUILDING IN BLOCK 6529, LOT 002, 002A & 003. MAHER EXTENION IS NOT APPLIED.",4180,4180,0,0,0,0,0,0,0,0,0,0,0,0,0,4180,4180,0,0,0,0,0,0,0,0,SMENDRIN,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7503125814, -122.418539124)",53,3,2,20
Vacant,3561009,258 NOE ST,FALSE,PL Filed,2/8/2018 0:00,0,0,0,0,,,,2018-002060PRJ,Conditional Use Authorization to permit the change of use from nail salon to adult (recreational) cannabis and legalization of existing short term residential hotel.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,Quickdraw Permit Consulting,,4159999050,6 - Buena Vista,8,,Market & Octavia,2018,Q1,2018_Q1,"(37.7648327678, -122.433473877)",28,7,5,5
Resident,1662045,754 20TH AV,FALSE,BP Filed,10/3/2017 0:00,3,1,0,0,,,,,,"AT 1ST FL, LEGALIZE NON-PERMIT ROOMS TO HAVE A BEDROOM, LIVING/DINING AREA, KITCHEN AND FULL BATHROO",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7736611636, -122.478565813)",8,8,4,29
Vacant,227013,650 SACRAMENTO ST,FALSE,PL Filed,12/5/2017 0:00,19,19,0,0,,,,2017-009472PRJ,The proposed project is adaptive re-use conversion of existing 3-story +basement office building to 4-story group housing.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,"Reuben, Junius & Rose LLP",,4155679000,3 - Northeast,3,Downtown Streetscape Plan; Chinatown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7938136026, -122.403851585)",104,6,3,6
Vacant,3580001,500 CHURCH ST,TRUE,PL Approved,12/4/2017 0:00,0,0,0,0,,,,2017-009207PRJ,Request Conditional Use Authorization for change of use from Laundromat to Restaurant. .,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ESAMONSK,,,6503531269,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7626955684, -122.428726837)",37,3,5,5
Resident,1562006A,531 19TH AV,FALSE,BP Filed,3/22/2018 0:00,2,1,0,0,,,,,,RENOVATE (E) GROUND FL BEDROOM. ENLARGE CONDITIONED SPACE TO HAVE 2 NEW BED & RENOVATE (E) BATH. 1ST,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7778170487, -122.478446983)",8,8,4,29
Resident,717016,851 OFARRELL ST,FALSE,BP Filed,9/2/2016 0:00,32,5,0,0,,,,2016-012404PRJ,"5 NEW RESIDENTIAL DWELLING UNITS IN GRD FLR OF EXISTING RESIDENTIAL BLDG. WORK INCL NEW PARTITIONS, WINDOWS, FIRE SPRINKLER, ELECTRICAL, MECH, PLUMBING & UPGRADE (E) STAIR TO CURRENT CODE. MAHER N/A","5 NEW RESIDENTIAL DWELLING UNITS IN GRD FLR OF EXISTING RESIDENTIAL BLDG. WORK INCL NEW PARTITIONS, WINDOWS, FIRE SPRINKLER, ELECTRICAL, MECH, PLUMBING & UPGRADE (E) STAIR TO CURRENT CODE. MAHER N/A",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SADINA,,OFARRELL ASSOCIATES LLC,,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7848139153, -122.418677292)",20,5,10,36
Resident,6086010B,456 LISBON ST,FALSE,BP Filed,7/25/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZAITON ORD 43-14. LEGALIZATION OF EXISTING UNIT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7211971663, -122.434557754)",90,9,1,7
Resident,6700032,2476 DIAMOND ST,FALSE,BP Filed,1/23/2018 0:00,1,1,0,0,,,,,,"ERECT A 3 STORIES, NO BASEMENT, TYPE V-B, ONE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7385590194, -122.435083549)",96,9,5,10
Resident,7069030,247 MONTANA ST,FALSE,BP FILED,11/6/2015 0:00,2,1,0,0,,,,,,LEGALIZE SECOND UNIT AS PER SF ORDINANCE 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,YEUNGMIN,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7163421062, -122.460793545)",81,10,1,24
Vacant,4059008,2250 03RD ST,FALSE,PL FILED,11/12/2014 0:00,8,8,0,0,,,,2014-001299PRJ,Demolition of an existing two (2) story wood-frame Live/Work building. New construction of a seven (7) story nine (9) residential unit building with ground floor commercial space and no automobile parking.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,LG-C LAND LLC,,,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.761068541, -122.388931865)",55,2,9,26
Resident,1660044,1633 CABRILLO ST,FALSE,BP Filed,7/20/2017 0:00,2,2,0,0,,,,,,CONSTRUCT (2) (N) MULTI-FAMILY RESIDENTIAL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7745527897, -122.476357237)",5,8,4,29
Resident,829015,522 OAK ST,FALSE,BP Filed,2/13/2018 0:00,2,1,0,0,,,,,,LEGALIZATION OF EXTG DWELLING UNIT TO COMPLY WITH NOV #201708871 (EID) AND 201798238(BID) PER ORD# 4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7744546427, -122.428665887)",22,4,11,9
Resident,3620088,835 SANCHEZ ST,FALSE,BP Filed,5/1/2017 0:00,1,1,0,0,,,,,,"TO ERECT 3-STORY, TYPE V, 1 BASEMENT SINGLE FAMILY DWELLING",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7559379914, -122.429795387)",52,3,5,22
Resident,2354003,2363 25TH AV,FALSE,BP Filed,12/8/2017 0:00,2,1,0,0,,,,,,"THE RENOVATION AND EXPANSION OF AN (E) SINGLE FAMILY HOUSE INCLUDING HORIZONTAL EXTENSIONS, (2) ADDI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.743446367, -122.482497618)",40,10,7,35
Resident,824007,1179 HAYES ST,FALSE,BP Filed,2/20/2018 0:00,8,0,0,0,,,,2018-002677PRJ,"ADD 1 UNIT @ GROUND FLR PERMIT ORD #162-16, WITH 1 BEDROOM & 1 BATH. **MANER N/A**","ADD 1 UNIT @ GROUND FLR PERMIT ORD #162-16, WITH 1 BEDROOM & 1 BATH. **MANER N/A**",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSALGADO,,1179 HAYES STREET LLC,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7750272558, -122.435722823)",23,4,11,9
Mixres,350002,1028 MARKET ST,TRUE,PL APPROVED,1/26/2017 0:00,186,186,0,0,,,,2014,"The property is currently improved by a vacant two-story structure. The project would demolish the existing 2-story commercial building and construct a 13-story mixed use building with 12 floors of residential use above ground floor retail, as well as t",,9657,-23653,0,0,0,0,0,0,0,0,0,0,0,0,33310,9657,-23653,0,0,0,0,0,0,0,0,DDWYER,Sally Maxwell,Sally Maxwell,883-0133,4 - Downtown,6,Downtown; Civic Center Public Realm Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7818834819, -122.411323335)",20,5,10,36
Resident,2747005C,3533 MARKET ST,FALSE,BP Filed,3/22/2018 0:00,3,1,0,0,,,,,,"PROPOSE (1) LIVING RM, (1) STORAGE & (1) BATHROOM ON 1ST FLR TO APPLY FOR ADU PER ORDINANCE 162-16 A",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7566743828, -122.441277167)",115,3,5,38
Mixres,4222A001,HOPE SF POTRERO,TRUE,PL APPROVED,10/11/2016 0:00,1528,909,1004,385,,50% AMI; 60% AMI;,Rental,2010,"Replace 606 units of public housing with 1,400-1,700 units of mixed-income, mixed-tenure housing, including 1-to1 replacement of public housing. Project will also include neighborhood serving retail, community facilities, parks and open space, and a new",,30000,30000,0,0,0,0,0,0,0,10000,10000,0,0,0,0,20000,20000,0,0,0,0,0,0,0,0,MSNYDER,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7538866219, -122.396692997)",54,2,9,26
Resident,5255012,1408 HUDSON AV,FALSE,BP Filed,12/12/2017 0:00,2,1,0,0,,,,,,"TO COMPLY WITH NOV #201703838 & #200345456. ORDINANCE 43-14. LEGALIZE EXISTING 1ST FL IN-LAW, SMALL",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7382472042, -122.38456565)",86,2,9,1
Resident,2433025,3123 ULLOA ST,FALSE,BP Filed,4/7/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION ORDINANCE 43-14. LEGALIZATION OF UNIT INSTALLED WITHOUT PERMIT. LEGALIZE KITCHEN @,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7403354556, -122.489954897)",40,10,7,35
Mixres,3554005,1950 MISSION ST,TRUE,BP ISSUED,2/16/2018 0:00,157,157,157,157,,60% AMI;,Rental,2016-001514PRJ,"Approved Priority Processing for 100% Affordable Housing project:
Demolish 11 modular wood framed buildings at 1950 Mission Street
Construct 2 buildings (a 5 story and 9 story) with 157 units of affordable housing including studio, Junior 1 bedroom, 1 b","MOD. ERECT A TYPE 1A, 9 STORIES 157 RESIDENTIAL UNIT BUILDING.",13725,13725,0,0,0,0,0,0,0,2368,2368,0,0,0,0,11357,11357,0,0,0,0,0,0,0,0,VBYRD,BRIDGE Housing,,4159891111,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7658462464, -122.420207775)",53,3,2,20
Resident,7163019,3180 SAN JOSE AV,FALSE,BP Filed,7/7/2017 0:00,2,1,0,0,,,,,,TO COMPLY WITH NOV#201769591: CONVERT (E) GARAGE TO (N) HABITABLE LIVING SPACE (756SF). UNIT LEGALIZ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7087976462, -122.458852782)",66,10,1,28
Resident,4266028,1223 YORK ST,FALSE,BP Filed,11/28/2017 0:00,3,1,0,0,,,,,,LEGALIZATION OF IN-LAW PER ORD 43-14. FIRE SPRINKLER WILL BE UNDER SEPERATE PERMIT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7521016255, -122.407839888)",53,3,2,20
Vacant,149009,906 BROADWAY,FALSE,PL Filed,3/14/2018 0:00,0,0,0,0,,,,2018-003593PRJ,"Change of Use of a vacant 15,012 square foot church into a location for adult education and a community facility.",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CASBAGH,"Reuben, Junius and Rose, LLP",,4155679000,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7974752337, -122.412375049)",107,6,3,21
Vacant,3525056,1190 BRYANT ST,FALSE,BP Filed,5/23/2017 0:00,0,0,0,0,,,,,,"CONDITIONAL USE PERMIT CHANGE FROM INDUSTRIAL (F-1) TO RETAIL. ADD EMPLOYEE AREA IN BACK, ADD RETAIL",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7706151227, -122.409801647)",32,1,10,34
Resident,3780001,502 07TH ST,TRUE,CONSTRUCTION,4/13/2018 0:00,16,16,0,0,,,,2014,New construction of 5-story residential building containing 16 residential units. Combination of private and common open space.,ERECT 5 STORIES OF 16 RES'D DWELLING UNIT.,0,-3870,0,0,0,0,0,0,0,0,0,3870,0,-3870,0,0,0,0,0,0,0,0,0,0,0,JDISALVO,,,,9 - South of Market,6,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7739938925, -122.404788074)",33,1,10,34
Resident,6577032,3767 CESAR CHAVEZ ST,FALSE,BP Filed,3/27/2018 0:00,1,1,0,0,,,,,,ADD ONE ACCESSORY DWELLING UNIT AT REAR CARPORT PER ORDINANCE NO 162-16.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,Mission District Streetscape Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7476443163, -122.423871068)",84,9,5,22
Resident,847013,622 HAIGHT ST,FALSE,BP Filed,8/25/2017 0:00,3,1,0,0,,,,,,"PER UNIT LEGLIZATION ORDINANCE 43-14, ADD FIRST FLOOR UNIT, RENOVATION; ADD MASTER BEDROOM, ADD BEDR",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,5,Lower Haight Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7720753238, -122.432947172)",26,4,11,3
Mixres,832026,300 OCTAVIA ST,TRUE,BP FILED,6/23/2016 0:00,12,12,2,2,,,,2014-002330PRJ,"The proposed project includes construction of two 5-story, approximately 55-foot-tall building with a combined 24 residential units over ground floor commercial uses with bicycle parking.",TO ERECT 12 DWELLING UNITS WITH 5 STORIES NEW BLDG(CONDO AND RETAIL),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CGROB,,City County of San Francisco Office,554-5395,5 - Western Addition,5,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.775518466, -122.424124249)",22,4,11,9
Resident,951025,2637 UNION ST,FALSE,BP Filed,1/8/2018 0:00,2,1,0,0,,,,,,"INCREASE ENTRY LVL HEIGHT BY RAISING GROUND LVL WALL BY 1'-0""; CONVERT ENTRY LVL SUITE TO 2ND DWELLI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7958854344, -122.44270872)",14,4,6,13
Resident,6992030,524 RAMSELL ST,FALSE,BP Filed,6/1/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF UNAUTHORIZED DWELLING UNDER ORDINANCE 43-14 TO COMPLY WITH NOV #201621245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7202093636, -122.465983987)",64,10,1,24
Resident,5343036,1743 REVERE AV,FALSE,BP Filed,3/13/2018 0:00,3,1,0,0,,,,,,LEGALIZATION OF (E) UNIT W/ ONE BEDRM AND ONE BATH PER ORD# 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7329943899, -122.393039761)",87,2,9,1
Resident,6050025,529 BRUSSELS ST,FALSE,BP Filed,9/19/2017 0:00,2,1,0,0,,,,,,LEGALIZE DWELLING UNIT AT 1ST FL PER ORDINANCE 43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7256213095, -122.404635384)",91,2,2,25
Resident,3725068,475 MINNA ST,TRUE,PL APPROVED,12/10/2015 0:00,15,15,3,3,On-site BMR Project,90% AMI;,Ownership,2014,Construct a 9-story residential apartment building with 25% open space in rear yard.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TCHANG,Stanton Architecture,,4158659600,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7809225491, -122.407391965)",32,1,10,34
Resident,1917015,1698 27TH AV,TRUE,BP ISSUED,4/13/2018 0:00,2,1,0,0,,,,,,TO LEGALIZE (E) UNIT ON GROUND FLR PURSUANT TO BLDG CODE SEC 106A 3.13 & PLANNING CODE 207.3. THE UN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7558874126, -122.484900765)",39,10,7,35
Vacant,7089024,250 Randolph Street,FALSE,PL Filed,2/8/2018 0:00,0,0,0,0,,,,2017-013801PRJ,Demolition of an existing one story mixed use building. Then the construction of a new 4 story mixed use commercial and residential building. Consisting of ground floor commercial space and 3 stories of residential above.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,Weisbach Architecture & Design,Lev Weisbach,415-297-7165,13 - Ingleside,11,,19th Avenue,2018,Q1,2018_Q1,"(37.7144465475, -122.465111429)",65,10,1,24
Mixres,0346003A,101 HYDE ST,TRUE,BP FILED,6/27/2013 0:00,85,85,10,10,On-site BMR Project,,Rental,2012,The existing post office is scheduled for closure. The proposed development would demolish the existing one-story building (built in 1960) and rebuild ground floor retail with residential units above.,ERECT (N) 8-STORY MULTI-RESIDENTIAL & RETAIL BUILDING.,4923,4923,0,0,0,0,0,0,0,0,0,0,0,0,0,4923,4923,0,0,0,0,0,0,0,0,KCONNER,Albert Costa,Albert Costa,415.986.0101,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7818037368, -122.415896548)",20,5,10,36
Resident,3518020,241 10TH ST,TRUE,CONSTRUCTION,8/18/2017 0:00,28,28,3,3,BMR Ownership,,,2014,"The proposed project is to demolish the existing 10,189 square foot car-rental office building and construct a new 5-story, 55-foot tall, 32-dwelling unit, mixed-use building. The existing building on the subject 9,000 sf lot was constructed in 1921. T",ERECT 5 STORIES OF 28 DWELLING UNITS. MIX USE BUILDING.,0,-10189,0,0,0,0,0,0,0,0,0,10189,0,-10189,0,0,0,0,0,0,0,0,0,0,0,JBANALES,,,,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7736498622, -122.413437182)",32,1,10,34
Vacant,1834037,1401 19TH AV,FALSE,BP Filed,6/9/2017 0:00,0,0,0,0,,,,,,CONVERTING AUTO REPAIR SERVICE BAYS INTO A NEIGHBORHOOD SERVING CONVENIENCE STORE AND CAFE. CHANGE O,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7614344068, -122.477328814)",39,10,7,35
Resident,1576006A,679 33RD AV,FALSE,BP Filed,10/13/2017 0:00,3,1,0,0,,,,,,LEGALIZE DWELLING UNIT AT FIRST FLOOR PER ORDINANCE 43-14. COMPLY WITH COMPLAINT #201783951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7763107146, -122.493391477)",8,8,4,29
Resident,5704016,482 GATES ST,FALSE,BP Filed,11/1/2017 0:00,2,1,0,0,,,,,,ADU PER ORDINANCE NO# 162-16. 1 BEDROOM & 1 BATH.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7372343783, -122.414281623)",83,9,2,2
Resident,1187003A,647 MASONIC AV,FALSE,BP Filed,5/26/2017 0:00,3,1,0,0,,,,,,"ADDITION OF DWELLING UNIT PER ORD #162-16. ADD UNIT ON 1ST FL, ADD (2) EACH BEDROOMS, (1) EACH BATHR",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7750922156, -122.446663749)",24,7,11,18
Resident,670011,1238 SUTTER ST,TRUE,CONSTRUCTION,3/8/2018 0:00,37,37,4,4,On-site BMR Project,90% AMI;,Ownership,2013,"Demolition of existing building, retain facade & construct a new 9-story mixed-use commercial and residential building with 37 dwelling units and ground floor commercial space fronting Sutter and Fern Streets, all parking to be bicycle storage.",CONSTRUCT 9-STORY MIXED-USE W/ 2 COMMERCIAL GROUND FLOOR LEASE SPACES AND 8-STORY OF RESIDENTIAL W/ 37 UNITS ABOVE.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DLINDSAY,,,,4 - Downtown,3,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7879292451, -122.420823969)",50,4,3,21
Resident,6468010A,90 CONCORD ST,FALSE,BP Filed,9/25/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF AN UNWARRENDED DWELLING UNIT PER ORDINANCE# 43-14. 1 BEDROOM & 1 BATH.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7122072811, -122.442879921)",58,9,1,7
Resident,1649001A,707 06TH AV,FALSE,BP Filed,1/25/2018 0:00,3,1,0,0,,,,,,"REMOVE (E) GROUND FL, GARAGE, ADD NEW 2 BED, 2 BATH MARKET RATE APARTMENT, INCLUDING KITCHEN, LIVING",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7751436002, -122.464153084)",5,8,4,11
Resident,5524029,1604 TREAT AV,TRUE,BP APPROVED,4/11/2018 0:00,1,1,0,0,,,,,,CONVERT (E) STORAGE TO ADU PER ORD. NO 162-16.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7447199582, -122.41262131)",83,9,2,2
Resident,4624031,HUNTERS VIEW,TRUE,CONSTRUCTION,3/31/2017 0:00,107,107,106,106,,,Rental,2007,"The proposed project would demolish the 267 affordable housing units in 50 buildings and construct about 668 affordable units, 6,400 sq. ft. of retail, 739 parking spaces in 66 buildings. Buildings would range from two to five-stories 20 to 50 feet in he","TO ERECT 4 STORIES, 15 UNITS RESIDENTIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DSANCHEZ,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7351844733, -122.380629878)",86,2,9,1
Resident,1155001,945 SCOTT ST,FALSE,BP Filed,1/4/2018 0:00,2,2,0,0,,,,,,ERECT A FOUR STORY TYPE 5B CONSTRUCTION TWO FAMILY DWELLING UNIT BUILDING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7786744277, -122.436999164)",97,4,11,39
Vacant,3750003,350 02ND ST,FALSE,PL Filed,1/4/2018 0:00,0,0,0,0,,,,2018-000497PRJ,"The proposal consists of the construction of a new 130 foot tall, 14-story building with a 294 room, 157,062 sf
hotel; 4,120 sf of ground floor restaurant/bar and related back of house space; 2,770 sf of ground floor privately
owned public open space; an",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,"Reuben, Junius and Rose, LLP",,4155679000,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.784470242, -122.39609637)",32,1,10,8
Mixres,619012,1860 VAN NESS AV,TRUE,CONSTRUCTION,6/19/2017 0:00,35,35,0,0,Fee Payment,,,2004,"The proposed project is demolition of a gas station on a 8,960-gsf site at the corner of Van Ness Avenue and Washington Street and construction of a 8-story 58,065-gsf residential mixed-use structure with 35 dwelling units, and 35 parking spaces in two s","TO ERECT 8 STORIES, 35 DWELLING UNITS OF RESIDENTIAL & RETAIL STORE.",1625,1625,0,0,0,0,0,0,0,0,0,0,0,0,0,1625,1625,0,0,0,0,0,0,0,0,JKUGLER,Tuija Catalano,Tuija Catalano,567-9000,3 - Northeast,3,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7929112562, -122.422413834)",105,4,3,32
Resident,2749045A,4547 20TH ST,FALSE,BP Filed,11/21/2017 0:00,2,2,0,0,,,,,,"ERECT A TWO FAMILY DWELLING,TYPE 5A- 5 STORY RESIDENTIAL BLDG",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7572224675, -122.438704518)",115,3,5,5
Resident,1723039,1232 28TH AV,TRUE,BP APPROVED,3/29/2018 0:00,2,1,0,0,,,,,,"LEGALIZE PER ORDINANCE 43-14. (E) STUDIO APT @ GROUND FLR CONSISTING OF: KITCHEN, FULL BATH & LIVING",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7643184292, -122.486524133)",39,10,7,35
Resident,140007,88 Broadway,TRUE,BP FILED,11/15/2017 0:00,178,178,178,178,,,,2016-007850PRJ,"The proposed project is two-six story buildings containing affordable family and senior housing. First floor podium will provide ground floor units, commercial, commercial parking, bike parking, common space/social services for resident use, and property","ERECT A TYPE 1 CONST, 6 STORY 53 RESIDENTIAL DWELLING UNIT BUILDING. MAHER ORDINANCE COMPLY.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,Northeast Waterfront; Northeast Embarcadero Study,Port of San Francisco,2018,Q1,2018_Q1,"(37.7992601241, -122.39961795)",77,6,3,8
Resident,5475007A,1050 LE CONTE AV,FALSE,BP Filed,11/21/2017 0:00,4,3,0,0,,,,,,VERTICAL & HORIZONTAL ADDITION TO AN EXISTING 2 STORY SFD TO 4 STORY 4 UNITS APARTMENT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7191124169, -122.397701721)",88,2,9,1
Resident,4142001,900 POTRERO AVE,FALSE,BP Filed,2/22/2018 0:00,13,0,0,0,,,,2018-003530PRJ,Addition of five new accessory dwelling units to an existing 8-unit building.,ADD 5 UNITS: 2 ONE BEDROOM UNITS & 3 STUDIO UNITS. 1 KITCHEN AND 1 BATH FOR EACH UNIT. ADD UNITS PER ORDINANCE 162-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MBOUDREA,Hood Thomas Architects,,4155435005,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7575636968, -122.407029192)",53,3,2,20
Mixres,8715004,MISSION BAY BLOCK 1 (RESIDENTIAL) 03RD,TRUE,CONSTRUCTION,4/6/2018 0:00,198,198,0,0,,,,,,"TO ERECT 16 STORIES, NO BASEMENT, 198 RESIDENTIAL APARTMENT, OFFICE, RETAIL & PARKING BUILDING.
** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 REQUIRED **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Mission Bay,Mission Bay,2018,Q1,2018_Q1,"(37.7750508794, -122.390643394)",34,1,10,4
Resident,996050,3440 CLAY ST,FALSE,BP Filed,12/1/2017 0:00,3,1,0,0,,,,,,LEGALIZE (E) 4 BEDS APRTMENT UNDER ORDINACE 43-14. NO CHANGE TO BUILDING EXTERIOR. ADD 1 BIKE SPACE.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7890270039, -122.449642365)",10,8,6,31
Resident,1642010,639 02ND AV,FALSE,BP Filed,4/28/2017 0:00,2,1,0,0,,,,,,COMPLY WITH COMPLAINT#201635092 & 201652142. LEGALIZE DWELLING UNIT AT GROUND FLOOR. PER PLAN PER OR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7766526326, -122.459996124)",5,8,4,11
Mixres,342001,950 - 974 MARKET ST,TRUE,BP ISSUED,12/14/2017 0:00,242,242,0,0,Land Dedication,,,2013,"The proposed project is the demolition of five (5) existing structures and new construction of a mixed-use arts, education, residential, hotel, and retail complex, with approximately 198 below-grade parking spaces. The proposed project includes approxim","AT BLOCK 0342, LOT 001 & 014. ERECT 12-STORY, TYPE 1, 2 BASEMENT, 470 UNITS, CONDO, HOTEL, RETAIL BUILDING.",229000,169834,0,0,0,0,0,0,0,24000,24000,0,0,0,0,15000,-6321,0,0,0,190000,152155,0,232,232,MHUE,Michelle Lin,Michelle Lin,394-9018,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7831754338, -122.409568318)",20,5,10,36
Resident,5501038,113 PRECITA AV,FALSE,BP Filed,11/9/2017 0:00,3,1,0,0,,,,,,TO CONSTRUCT A (N) ONE BEDROOM APARTMENT IN THE BASEMENT OF AN (E) 2 UNIT BUILDGING.THE APARTMENT WI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,Mission District Streetscape Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7470214501, -122.418070612)",83,9,2,2
Resident,5696036,992 PERALTA AV,FALSE,BP FILED,7/11/2016 0:00,50,50,8,8,,,,2012,"Construct 5 story, 50 unit residential condominium building with 50 off street parking spaces.","CONSTRUCT (N) 5-STORY, 49 DWELLING UNIT RESIDENTIAL CONDOMINIUM",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RBRESSAN,CENTERSTO,C. STEVEN,415-550-6,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.73731595, -122.409400379)",83,9,2,2
Vacant,4153042,1025 HAMPSHIRE ST,FALSE,BP Filed,1/19/2016 0:00,0,0,0,0,,,,2017-008133PRJ,Dwelling Unit Merger - Conditional Use Authorization to permit the removal of an unauthorized unit in an existing 2-unit dwelling.,REMOVE KITCHEN & RESTORE OCCUPANCY.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MCHRISTE,,,4158771293,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7556580041, -122.407279925)",53,3,2,20
Resident,1414016,279 19TH AV,FALSE,BP Filed,4/11/2017 0:00,3,1,0,0,,,,,,"GROUND FL, ADD 1 DWELLING UNIT BEHIND GARAGE WITH 1 BEDROOM. COMBINED LIVING ROOM, KITCHEN AND FULL",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7827140287, -122.478802845)",8,8,4,29
Mixres,340002,19 - 25 MASON ST & 2 - 16 TURK ST,TRUE,PL APPROVED,3/4/2014 0:00,155,155,0,0,Fee Payment,,,2012,"Development of the two adjoining parking lots on either side of The Metropolis Hotel. The Metropolis will stay in place and continue as a hotel. The schematic design is to replace the existing surface parking lot with a residential development, including",,2825,2825,0,0,0,0,0,0,0,0,0,0,0,0,0,2825,2825,0,0,0,0,0,0,0,0,WWIETGRE,John Kevlin,John Kevlin,415.567.9000,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.783750097, -122.409494228)",20,5,10,36
Mixres,0337014A,469 EDDY ST,TRUE,PL APPROVED,5/12/2016 0:00,28,28,3,3,On-site BMR Project,90% AMI;,Ownership,2014,"Save the existing facade and build a new 8-story building with 29 residential units, 2,600 sf of ground floor retail, and 16 below-grade vehicle parking spaces.","VERTICAL ADDITION. HISTORIC RESTORATION OF (E) BLDG: CONSTRUCTION OF AN 8 STORY, 80 FT TALL, 47,100 SF MIXED USE RESIDENTIAL-COMMERCIAL BLDG. NEW BLDG WILL INCLUDE 28 UNITS OF DWELLING, APPROX 700 SF OF GROUND FLR COMMERICAL SPACE & PARKING GARAGE FOR 9",2600,-18085,0,0,0,0,0,0,0,0,0,0,0,-20685,0,2600,2600,0,0,0,0,0,0,0,0,SNGAN,Barbara Borgfeldt,Nick Cranmer,415-501-0931,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7833038671, -122.41531872)",20,5,10,36
Resident,2071009A,1887 34TH AV,FALSE,BP Filed,3/29/2018 0:00,2,1,0,0,,,,,,"ADD ONE ADU UNIT @ GROUND FLR PER ORD# 95-17. 1ST FLR (N) UNIT W/ 2 BEDRMS, ONE BATH AND ONE KITCHEN",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7519370462, -122.492679156)",39,10,7,35
Mixres,4884025,CANDLESTICK POINT,TRUE,PL APPROVED,4/10/2014 0:00,9108,9108,3345,2833,,,,2007,"Redevelopment plans, rezoning, projects, and infrastructure for 778-acre site encompassing BVHP Areas B, C, and Shipyard, for Candlestick Point, Hunters Point Shipyard, and India Basin Shoreline, including an estimated 9,000-du, 650,000-sf retail, 2,000,",,4040000,3801500,0,100000,100000,0,0,0,13500,2650000,2636500,225000,255000,30000,0,885000,885000,0,0,0,150000,150000,0,220,220,JNAVARRE,SF Redevelopment Agency,Nicole Franklin,,10 - South Bayshore,10,Candlestick Point; Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7193826411, -122.384934383)",88,2,9,1
Resident,7014024,200 FAXON AV,FALSE,BP Filed,3/29/2018 0:00,2,1,0,0,,,,,,"LEGALIZE DWELLING UNIT @ 1ST FLR TO COMPLY W/ ORD# 43-14. 2 BEDRMS, 2 BATHS, 1 LIVING RM AND 1 KITCH",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7183282075, -122.459958786)",64,10,1,24
Resident,150054,1000 - 1020 BROADWAY,TRUE,BP FILED,7/12/2016 0:00,1,1,0,0,,,,2006,"Proposed project would involve a three-lot subdivision and the new construction of three two-unit buildings, one on each newly subdivided lot. The buildings would total approximately 19,000 sq. ft., 10 parking spaces, and would be approximately 40 feet i",ERECT TWO STORY SINGLE FAMILY DWELLING W/ TWO BASEMENTS OVER RODIUM.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KCONNER,Steve Kendrick,Brad Brewster,415-896-5900,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7972167602, -122.413810539)",107,6,3,21
Resident,1452038,322 21ST AV,FALSE,BP Filed,3/1/2018 0:00,3,1,0,0,,,,,,"NEW DWELLING UNIT @ REAR OF BLDG (842SF), NEW EXTERIOR STAIR @ SIDE OF EXISTING BLDG,2 BATHS IN UNIT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7817433219, -122.48022478)",8,8,4,29
Resident,1806013A,1487 47TH AV,FALSE,BP Filed,8/29/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT A PERMIT. LEGALIZATION OF (E) UNAUTHORIZED DWELLING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,Western Shoreline,Rest of the City,2018,Q1,2018_Q1,"(37.7587849062, -122.507107986)",39,10,7,35
Resident,2636025,599 CRESTMONT DR,TRUE,PL APPROVED,3/7/2014 0:00,29,29,0,0,Fee Payment,,,2004,"The proposed project would involve the construction of 34 dwelling units and 40 off-street parking spaces in four new buildings on an undeveloped site. The residential buildings would four stories in height, approximately 20 feet in height from grade.",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7589409893, -122.460781673)",111,7,8,14
Vacant,636037,2455 SACRAMENTO ST,FALSE,BP Filed,12/21/2017 0:00,0,0,0,0,,,,,,"TO ERECT 4 STORIES,1 BASEMENT, TYPE 5-A COMMERCIAL BLDG (B,M)",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.789680351, -122.433602957)",102,4,6,30
Resident,6491001,701 BRUNSWICK ST,FALSE,BP Filed,12/20/2017 0:00,2,1,0,0,,,,,,"LEGALIZATION (E) IN-LAW UNIT PER ORDINANCE# 43-14. TO COMPLY WITH NOV# 200869313, # 200993384 & # 20",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7088459666, -122.447718831)",58,9,1,7
Resident,1016002,3700 CALIFORNIA ST,FALSE,PL Filed,12/13/2017 0:00,240,231,0,0,,,,2017-003559PRJ,"Demolition of most existing buildings, conversion of Marshall Hale building at 3698 California into residential, retention of 401 Cherry building with 9 residential units, and new construction of up to 37 buildings, with 3-7 stories, below-grade parking,",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,TMG Partners,,4157725900,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7865737657, -122.455772347)",10,8,6,31
Resident,300010,736 HYDE ST,FALSE,BP Filed,6/12/2017 0:00,9,9,0,0,,,,,,"TO ERECT 5 STORIES, NO BASEMENT, TYPE V-A OVER TYPE I-A, 9 UNITS MULTIFAMILY RESIDENTAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,4 - Downtown,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7877805591, -122.416475794)",50,6,3,21
Mixres,3750050,655 FOLSOM ST,TRUE,BP FILED,3/10/2016 0:00,89,89,0,0,Fee Payment,,,2013,"The property is currently occupied by a two-story commercial building occupied by a restaurant. The project will include demolition of the existing building and construction of a new 13 story mixed use building including 84 dwelling units, ground floor",CONSTRUCT (N) MIXED USED RESIDENTIAL,1900,-11521,0,0,0,0,0,0,0,0,0,0,0,0,0,1900,-11521,0,0,0,0,0,0,0,0,YEUNGMIN,,,,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7843741472, -122.397774165)",32,1,10,8
Resident,3206018,89 NORTON ST,FALSE,BP Filed,11/3/2017 0:00,2,1,0,0,,,,,,LEGALIZE DWELLING UNIT AT FIRST FLR PER ORDINANCE NO. 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7251245744, -122.436495948)",94,9,1,28
Mixres,512031,2301 LOMBARD ST,FALSE,BP FILED,12/28/2016 0:00,22,22,0,0,Fee Payment,,,2015-014040PRJ,Construction of a new 4 story 22 unit multi-family residential structure over retail and parking for vehicles and bikes.,"ERECT A 4 STORIES, 22 RESIDENTIAL UNITS, 1 BASEMENTS, TYPE 5A MIX USE BUILDING. MAHER EXTENSION IS NOT APPLIED.",2585,2585,0,0,0,0,0,0,0,0,0,0,0,0,0,2585,2585,0,0,0,0,0,0,0,0,LAJELLO,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7990958172, -122.439611)",14,4,6,13
Vacant,1433009,3700 GEARY BL,FALSE,BP Filed,1/16/2018 0:00,0,0,0,0,,,,,,CHANGE OF USE FROM RETAIL OCCUPANCY (M) INTO (I-2.1). TO CONSTRUCT NEW DIALYSIS CENTER - CONSTRUCT I,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7818392399, -122.4592894)",5,8,4,11
Resident,4224018,1036 MISSISSIPPI ST,TRUE,BP APPROVED,12/1/2009 0:00,2,2,0,0,,,,2007,"New construction of two buildings with two units each, total of four units on a vacant lot.",TO ERECT A NEW 3-STORY 2 DWELLING UNITS OVER BASEMENT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BFU,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.753277182, -122.394008586)",54,2,9,26
Resident,3656020,4068 24TH ST,FALSE,BP Filed,11/13/2017 0:00,4,4,0,0,,,,,,"TO ERECT 4 STORIES, NO BASEMENT, TYPE V-B, 4 UNITS RESIDENTIAL WITH RETAIL (R-2,B)",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7515809815, -122.433389171)",84,3,5,22
Mixres,836011,22 FRANKLIN ST,TRUE,CONSTRUCTION,12/22/2017 0:00,35,35,4,4,BMR Rental,55% AMI;,,2013,"Demolish the existing auto body shop building on the lot 012 and construct a 8-story, 85-foot tall mixed use building. Construct a new building would include 24 dwelling units and 2,120 gross square feet of retail space along Franklin.","TO ERECT 8 STORIES, NO BASEMENT, 35 UNITS RESIDENTIAL & COMMERCIAL BUILDING.",1900,75,0,0,0,0,0,0,0,0,0,0,0,0,1825,1900,75,4323,4323,0,0,0,0,0,0,CGROB,Aidin Massoudi,Aidin Massoudi,415-922-0200,6 - Buena Vista,5,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7747267988, -122.420603685)",21,4,11,9
Resident,6563027,4163 26TH ST,FALSE,BP Filed,12/15/2017 0:00,2,1,0,0,,,,,,RENOVATION OF (E) DWELLING. SHIFT BIULDING FORWARD ON SITE UP TO FRONT SETBACK LINE. HORIZONTAL ADDI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7479044749, -122.432847654)",84,3,5,22
Resident,2425029,2335 ULLOA ST,FALSE,BP Filed,5/25/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION PER ORDINANCE #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7407613655, -122.481539782)",40,10,7,35
Resident,7219004B,222 EUCALYPTUS DR,FALSE,BP Filed,2/26/2018 0:00,2,1,0,0,,,,,,"ADD ADU TO (E) 1ST FL WITHIN (E) BLDG FOOTPRINT PER ORD# 95-17. INCLUDING 1 BED, 1 BATH AND 1 KITCHE",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,19th Avenue,2018,Q1,2018_Q1,"(37.731274515, -122.475382851)",62,10,8,35
Mixres,5952002,302 SILVER AV,TRUE,CONSTRUCTION,4/11/2018 0:00,198,198,0,0,,,,2011,"Project includes the demolition of the Main/ West/ Infirmary Building, approximately 50,600 square feet, and the new construction of two buildings (1A and 1B), totaling approximately 264,984 square feet, which would house up to 210 Residential Care Facil","TO ERECT 5 STORIES, 2 BASEMENT, RESIDENTIAL CARE FOR THE ELDERLY BUILDING.",572000,275875,296125,561109,264984,0,0,0,0,6291,6291,0,0,0,0,4600,4600,0,0,0,0,0,0,0,0,TCHANG,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7277801111, -122.430568541)",90,9,1,7
Resident,6449023,1137 MUNICH ST,FALSE,BP Filed,11/29/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT A PERMIT UNDER ORDINANCE 43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7105167634, -122.43642487)",58,9,1,7
Resident,5353006C,194 MADDUX AV,FALSE,BP Filed,12/7/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION PER ORD 43-14 ON GROUND FLR. (2) BDRMS & BATHROOM ON GROUND FLR.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7325522153, -122.400075348)",87,2,9,1
Resident,3639006,2675 FOLSOM ST,TRUE,BP FILED,9/22/2016 0:00,117,117,19,19,On-site BMR Project,90% AMI;,Rental,2014-000601PRJ,"The proposal is to demolish the existing 22,111 square foot warehouse building and construct a 4-story, 40-foot tall residential building. The proposed new building would include approximately 117 dwelling units with 90 off-street parking spaces at the","ON LOT NOS. 006,007 AND 024: TO ERECT 4 STORIES 117 RESIDENTIAL WITH PARKING (LOTS WILL BE MERGED IN FUTURE)",0,-22411,0,0,0,0,0,0,0,0,0,22411,0,-22411,0,0,0,0,0,0,0,0,0,0,0,JBANALES,"Axis Development Group, LLC",,992-6997,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7545945837, -122.413811585)",53,3,2,20
Resident,4214001,1200 VERMONT ST,FALSE,BP Filed,2/26/2018 0:00,2,0,0,0,,,,,,CHANGE OF USE FROM GROCERY/DELI TO LIMITED RESTAURANT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,10,Showplace Square/Potrero Hill (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7542496447, -122.40368426)",54,3,9,20
Resident,1100042,2025 OFARRELL ST,FALSE,BP Filed,4/5/2017 0:00,7,1,0,0,,,,2017-004182PRJ,ADD UNIT PER ORDINANCE# 162-16. CONVERT (E) ROOMS INTO ACCESSORY DWELLING UNIT WITH 1 BEDROOM & 1 BATH.,ADD UNIT PER ORDINANCE# 162-16. CONVERT (E) ROOMS INTO ACCESSORY DWELLING UNIT WITH 1 BEDROOM & 1 BATH.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GPANTOJA,,,4159229282,5 - Western Addition,5,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7824250818, -122.438071947)",97,4,11,39
Mixres,4045003,2171 03RD ST,TRUE,BP ISSUED,6/8/2017 0:00,109,109,17,17,On-site BMR Project,90% AMI;,Ownership,2013,"The proposal is to demolish the two existing industrial/office buildings on the 29,438-square-foot subject lot and construct two 7-story, 68-foot tall residential buildings. The proposed new buildings would have approximately 154,509 gross square feet of","ERECT MIXED-USE (RESIDENTIAL, RETAIL) NEW BUILDING.",4833,-30441,0,0,0,0,0,0,0,0,0,35274,0,-35274,0,4833,4833,0,0,0,0,0,0,0,0,DVU,,,,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7623405114, -122.388255218)",55,2,9,26
Resident,459007,1598 BAY ST,TRUE,CONSTRUCTION,3/30/2018 0:00,28,28,0,0,Fee Payment,,,2014-003157PRJ,To permit the conversion of a former Gas Station that is currently a vacant and underutilized lot into a four story 40' high residential building consisting of 28 units and 42 parking spots.,"TO ERECT 4 STORIES, 1 BASEMENT, 28 UNITS RESIDENTIAL & COMMERCIAL BUILDING.
** MAHER: N/A **",0,-440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-440,0,0,0,0,0,0,0,0,BBENDIX,Presidio Development Partners,Mark Conroe,415-431-6506,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.8033706698, -122.433051606)",17,4,6,13
Resident,0672002A,1406 SUTTER ST,FALSE,BP Filed,12/4/2017 0:00,37,0,0,0,,,,,,CHANGE OF USE FROM TRAVEL AGENT OFFICE TO RESTAURANT @ 1406 SUTTER STREET. COMBINE RESTAURANT @ 1406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7874822006, -122.423687107)",100,4,6,39
Resident,7117044,227 RANDOLPH ST,FALSE,BP Filed,8/31/2017 0:00,2,1,0,0,,,,,,COMPLY WITH COMPLAINT #201794301 ORD.162-16-ADU OF DWELLING UNIT INSTALLED WITHOUT PERMIT. TO LEGALI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,19th Avenue,2018,Q1,2018_Q1,"(37.7140717678, -122.464891018)",65,10,1,24
Mixres,3702308,TRINITY PLAZA,TRUE,BP ISSUED,10/24/2016 0:00,501,501,74,74,On-site BMR Project,,Rental,2002,"The proposed project is to demolish the existing 263,602gsf, 377 unit apartment complex and construction of a 1,500,000gsf three connected residential buildings over a 2-story podium, containing about 1,410 dwelling units, 20,000gsf of ground-floor retai","TO ERECT 18 STORIES, 6 BASEMENTS, 501 UNITS RESIDENTIAL, RETAIL WITH PARKING BUILDING.",30000,30000,0,0,0,0,0,0,0,0,0,0,0,0,0,30000,30000,0,0,0,0,0,0,0,0,TCHANG,,,,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7784409344, -122.413479161)",32,5,10,34
Resident,2648052,4200 18TH ST,FALSE,BP Filed,5/1/2017 0:00,6,6,0,0,,,,,,CHANGE (E) GARAGE @ 1ST FLR TO (3) COMMERCIAL UNITS; @ 3RD FLR CONVERT (E) COMMERCIAL SPACE TO (6) D,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7610017952, -122.436322425)",38,3,5,5
Resident,1730033,1250 21ST AV,FALSE,BP Filed,10/30/2017 0:00,3,1,0,0,,,,,,UNIT LEGALIZATION PER ORD 43-14 AT 1ST FLR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7643831236, -122.47900227)",39,10,7,35
Resident,2371014,3220 TARAVAL ST,FALSE,BP Filed,9/6/2017 0:00,3,1,0,0,,,,,,"UNIT LEGALIZE PER ORDINANCE 43-14 ON GROUND FLOOR. 1 BEDROOM, 1 FULL BATH, 1 LIVING FOOM W/ KITCHEN,",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7421923268, -122.500800013)",39,10,7,35
Vacant,292002,1 MONTGOMERY ST,FALSE,PL FILED,,0,0,0,0,,,,2016-004810PRJ,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,4 - Downtown,3,Downtown; Downtown Streetscape Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7892495472, -122.402418597)",19,6,3,8
Resident,3995022,595 MARIPOSA ST,TRUE,CONSTRUCTION,4/11/2018 0:00,20,20,0,0,,,,2014,"The proposed project is to build upon an existing surface parking lot and construct a 5-story residential building containing 20 residential units with a combination of private and common open space. Then net new construction would be 16,757 square feet.","TO ERECT 5 STORIES, TYPE VA OVER I, NO BASEMENT, 20 UNITS RESIDENTIAL BUILDING. Future address of 601 Tennessee. MAHER COMPLIANCE REQUIRED.
",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DISALVOJ,,,,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7641408307, -122.389528401)",55,2,9,26
Resident,6656016,76 CHENERY ST,FALSE,BP Filed,3/27/2018 0:00,2,1,0,0,,,,,,EXPAND (E) SFH HORIZONTALLY INTO REAR YARD & VERTICALLY TO ADD 1 STORY. CREATE (N) 1 BDRM UNIT ON 1S,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7402903427, -122.425932889)",59,9,5,10
Resident,1742015B,1285 08TH AVE,FALSE,BP Filed,6/26/2017 0:00,9,0,0,0,,,,2017-008290PRJ,"1. ADDITION OF A NEW ACCESSORY DWELLING UNIT (BP 201706260343).
2. ADDITION OF TWO (2) NEW ACCESSORY DWELLING UNITS (BP 201707212632).","ADDITION OF ONE (N) UNIT ON 1ST FLR PER ORD #162-16. (N) UNIT#9 = 305 SQ. FT W/ ONE KITCHEN, ONE BATHROOM.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DGANETSO,Mercury Engineering,,4159923383,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7643708723, -122.465548249)",109,10,11,14
Resident,1465017A,438 34TH AV,FALSE,BP Filed,4/11/2017 0:00,3,1,0,0,,,,,,"ACCESSORY UNIT ADDITION ON GROUND FLOOR PER ORD #162-16. 2-BEDRM, 2-BATHRM LIVING RM & KITCHEN ON GR",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7808266874, -122.494135878)",8,8,4,29
Mixres,155013,1310-12 Pacific Avenue,FALSE,BP Filed,12/21/2016 0:00,3,1,0,0,,,,2016-007597PRJ,"REMODEL OF (E) UNIT AND VERTICAL ADDITION OF TWO STORIES ABOVE EXISTING UNIT & COMMERICAL UNIT ON 3RD + 4TH FLR AND ROOF DECK, NEW FACADE MATERIAL & REAR INTERIAL DRIEWAY. BUILDING FOOT PRINT TO REMAIN UNCHANGED.","REMODEL OF (E) UNIT AND VERTICAL ADDITION OF TWO STORIES ABOVE EXISTING UNIT & COMMERICAL UNIT ON 3RD + 4TH FLR AND ROOF DECK, NEW FACADE MATERIAL & REAR INTERIAL DRIEWAY. BUILDING FOOT PRINT TO REMAIN UNCHANGED.",1050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1050,0,0,0,0,0,0,0,0,0,CALEXAND,Owner,Ross McKenna,4153175197,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7957670614, -122.417100752)",16,6,3,32
Resident,2079001,3501 NORIEGA ST,FALSE,BP Filed,5/19/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION ORDINANCER 43-14. LEGALIZE DWELLING UNIT AT FIRST FLOOR PER PLAN.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7529244574, -122.501278973)",39,10,7,35
Mixres,5087003,SCHLAGE LOCK,TRUE,PL APPROVED,7/22/2014 0:00,1679,1679,168,168,On-site BMR Project; Fee Payment,,,2014,"Schlage Lock Project Tentative Subdivision Map #7182 for the development of up to 1,679 dwelling units and up to 20 commercial condominium units over 13 lots, together with parks, open spaces, pedestrian pathways and public streets.",,18000,18000,0,0,0,0,0,0,0,18000,18000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CFLORES,,,,10 - South Bayshore,10,Schlage Lock,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7116529693, -122.402222463)",89,2,9,1
,3590035,2205 MISSION ST,FALSE,PL FILED,3/23/2018 0:00,48,48,48,48,,,,2018-003616PRJ,"The proposed project is a nine-story mixed use building containing childcare, community serving arts, and housing facilities. An existing two-story building will be rehabilitated or reconstructed and converted into childcare and community serving arts us",,0,0,0,0,0,0,0,0,0,0,0,0,0,-3040577,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7616814642, -122.41894541)",53,3,2,20
Resident,2190008,2110 28TH AV,FALSE,BP Filed,5/25/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION PER ORDINANCE #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7479527416, -122.485444349)",40,10,7,35
Resident,4107001B,950 TENNESSEE ST,TRUE,BP FILED,12/15/2016 0:00,103,103,0,0,Fee Payment,,,2014,"The proposed project is to demolish the existing two-story 36,098 square foot industrial building and construct a four-story, 40-foot tall residential building. The existing building on the 31,883 square foot subject lot was constructed in 1947. The pr",,0,-31663,0,0,0,0,0,0,0,0,-7896,0,0,-23767,0,0,0,0,0,0,0,0,0,0,0,AA CONV,,,,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7597476917, -122.389882115)",55,2,9,26
Resident,3639001,2600 HARRISON ST,TRUE,CONSTRUCTION,4/12/2018 0:00,20,20,0,0,Fee Payment,,,2014,The project proposes a new residential building in place of the existing industrial warehouse building to be demolished. The new building would be 40 feet tall with ground floor parking and 20 residential units. A rood deck would be provided with acces,"TO ERECT 4-STORY, NO BASEMENT, TYPE 5A, 19 DWELLING UNITS BUILDING.
** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 NOT REQUIRED **",0,-7209,0,0,0,0,0,0,0,0,0,7506,0,-7209,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,Toby Morris,Edward Morris,415-749-0302,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7553782132, -122.412406395)",53,3,2,20
Vacant,2170038,2154 48TH AV,FALSE,BP Filed,10/16/2017 0:00,0,0,0,0,,,,,,ERECT (N) 1-STORY ACCESSORY BUILDING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7462532551, -122.506759763)",39,10,7,35
Mixres,3753079,363 06TH ST,TRUE,BP ISSUED,10/11/2017 0:00,104,104,12,12,On-site BMR Project,55% AMI;,Rental,2011,Remove existing 2-story commercial building and construct a new 9-story mixed-use building.,CONSTRUCT (N) 9-STORY MULTI-RESIDENTIAL & COMMERCIAL BUILDING,700,-11696,0,0,0,0,0,0,0,0,0,0,0,-12396,0,700,700,0,0,0,0,0,0,0,0,CTEAGUE,David Hecht,David Hecht,979-1500,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7780487563, -122.404446692)",32,1,10,34
Resident,133044,335 GREEN ST,FALSE,BP Filed,9/14/2017 0:00,3,1,0,0,,,,,,CONVERT GROUND FLR STORAGE SPACES INTO (1) NEW DWELLING UNIT PER ORD NO 162-16. AREA OF WORK AND PAT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7997451932, -122.404802755)",18,6,3,23
Mixres,2623006,376 CASTRO ST,TRUE,BP FILED,5/17/2013 0:00,24,24,3,3,On-site BMR Project,90% AMI;,Ownership,2004,"Demolition of a gas station and construction of a mixed-use building with 24 dwelling units, appx. 2,800 GSF of ground floor commercial use, and 24 off-street parking spaces.","TO ERECT 6-STORY, 24 UNITS W/ GARAGE, COMMERCIAL & PARKING BUILDING.",8265,8265,0,0,0,0,0,0,0,0,0,0,5275,5275,0,2990,2990,0,0,0,0,0,0,0,0,RCRAWFOR,Bruce Baumann,Bruce Baumann,415 551-7884,6 - Buena Vista,8,,Market & Octavia,2018,Q1,2018_Q1,"(37.7629212535, -122.435500092)",113,7,5,5
Resident,1916011,2125 LAWTON ST,TRUE,BP ISSUED,4/5/2018 0:00,3,1,0,0,,,,,,"ADD UNIT PER ORDINANCE #162-16 INCLUDING LIVING ROOM, KITCHEN, DINING, (2) BEDROOMS, STUDY & (3) FUL",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7573226923, -122.485820599)",39,10,7,35
Resident,5295004,1510 MCKINNON AV,FALSE,BP Filed,12/6/2017 0:00,2,1,0,0,,,,,,"REAR ADDITION, 3RD FLOOR ADDITION, ADD (N) UNIT IN (E) BASEMENT W/ KITCHEN & BATHROOM",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.735150207, -122.38743477)",86,2,9,1
Resident,4076001,700 SAN BRUNO AV,FALSE,BP Filed,5/12/2017 0:00,3,1,0,0,,,,,,JOIN 2 (E) ILLEGAL UNITS INTO 1 LEGAL UNIT (2 BEDROOMS & 2 BATHS) PER ORDINANCE# 43-14. CONNECTED B,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7606325848, -122.405392073)",54,2,9,26
Vacant,4016003,1999 BRYANT ST,FALSE,BP Filed,7/7/2017 0:00,0,0,0,0,,,,,,"CHANGE OF USE FROM AN (E) PERMITTED WAREHOUSE, FABRICATION, FURNITURE GALLERY USE TO PERMITTED BY RI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,10,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7619656263, -122.409769211)",53,3,9,20
Resident,5087004,2201 BAYSHORE BL,FALSE,PL FILED,2/4/2016 0:00,229,229,45,45,,,,2016-001605PRJ,"The proposed project consists of three separate building components on two parcels totaling approximately 49,462 square feet. The three building components are as follows: a multi-family residential building totaling 183 units, a series of two-unit townh",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,Martin Building Company,Julie Heinzler,415-348-4644,10 - South Bayshore,10,Schlage Lock,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7108078566, -122.401925975)",89,2,9,1
Resident,5993012,368 PRINCETON ST,FALSE,BP Filed,7/7/2017 0:00,2,1,0,0,,,,,,ADU PER ORDINANCE NO 95-17. COMPY WITH COMPLAINT #201413801 & 201782938.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,9,,Rest of the City,2018,Q1,2018_Q1,"(37.725005664, -122.415191639)",92,2,2,25
Mixres,744010,950 GOUGH ST,TRUE,BP APPROVED,2/6/2018 0:00,95,95,11,11,On-site BMR Project,90% AMI;,Ownership,2012,"Mixed-use building comprised of 100 residential dwelling units, church and community space, 73 space parking garage and courtyard.","CONSTRUCT (N) RESIDENTIAL, ASSEMBLY, PARKING",10000,10000,0,10000,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MWOODS,,,,5 - Western Addition,5,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7822225661, -122.423765947)",100,4,11,39
Resident,3620082,335 HILL ST,FALSE,BP Filed,8/21/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION PER ORDINANCE 43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7554003369, -122.428595044)",52,3,5,22
Mixres,3740030,TRANSBAY BLOCK 1,TRUE,CONSTRUCTION,9/27/2017 0:00,392,392,156,156,,100% AMI; 120% AMI;,Ownership,,,"TO ERECT 40 STORIES, 2 BASEMENTS, 390 UNITS RESIDENTIAL & RETAIL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Downtown Streetscape Plan; Transbay; Transit Center District; Transit Center District Streetscape Plan,Transit Center District,2018,Q1,2018_Q1,"(37.7897365508, -122.391753275)",108,1,10,8
Resident,1845022,434 KIRKHAM ST,FALSE,BP Filed,6/27/2017 0:00,3,1,0,0,,,,,,"(N) ADU @ 1ST FL, (2) BED, (3) BATH, LIVING & KITCHEN PER ORD #162-16",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7605780036, -122.465618602)",109,10,11,14
Resident,6635054,3310 MISSION ST,FALSE,BP Filed,12/18/2017 0:00,8,8,0,0,,,,,,"TO ERECT 5 STORIES,1 BASEMENT, TYPE 3-A, 8 DWELLING UNIT RESIDENTIAL, RETAIL WITH PARKING (R-2, M, S",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,Mission District Streetscape Plan; Mission Public Life Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7437928169, -122.421373869)",83,9,2,2
Mixres,3510014,1450 HOWARD ST,FALSE,PL FILED,,16,16,16,16,,,,2016-007983PRJ,,,1338,1338,0,0,0,0,0,0,0,0,0,0,0,0,0,1338,1338,0,0,0,0,0,0,0,0,,,,,4 - Downtown,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7737495727, -122.415158499)",32,1,10,34
Vacant,1764001,827 IRVING ST,FALSE,PL Filed,1/16/2018 0:00,0,0,0,0,,,,2018-000955PRJ,Conditional Use Authorization to permit a change of use to retail sales.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SYOUNG,,,4156951111,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7637738109, -122.466669134)",109,10,11,14
Vacant,3594011,2394 Folsom St.,TRUE,BP ISSUED,10/24/2017 0:00,0,0,0,0,,,,2017-006766PRJ,"Project sponsor request Conditional Use Authorization for change of use from Trade Shop to Restaurant ""Fort Point Beer Co"".","ADMINISTRATIVE PERMIT TO DOCUMENT AND MEMORIALIZE 16,376 SF OF TRADE SHOP. NO CONSTRUCTION UNDER THIS PERMIT. MEZZANINE LEVEL PREVIOUSLY APPROVED FOR OFFICE AND STORAGE UNDER BPA 275605",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,Fort Point Beer,,4153363596,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.759079668, -122.415274691)",53,3,2,20
Resident,1645005,729 02ND AV,FALSE,BP Filed,12/22/2017 0:00,3,1,0,0,,,,,,LEGALIZE IN-LAW UNIT PER ORDINANCE 43-14. BUILDING WAS PURCHASED IN 1982.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7750813177, -122.459882549)",5,8,4,11
Resident,4159004,1016 DE HARO ST,FALSE,BP FILED,9/14/2017 0:00,2,1,0,0,,,,2015-002653PRJ,"Demolish an existing one-story, single-family home with one parking space and construct a new four-story, two-family home with a four-vehicle garage.
DEMOLISH SINGLE FAMILY RESIDENCE
CONSTRUCT (N) 2-FAMILY RESENDENTIAL.",CONSTRUCT (N) 2-FAMILY RESENDENTIAL.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JSPEIRS,D-Scheme Studio Architects,,4152520888,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7568322359, -122.401148847)",54,2,9,26
Resident,6722012,108 BOSWORTH ST,TRUE,BP ISSUED,4/4/2018 0:00,2,1,0,0,,,,,,REMODEL OF EXISTING SINGLE FAMILY HOME TO ACCOMMODATE AN ADDITIONAL UNIT ON GROUND FLOOR.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7337002768, -122.428124644)",93,9,5,28
Resident,1509036,542 36TH AV,FALSE,BP Filed,6/8/2017 0:00,3,1,0,0,,,,,,LEGALIZE (E) UNAUTHORIZED DWELLING UNIT UNDER ORD #43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7786818644, -122.496128765)",8,8,4,29
Mixres,3553052,1979 MISSION ST,FALSE,BP FILED,12/17/2013 0:00,331,331,40,40,,,,2013,"Proposes to demolish all existing improvements on the project site and to contruct a 5 to 10 story up to 105' high, 345,013 sq.ft. building exclusive of a 56,643 sq.ft. basement parking garage. Off-street parking that meets the Planning Code requirements",ERECT 10-STORY MIXED-USE NEW BUILDING.,34198,-2558,0,0,0,0,0,0,0,0,0,0,0,0,36756,34198,-2558,0,0,0,0,0,0,0,0,DVU,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7655813764, -122.41912307)",53,3,2,20
Resident,5678030,432 CORTLAND AV,FALSE,BP Filed,9/7/2017 0:00,2,2,0,0,,,,,,"TO ERECT 4-STORY, 2-DWELLING UNIT BUILDING OVER COMMERCIAL.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7388710442, -122.417001543)",61,9,2,2
Resident,978006,2770 JACKSON ST,FALSE,BP Filed,9/27/2017 0:00,3,2,0,0,,,,,,CHANGE OF USE FROM SINGLE FAMILY TO 3 UNITS BUILDING. REMODEL OF (E) 3 STORY OVER BASEMENT BUILDING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7919689068, -122.440644735)",102,4,6,30
Resident,2076032,1858 40TH AV,FALSE,BP Filed,11/3/2017 0:00,2,1,0,0,,,,,,"TWO STORY REAR ADDITION TO AN EXISTING SFD. TWO STORY SFR, NEW ADU AT 1ST FLOOR (1 BEDROOM & 1 BATH)",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7521578897, -122.498567066)",39,10,7,35
Resident,4788001,1301 REVERE AV,FALSE,BP Filed,1/16/2018 0:00,2,0,0,0,,,,,,ADD SECOND STOVE AT SECOND FLOOR. CHANGE TO TWO UNIT DWELLING FROM GROUP HOUSING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7283640748, -122.38487701)",86,2,9,1
Resident,516003,3043 WEBSTER ST,FALSE,BP Filed,2/9/2018 0:00,1,1,0,0,,,,,,CONVERT EXISTING REAR STORAGE BUILDING AT REAR OR LOT TO ADDITION OF DWELLING UNIT (ADU) PER ORDINAN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7988671262, -122.434434354)",15,4,6,13
Resident,6978069,1 EDGAR AV,FALSE,BP FILED,5/8/2015 0:00,1,1,0,0,,,,,,CONSTRUCT (N) 3-STORY SINGLE FAMILY DWELLING UNIT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,FLORESVE,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7203939917, -122.452521323)",64,10,1,24
Resident,318020,651 - 655 GEARY ST,TRUE,BP FILED,7/7/2016 0:00,52,52,6,6,On-site BMR Project,90% AMI;,Ownership,2014,"The proposed project is to construct a 13-story, 130-foot tall mixed use building. The existing building on the 7,008 square foot subject lot was demolished recently (Case No. 2012.0628E) The proposed new building would include 47 dwelling units, 28 par",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,,,,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.786344151, -122.413955468)",20,5,10,36
Vacant,214016,1360 JONES ST,TRUE,PL Approved,12/14/2017 0:00,0,0,0,0,,,,2017-007430PRJ,Conditional Use authorization application top permit a dwelling unit merger.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CASBAGH,Hanson Bridgett LLP,,4159955065,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7939918727, -122.414384717)",16,6,3,21
Resident,2052A007,830 ORTEGA ST,FALSE,BP Filed,11/14/2017 0:00,2,1,0,0,,,,,,NEW ADU CREATED @ 1ST FLOOR PER ORDINANCE# 95-17. KITCHEN ADDED @ 1ST FLOOR IN (E) SPACE. REF PA# 20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.752770655, -122.472650807)",44,10,8,14
Vacant,4271045,1346 ALABAMA ST (UNITS A&B),FALSE,BP Filed,3/7/2016 0:00,0,-1,0,0,,,,2017-008138PRJ,Dwelling Unit Merger - Conditional Use Authorization to permit the removal of two kitchens in each dwelling unit (#A&B) in an existing 4-unit dwelling.,REMOVE 2ND KITCHEN ON 2ND FLOOR & RESTORE TO APPROVED OCCUPANCY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,4158771293,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7500091997, -122.410984713)",53,3,2,20
Resident,114036,357 UNION ST,FALSE,BP Filed,5/1/2017 0:00,3,2,0,0,,,,,,COVERT 1 UNIT BUILDING INTO 3 UNIT BUILDING . ADD TWO STORIES ABOVE THE (E) TWO STORIES. ADDING 4 BA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8007402686, -122.405374872)",18,6,3,23
Resident,1220016,1284 PAGE ST,FALSE,BP Filed,7/21/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF A DWELLING UNIT INSTALLED WITHOUT A PERMIT PER ORDINANCE 43-14. MEP DEFERRED.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7718291533, -122.441988314)",112,7,11,3
Resident,208028,655 MONTGOMERY ST,FALSE,BP Filed,6/15/2017 0:00,33,0,0,0,,,,,,"GROUND FLOOR:CONVERT VACANT RESTAURANT SPACE TO BLDG OFFICE, CONFERENCE AND LOUNGE. NEW RESTROOMS AN",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7952349868, -122.403606838)",104,6,3,6
Mixres,3728019,1298 HOWARD ST,TRUE,PL APPROVED,3/2/2017 0:00,155,130,34,9,,,,2014,"The proposed project would contain 121 residential units, 10,050 sq.ft. of flex office/retail space. Also proposed is a pedestrian alley connecting Howard and Natoma Streets. The design of the project embraces the intent of Western SOMA zoning, respect",ERECT A FIVE STORY 125 DWELLING UNITS WITH COMMERCIAL. COMPLY W/ ORDINANCE NO. 155-13 REQUIRED.,13850,8850,0,0,0,0,0,0,0,12000,12000,0,0,0,5000,1850,-3150,0,0,0,0,0,0,0,0,DVU,John Kevlin,John Kevlin,415.567.9000,4 - Downtown,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7756285786, -122.412778677)",32,1,10,34
Mixres,3514043,1601 MISSION ST,TRUE,BP APPROVED,5/2/2017 0:00,220,220,0,0,Fee Payment,,,2014,"Proposing New Construction of a 120' tall building consisting of 11-stories, containing a total of 200 dwelling units, ground floor retail/commercial space, 103 bicycle parking spaces, 2-car share spaces and 93 off-street parking spaces.",ERECT 13 STORIES OF 220 DWELLING MIX USE TYPE 1 CONSTRUCTION.,7097,2668,0,0,0,0,0,0,0,0,0,0,0,0,4429,7097,2668,0,0,0,0,0,0,0,0,TCHANG,,,,8 - Mission,6,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys; Mission Public Life Plan,Market & Octavia,2018,Q1,2018_Q1,"(37.7720407313, -122.418763249)",32,1,10,20
Resident,65007,2121 MASON ST,FALSE,BP Filed,10/4/2017 0:00,2,1,0,0,,,,,,RENOVATE (E) SINGLE FAMILY HOME (2BED/2BATH). PROPOSED PROJECT IS TO ADD (1)STORY & CREATE 2ND UNIT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8031238761, -122.413428676)",106,6,3,23
Resident,1515020,3850 ANZA ST,FALSE,BP Filed,11/7/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT PERMIT. LEGALIZATION OF EXISTING UNAUTHORIZED DWELLI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7780800781, -122.489682448)",8,8,4,29
Mixres,3591024,793 SOUTH VAN NESS AV,FALSE,PL FILED,1/14/2016 0:00,73,73,11,11,,,,2015-001360PRJ,"the proposed project would demolish the existing gas station and construct a five-story residential building with ground floor retail space. The roof of the building would be 55 feet above street level, with roof deck, circulation penthouse, and mechanic",,4577,4577,0,0,0,0,0,0,0,0,0,0,0,0,0,4577,4577,0,0,0,0,0,0,0,0,VBYRD,Ian Birchall and Associates,,4155129660,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7606728426, -122.416701196)",53,3,2,20
Vacant,838021,275 OAK ST,FALSE,PL Filed,3/1/2018 0:00,0,0,0,0,,,,2018-003024PRJ,Variance from the exposure requirements of Planning Code Section 140 to permit the addition of two (2) accessory dwelling units within the existing building envelope.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MCHANDLE,Q Architecture,,4156952700,6 - Buena Vista,5,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7746792168, -122.423749669)",26,4,11,9
Resident,6632001,1702 CHURCH ST,FALSE,BP Filed,9/28/2017 0:00,2,1,0,0,,,,,,"ADD KITCHEN TO REAR ROOMS, UPGRADE ALL FINISHES, CREATE EFFICIENCY APARTMENT. A.D.U. TOTAL 335 SQ FT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7435545771, -122.426938422)",84,9,5,22
Resident,6635005,3326 MISSION ST,FALSE,BP Filed,3/8/2018 0:00,1,0,0,0,,,,,,REVISION TO PA#201605238132. CHANGE IN USE FROM EXISTING MEDICAL CANNABIS DISPANARY TO NEW RETAIL CA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,Mission District Streetscape Plan; Mission Public Life Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7435802111, -122.421528412)",83,9,2,2
Resident,7161025,44 RICE ST,FALSE,BP Filed,9/28/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION PER ORD 43-14. TO ABATE NOV #201629671.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7083743025, -122.456987417)",66,9,1,28
Mixres,3996013,625 MARIPOSA ST,FALSE,PL FILED,1/4/2017 0:00,35,35,9,9,,,,2015-015138PRJ,"The project is a 5 story with mezzanine, approximately 34,000 gsf building with 35 dwelling units. The ground floor could have either residential units with mezzanines or retail with mezzanine. An existing 7,500 sf auto body shop would be demolished.",,3500,-4000,0,0,0,0,0,0,0,0,0,7500,0,-7500,0,3500,3500,0,0,0,0,0,0,0,0,,"Badiner Urban Planning, Inc.",Larry Badiner,415-865-9985,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7640521044, -122.390144394)",55,2,9,26
Mixres,28014,1255 - 1275 COLUMBUS AV,TRUE,CONSTRUCTION,4/6/2018 0:00,20,20,0,0,Fee Payment,,,2008,"Remove office, new construction 20-unit residential condominium with approximately 6,500 sf retail and 20 parking spaces at ground floor. Variance required because no commercial parking is provided.","TO ERECT 4 STORIES, NO BASEMENT, 20 UNITS APARTMENTS WITH COMMERCIAL AND PARKING BUILDING.",6500,-9352,0,0,0,0,0,0,0,0,-15852,0,0,0,0,6500,6500,0,0,0,0,0,0,0,0,CFORDHAM,Bruce Baumann,Bruce Baumann,415.551.7884,3 - Northeast,2,Northeast Waterfront; FishermanΓÇÖs Wharf Public Realm Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8057080595, -122.418379667)",99,6,6,32
Mixres,831024,PARCEL O,TRUE,BP REINSTATED,4/11/2018 0:00,108,108,108,108,,30% AMI; 50% AMI; 60% AMI;,Rental,2015-002837PRJ,"The proposed project is to construct a 6 story building with 100% affordable housing development financed by the Mayor's Office of Housing. The project is 112 residential units, 2,100 sf of retail space, 1,470 sf of office space with no vehicle parking.","CONSTRUCT (N) 108 RESIDENTIAL UNITS, NO BASEMENT, ASSEMBLY, OFFICE, MERCANTILE, BIKE PARKING",1200,1200,0,0,0,0,0,0,0,0,0,0,0,0,0,1200,1200,0,0,0,0,0,0,0,0,KGUY,Mercy Housing California,Tim Dunn,415-355-7113,5 - Western Addition,5,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7753559262, -122.425374347)",22,4,11,9
Resident,5329010,1948 QUESADA AV,TRUE,BP ISSUED,7/18/2017 0:00,1,1,0,0,,,,2016-005032PRJ,,ERECT 3 STORIES OF ONE SINGLE FAMILY.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JSPEIRS,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7362192487, -122.395992273)",87,2,9,1
Vacant,4108003A,2342 -2344 3rd St.,FALSE,BP Filed,3/17/2015 0:00,0,0,0,0,,,,2015-007715PRJ,"NEW ADA COMPLIANT WALKWY, STOREFRONT, ENTRY, COMM'L RESTRM, KITCHENETTE,LOBBY ENTRANC. INSTALL 18 HOTEL GUEST ROOM & KITCHENETTES. REPLACE ALL (E) ALUMINUM WINDOWS W/DOUBLE HANG WOOD WINDOWS, REPLACE REAR WOOD FIRE ESCAPE W/STEEL FIRE ESCAPE.","NEW ADA COMPLIANT WALKWY, STOREFRONT, ENTRY, COMM'L RESTRM, KITCHENETTE,LOBBY ENTRANC. INSTALL 18 SRO BATHRMS & KITCHENETTES. REPLACE ALL (E) ALUMINUM WINDOWS W/DOUBLE HANG WOOD WINDOWS, REPLACE REAR WOOD FIRE ESCAPE W/STEEL FIRE ESCAPE. MEP/STRUCTURAL U",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,CHIU SURVIVORS TRUST,,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7599306811, -122.388814968)",55,2,9,26
Resident,7010003,575 ORIZABA AV,FALSE,BP Filed,9/15/2017 0:00,1,1,0,0,,,,,,LEGALIZE DWELLING UNIT @ 1ST FL PER ORDINANCE NO. 43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7192716279, -122.462931841)",64,10,1,24
Mixres,3954016,1301 16TH ST,TRUE,PL APPROVED,6/28/2016 0:00,172,172,28,28,On-site BMR Project,90% AMI;,Rental,2013,"The proposed project would involve demolition of an existing one-story warehouse and construction of a new 7-story, residential building. The building would consist of 7 residential levels with 276 units, ground floor parking and mechanical spaces. The",,9632,-27968,0,0,0,0,0,0,0,0,0,38600,2764,-34836,0,6868,6868,0,0,0,0,0,0,0,0,CTEAGUE,William Mollard,William Mollard,409-9267,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7658451455, -122.400239355)",54,1,9,4
Resident,6178005,416 WILDE AV,FALSE,BP Filed,12/8/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION ORD 43-14. LEGALIZATION OF UNIT INSTALLED WITHOUT PERMIT. LEGALIZATION (E) KITCHEN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,10,,Rest of the City,2018,Q1,2018_Q1,"(37.7175880642, -122.405588413)",75,9,9,40
Resident,4974026,10 GILROY ST,TRUE,BP ISSUED,4/5/2018 0:00,2,1,0,0,,,,,,"LEGALIZE IN LAW UNIT PER ORDINANCE# 43-14. 1ST FLOOR: 1 KITCHEN, LIVING ROOM, 1 FULL BATH & 1 BEDROO",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7163700661, -122.388950014)",88,2,9,1
Vacant,719002,901 VAN NESS AVE,FALSE,PL Filed,1/29/2018 0:00,0,0,0,0,,,,2018-001547PRJ,"Remodel for existing Auto Sales Facility, work is limited to the building on the 1st and 2nd floors only includes demolition of exiting non-original interior partitions, existing glazing for new entrance at Olive Street. Construction of new offices at H",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TFRYE,,,4159926899,5 - Western Addition,5,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7840019235, -122.421694333)",100,4,11,39
Resident,1546018A,226 BALBOA ST,FALSE,BP Filed,2/8/2018 0:00,2,0,0,0,,,,,,CHANGE OF USE. CHANGE (E) BUILDING TO CHILDCARE CENTER,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7775956064, -122.461347602)",5,8,4,11
Resident,6943057,206 HOLLOWAY AV,FALSE,BP Filed,3/28/2018 0:00,3,1,0,0,,,,,,LEGALIZATION OF (E) ILLEGAL DWELLING UNIT AS PER ORDINANCE 43-14. WORK TO COMPLY W/ NOTICE OF VIOLAT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7220680183, -122.455373161)",64,10,8,24
Resident,7138038A,159 SADOWA ST,TRUE,BP APPROVED,12/13/2017 0:00,2,1,0,0,,,,,,"LEGALIZE UNIT ON 1ST FLOOR WITH KITCHEN, 2 FULL BATH, 2 BEDROOM, LIVING ROOM, 1 SOCIAL ROOM & FOYER",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7120482161, -122.457830848)",81,10,1,24
Resident,822036,929 HAYES ST,TRUE,BP ISSUED,10/12/2017 0:00,3,1,0,0,,,,,,ADDITION OF NEW UNIT. CONVERT 1646 SQ FT OF STORAGE TO NEW 1646 SQ FT UNIT. NEW 99 SQ FT PATIO. FLOO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7754873608, -122.43166751)",23,4,11,9
Resident,1529047,5133 GEARY BL,FALSE,BP Filed,8/17/2017 0:00,3,3,0,0,,,,,,COMPLY W/ NOV #106A.4.7. ADD (3) RESIDENTIAL UNITS TO (E) COMMERCIAL SPACES. ADD STAIR ENCLOSURE. AD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7802431504, -122.474610047)",5,8,4,29
Resident,2336026A,345 RIVERA ST,FALSE,BP Filed,8/22/2017 0:00,2,1,0,0,,,,,,LEGALIZE IN LAW APARTMENT ON GROUND FLOOR AS PER ORDINANCE 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7467888693, -122.470201844)",44,10,8,41
Resident,4008002,540 DE HARO ST,TRUE,BP ISSUED,12/27/2017 0:00,17,17,0,0,Fee Payment,,,2014,"The proposed project would demolish an existing two-story (7,147 sq.ft.) industrial building and construct a four-story, 40 feet tall residential building. The existing building on the 10,000 sq.ft. lot was constructed in 1975. The proposed new buildin","ERECT 5-STORY, 17 UNITS, TYPE 5, RESIDENTIAL BUILDING.",0,-7147,0,0,0,0,0,0,0,0,0,0,0,-7147,0,0,0,0,0,0,0,0,0,0,0,KDURANDE,Aaron Schlechter,Aaron Schlechter,988-1080,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7629070779, -122.401732117)",54,2,9,26
Mixres,3754038,1075 &1089 FOLSOM ST,FALSE,BP FILED,2/14/2017 0:00,48,48,0,0,,,,2016-008438PRJ,"The project is to demolish the existing buildings on these two lots to construct a new, 6-story residential building with ground floor commercial space. The new building will be 48 SRO units on 6 floors with 1,480 square feet of commercial space. No au",ERECT 6 STORIES. 48 DWELLING UNIT MIX USE WITH TYPE 1A CONSTRUCTION.,1480,-3220,0,0,0,0,0,0,0,0,0,0,0,-4700,0,1480,1480,0,0,0,0,0,0,0,0,KDURANDE,Jeffer Mangels Butler & Mitchell LL,David Cincotta,415-984-9625,9 - South of Market,6,East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7768890347, -122.407234269)",32,1,10,34
Vacant,4145001,2751 21ST ST,FALSE,BP Filed,3/12/2018 0:00,0,0,0,0,,,,,,INTERIOR T.I. AND CHANGE OF USE FROM DRY CLEANER TO LIMITED KITCHEN INCLUDING (N) PARTITION BETWEEN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7574393556, -122.409892825)",53,3,2,20
Resident,6696001,1 BEMIS ST,TRUE,BP APPROVED,4/2/2018 0:00,2,1,0,0,,,,,,"(N) 3RD FLR ADDITION; BAY WINDOW @ 2ND & 3RD FLRS, (N) REAR DECK & STAIR TO REPLACE (E) INTERIOR REM",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7380860005, -122.42877488)",59,9,5,10
Resident,180017,988 JACKSON ST,FALSE,BP Filed,7/21/2017 0:00,3,0,0,0,,,,2017-002768PRJ,To permit the construction of a penthouse level addition within the 3-unit apartment building.,"TO EXPAND THE TOP FLOOR APARTMENT WITH PENTHOUSE CONSISTING OF THREE BEDROOMS AND TWO BAROOMS. A TOTAL OF 1,100 SQ FT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NFOSTER,MOFO,,4152686249,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7956187176, -122.411264916)",16,6,3,6
Resident,2406012,2463 19TH AV,FALSE,BP Filed,12/15/2017 0:00,2,1,0,0,,,,,,"LEGALIZE 1ST FL AS 2ND UNIT INCLUDING 3 BEDS,3 FULL BATHS,KITCHEN, DINING AND LIVING.REMODEL KITCHEN",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7418722985, -122.475948481)",40,10,7,35
Resident,3555036,1785 15TH ST,TRUE,CONSTRUCTION,10/31/2016 0:00,8,8,0,0,,,,2012,"The proposed projec is the construction of a new 7,941 sf, 8-unit apartment building with no parking. The existing structure on site is to be demolished.
Revised CPE submitted 5/23/14 - Revisions filed to change the unit count from 8 to 9 units and ch","ERECT 5-STORY, TYPE 3, 8 DWELLING UNITS BUILDING.",0,-765,0,0,0,0,0,0,0,0,0,765,0,-765,0,0,0,0,0,0,0,0,0,0,0,JACKSON,,,,8 - Mission,8,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7662063231, -122.42380625)",37,3,5,20
Resident,3754039,1075 FOLSOM ST,FALSE,BP FILED,2/14/2017 0:00,48,48,0,0,,,,2016-008438PRJ,,ERECT 6 STORIES. 48 DWELLING UNIT MIX USE WITH TYPE 1A CONSTRUCTION.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KDURANDE,,,,9 - South of Market,6,East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7769620128, -122.407142713)",32,1,10,34
Resident,151087,1701 JONES ST,FALSE,BP Filed,8/15/2017 0:00,3,1,0,0,,,,,,REMODEL OF (E) BASEMENT STORAGE SPACE ITNO STUDIO UNIT & BATHROOM. (E) GARAGE DOOR TO BE RELOATED &,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7969164813, -122.415417341)",107,6,3,21
Vacant,142005,924 SANSOME STREET,TRUE,PL Approved,3/22/2018 0:00,0,0,0,0,,,,2018-002563PRJ,"Convert the two stories of restaurant and the storage basement into 3 floors of offices, which is a permitted use in the C-2 district. No change to the exterior of the building will be made. Interior demolition work includes removal of non structural wal",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,"Herrczeg and Tobias Architects, Inc",Jerome Tobias,415-590-3230,3 - Northeast,3,Northeast Waterfront,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.799037486, -122.402005696)",77,6,3,8
Mixres,3559008,2238 - 2254 MARKET ST,TRUE,BP ISSUED,12/8/2017 0:00,44,41,5,5,On-site BMR Project,90% AMI;,Rental,2014,"This is a Priority Processing Application for Type 3: LEED Platinum. The project includes a vertical addition of 3-4 floors of residential dwelling units on top of an existing building at 2248-2254 Market Street, which is to be retained. A new construc","CHANGE OF USE. VERTICAL & HORIZONTAL ADDITION TO EXISTING. 5-STORY, 44 DWELLING UNITS WITH COMMERCIAL OVER BASEMENT GARAGE BUILDING.",11146,-7654,0,5573,-3827,0,0,0,0,0,0,0,0,0,9400,5573,-3827,0,0,0,0,0,0,0,0,DWASHING,,,,7 - Central,8,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7645393116, -122.431214642)",38,3,5,5
Resident,7109014,56 LAURA ST,TRUE,BP ISSUED,3/7/2018 0:00,2,1,0,0,,,,,,(N) ADU IN BASEMENT OF (E) SFR AS PER ORD NO 162-15.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7103609771, -122.450660131)",66,9,1,28
Resident,1636025,630 09TH AV,TRUE,BP REINSTATED,4/3/2017 0:00,2,1,0,0,,,,,,CREATE (N) DWELLING UNT IS (E) STORAGE 1ST FL STORAGE SPACE OF (E) 2 STORY SINGLE UNIT COTTAGE. ALL WORK IN (E) BLDE ENVELOPE. NEW UNIT WILL HAVE 1 KITECHN + 1 NEW BATHROOM.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CLARKECO,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.776516717, -122.4668457)",5,8,4,11
Mixres,794028,555 FULTON ST,TRUE,CONSTRUCTION,3/14/2018 0:00,139,139,17,17,On-site BMR Project,90% AMI;,Ownership,2005,"Demolition of existing 2-story industrial and office bldgs. of 19,620 sf with 70 parking spaces. Construct mixed use bldg. of 136 units, 33,000 sf of commercial (grocery store) space on the ground floor, and a maximum of 148 off-street parking spaces (p","TO ERECT 5 STORIES OF 139 DWELLING UNITS, RETAIL, PARKING, STORAGE OFFICE UTILITY, ASSEMBLY",32800,13180,0,0,0,0,0,0,0,0,0,0,0,-19620,0,32800,32800,0,0,0,0,0,0,0,0,MJACINTO,,,,5 - Western Addition,5,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7781680401, -122.42575228)",22,4,11,9
Resident,1188007,1958 GROVE ST,FALSE,BP Filed,9/12/2017 0:00,3,1,0,0,,,,,,(N) ACCESSORY DWELLING (802 SF) INTERIOR @ ALTERATION @ 1ST FL ONLY & (262 SF) ADDITION ON 1ST FL: (,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7748159383, -122.448965883)",24,7,11,18
Resident,1158001,1901 GOLDEN GATE AV,FALSE,BP Filed,8/24/2017 0:00,1,1,0,0,,,,,,"CONVERT SINGLE CAR GARAGE TO 2 BEDROOM, 1 BATH DWELLING UNIT AND ROOF DECK",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7781178173, -122.442172591)",97,7,11,18
Resident,5688040,1 PUTNAM ST,FALSE,BP FILED,5/12/2016 0:00,1,-1,0,0,,,,,,REMOV ILLEGAL UNIT TRIGGERS AVALOS LEGISLATION ORD 33-16 DWELLING UNIT CONSTRUCTED OR INSTALLED WITHOUT PERMIT (REVERT INTERIOR AT LOWER GARAGE LEVEL BACK TO LAST KNOWN LEGAL STATUS (DBI APP #2002-23-03-4390) NOV#201579415- REMOVAL OF ILLEGAL BEDRM BACK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JIMENEZS,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7396702198, -122.410597085)",83,9,2,2
Resident,1702001,1201 48TH AV,TRUE,BP ISSUED,3/23/2018 0:00,2,1,0,0,,,,,,"LEGALIZE (E) DWELLING UNIT AT 1ST FLR CONSISTING OF KITCHEN, LIVING/DINING, BATH & BEDROOM. UNDER OR",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,Western Shoreline,Rest of the City,2018,Q1,2018_Q1,"(37.7639033422, -122.508540091)",39,10,7,35
Resident,4940022,1366 GILMAN AV,FALSE,BP Filed,2/22/2018 0:00,2,1,0,0,,,,,,COMPLY WITH COMPLAINT 201777104. LEGALIZE DWELLING UNIT AT 1ST FLOR PER ORDINANCE #43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7223183164, -122.394804832)",88,2,9,1
Mixres,4287007,HOPE SF POTRERO (CONSTRUCTION),TRUE,CONSTRUCTION,4/13/2018 0:00,72,72,72,72,,50% AMI; 60% AMI;,Rental,2010,"Replace 606 units of public housing with 1,400-1,700 units of mixed-income, mixed-tenure housing, including 1-to1 replacement of public housing. Project will also include neighborhood serving retail, community facilities, parks and open space, and a new","ERECT 5 STORY, 1 BASEMENT, 72 UNITS, 100% AFFORDABLE HOUSING, LOCATED ON TWO LOTS, 001A & 007.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MSNYDER,,,,10 - South Bayshore,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7520170655, -122.395965762)",54,2,9,1
Vacant,838024,265 OAK ST,FALSE,PL Filed,10/2/2017 0:00,0,0,0,0,,,,2017-012887PRJ,Variance from the rear yard requirement to permit the demolition of the one story rear portion of the exsisting structure and new construction of a 40-foot tall single family home fronting lily street,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SADINA,"Reuben, Junius & Rose LLP",,4155679000,6 - Buena Vista,5,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7746327241, -122.423568565)",26,4,11,9
Resident,1598022A,4542 CABRILLO ST,FALSE,BP Filed,3/8/2018 0:00,3,1,0,0,,,,,,PROPOSED TO LEGALIZED DWELLING UNIT AT 1ST FL COMPLY WITH ORDINANCE 43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,Western Shoreline,Rest of the City,2018,Q1,2018_Q1,"(37.7735636774, -122.507603794)",8,8,4,29
Vacant,118044,717 UNION ST,FALSE,PL Filed,10/10/2017 0:00,0,0,0,0,,,,2017-012971PRJ,Variance from the rear yard requirement to permit the conversion of an existing garage into two(2) accessory dwelling units.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SADINA,Barker Wagoner Architects,,6503254504,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7999426972, -122.411193258)",107,6,3,6
Resident,777005,1100 FULTON ST,FALSE,BP Filed,1/26/2017 0:00,18,6,0,0,,,,2017-001456PRJ,CONVERT 11 GARAGE SPACES & 1015 SF OF STORAGE INTO 6 NEW ACCESSORY DWELLING UNITS PER ORDINANCE NO# 162-16. REFER TO PA# 2017/01/13/7203 FOR SOFT STORY RETROFIT.,CONVERT 11 GARAGE SPACES & 1015 SF OF STORAGE INTO 6 NEW ACCESSORY DWELLING UNITS PER ORDINANCE NO# 162-16. REFER TO PA# 2017/01/13/7203 FOR SOFT STORY RETROFIT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CALEXAND,,"NAM INVESTMENTS, LP",,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7774962071, -122.435106703)",23,4,11,39
Resident,4108017,901 TENNESSEE ST,TRUE,CONSTRUCTION,1/19/2018 0:00,44,44,6,6,On-site BMR Project,55% AMI;,Ownership,2013,"The proposed project would include demolition of an existing one-story warehouse and construction of a new four-story, residential building. The building shall consist of four residential levels with 39 units, over basement level with parking and mechan","TO ERECT A TYPE 5, 4 STORIES, 1 BASEMENT, 44 RESIDENTIAL UNIT BUILDING.
** MAHER: DISTURBANCE OF AT LEAST 50 CU.YD OF SOIL; ROUTE TO DPH **",0,-9000,0,0,0,0,0,0,0,0,0,0,0,-9000,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,William Mollard,William Mollard,409-9267,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.760227212, -122.389153809)",55,2,9,26
Resident,4158066,2109 22ND ST,FALSE,BP Filed,8/21/2017 0:00,4,2,0,0,,,,,,HORIZONTAL & VERTICAL ADDITION. REMODEL & ADDIITON TO EXISTING 2 UNIT DWELLINGS. INCL (N) 2 NEW DWEL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7569154037, -122.402085483)",54,2,9,26
Vacant,163026,447 BROADWAY,FALSE,PL Filed,3/20/2018 0:00,0,0,0,0,,,,2018-003920PRJ,Conditional Use Authorization application to permit the change of use from a parking structure to a general entertainment facility d.b.a. Escape SF.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MLUELLEN,"Architect SF, Inc",,4155194934,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7978049139, -122.404746963)",106,6,3,23
Resident,6976004E,158 HOWTH ST,FALSE,BP Filed,3/23/2018 0:00,2,1,0,0,,,,,,"ORDINANCE #162-16. ADDITION OF ADU @ GROUND FLOOR OF MAIN BUILDING (700 SQ FT) (2)BEDROOS, (1)BATH.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7214668398, -122.450821226)",81,10,1,24
Resident,4160009,952 CAROLINA ST,FALSE,BP Filed,10/19/2017 0:00,2,2,0,0,,,,,,"ERECT (N) 2-UNIT, 4-STORY RESIDENCE",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7565481406, -122.400151409)",54,2,9,26
Resident,2657021,35 HATTIE ST,FALSE,BP Filed,1/11/2018 0:00,2,2,0,0,,,,,,"TO ERECT A TYPE V 3-STORY, NO BASEMENT, TWO FAMILY DWELLING UNIT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7612125321, -122.440777495)",115,7,5,5
Vacant,3517038,250 10TH ST,TRUE,BP APPROVED,3/27/2018 0:00,0,0,0,0,,,,,,ERECT (N) 3-STORY SCHOOL/OFFICE BUILDING. BUILDING IS ON 2 LOTS. SEE WAI FONG FOR ADDRESS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.773190022, -122.413705498)",32,1,10,34
Vacant,161001,1143 GRANT AVE,TRUE,PL Approved,9/21/2017 0:00,0,0,0,0,,,,2017-004807PRJ,"Conditional Use Authorization to permit the use of a 3,800 SF commercial space d.b.a CTBC Bank USA.",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,6503476014,3 - Northeast,3,Chinatown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7974880987, -122.407242986)",104,6,3,6
Resident,2993028,400 LANSDALE AV,TRUE,BP ISSUED,3/14/2018 0:00,2,1,0,0,,,,,,"ADU @ (E) BASEMENT, RECONFIGURE LOWER BASEMENT & GARAGE, REPLACE REAR DECK IN KIND, INTERIOR KITCHEN",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7359697076, -122.457344871)",117,9,8,41
Mixres,3741031,75 HOWARD ST,TRUE,BP ISSUED,10/25/2017 0:00,120,120,0,0,Fee Payment,,,2011,Proposes to demolish the existing 8 -story parking garage (containing 550 parking spaces). The project would construct a residential bldg. containing 175 residential units and a below-grade parking garage. The parking garage would contain accessory parki,"TO ERECT 21 STORIES, 2 BASEMENTS, 120 DWELLING UNITS WITH COMMERCIAL.
** MAHER: DISTURBANCE OF AT LEAST 50 CU. YD. OF SOIL. ROUTE TO DPH **",4908,4908,0,0,0,0,0,0,0,0,0,0,0,0,0,4908,4908,0,0,0,0,0,0,0,0,TCHANG,Jim Abrams,Jim Abrams,415 393 8370,9 - South of Market,6,Downtown; Downtown Streetscape Plan; Transit Center District; Transit Center District Streetscape Plan,Transit Center District,2018,Q1,2018_Q1,"(37.7915578776, -122.391671499)",108,1,10,8
Resident,2822024,23 MIDCREST WY,FALSE,BP Filed,7/28/2017 0:00,1,1,0,0,,,,,,"ERECT 3-STORY, TYPE 5, NO BASEMENT, SINGLE FAMILY DWELLING BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7472581675, -122.449851666)",48,7,8,38
Resident,530037,1863 FILBERT ST,FALSE,BP Filed,10/3/2017 0:00,1,1,0,0,,,,,,PER UNIT LEGALIZATION ORDINANCE# 43-14. LEGALIZE REAR BUILDING FROM COTTAGE TO SINGLE HOUSE WITH 2 B,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.79844882, -122.430060629)",15,4,6,13
Mixres,9900048,PIER 48 / SEAWALL LOT 337,FALSE,PL FILED,4/23/2013 0:00,1327,1327,526,526,,,,2013,"The proposed project is the development of Seawall Lot 337 and Pier 48 (i.e. Mission Rock), which will include a mixed-use development, including open space, commercial, residential, retail and parking. The project would include approximately 3,600,000 s",,1950000,1950000,0,0,0,0,0,0,0,1700000,1700000,0,0,0,0,250000,250000,0,0,0,0,0,0,0,0,TSHEYNER,Jon Knorpp,Jon Knorpp,972-1760,9 - South of Market,6,,Port of San Francisco,2018,Q1,2018_Q1,"(37.7757037626, -122.386135112)",34,1,10,4
Resident,518018,1972 FILBERT ST,FALSE,BP Filed,10/27/2017 0:00,4,2,0,0,,,,,,REAR BLDG: ADD TWO DWELLING UNITS PER ORDINANCE 162-16.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7987852628, -122.431925864)",15,4,6,13
Resident,0848002E,663 PAGE ST,FALSE,BP Filed,10/17/2017 0:00,3,1,0,0,,,,,,ADD A UNIT @ BASEMENT LEVEL & 1ST FLOOR. ADD ROOF DECK WITH NO STAIR PENTHOUSE. INTERIOR REMODEL & A,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,5,Lower Haight Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7726883748, -122.431539132)",26,4,11,9
Resident,7029002B,43 RESTANI WY,FALSE,BP Filed,1/9/2018 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION ORD 43-14. LEGALIZE (E) KITCHEN AND CONSTRUCT (N) HALLWAY AND (N) UNIT 2. ALL WORK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7177308101, -122.443635277)",80,9,1,28
Resident,3732096,415-417 TEHAMA ST,FALSE,BP Filed,9/11/2017 0:00,8,0,0,0,,,,2017-016278PRJ,"PER ADU ORDINANCE NO. 162-16, ALTERATIONS FOR DWELLING UNIT LEGALIZATION (415-C & 415-D) W/ ACCESSORY DWELLING UNIT PROCESS. FIRE SPRINKLERS THROUGHOUT 1ST FLOOR UNDER SEPARATE PERMIT.","PER ADU ORDINANCE NO. 162-16, ALTERATIONS FOR DWELLING UNIT LEGALIZATION (415-C & 415-D) W/ ACCESSORY DWELLING UNIT PROCESS. FIRE SPRINKLERS THROUGHOUT 1ST FLOOR UNDER SEPARATE PERMIT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ESAMONSK,,TEHAMA SF LIMITED PARTNERSHIP,,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7806050118, -122.404703538)",32,1,10,34
Resident,2087034,1922 48TH AV,FALSE,BP Filed,10/5/2017 0:00,2,1,0,0,,,,,,PER UNIT LEGALIZATION ORDINANCE# 43-14. LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT PERMIT. LEGA,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7505325625, -122.507052374)",39,10,7,35
Mixres,8715004,MISSION BAY BLOCK 1 (RESIDENTIAL) CHANNEL,TRUE,CONSTRUCTION,3/28/2018 0:00,152,152,0,0,,,,,"The project consists of construction of up to 350 residential units, a 250-room hotel and approximately 25,000 square feet of ground floor retail. The site will be subdivided in connection with the Project.","TO ERECT 6 STORIES, 1 BASEMENT, 152 RESIDENTIAL APARTMENT, OFFICE, RETAIL & PARKING BUILDING.
** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 REQUIRED **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Mission Bay,Mission Bay,2018,Q1,2018_Q1,"(37.7750508794, -122.390643394)",34,1,10,4
Resident,1765035,1326 11TH AVE,FALSE,BP Filed,7/11/2017 0:00,2,0,0,0,,,,2018-003916PRJ,"Conditional Use Authorization request to legalize bathroom on ground floor, eliminate street access and merge 1st and 2nd floor units.","COMPLY W/ NOV 201318211, #201385673 #201780381, #201783091. REMOVE 3RD STORY SUNROOM & REVERT BACK TO APPROVED DECK PER BLDG PERMIT #200204184333 & REMOVE UNPERMITTED ATTACHED DECK ON 3RD & 2ND FL THAT EXTENDS APPROX 7' INTO THE REAR YARD IN COMPLIANCE",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MDITO,,,4155174448,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7634030806, -122.468084239)",109,10,11,14
Mixres,4060001,888 TENNESSEE ST,TRUE,PL Approved,10/19/2017 0:00,128,128,16,16,,,,2013,"The proposed project is the demolition of an existing two-story building and construction of two four-story residential-over-retail building containing 110 dwelling units, 2,155 sq.ft. of retail use, and 10,073 sq.ft. of courtyard open space. The projec",,3784,-34736,0,0,0,0,0,0,0,0,0,0,0,-38520,0,3784,3784,0,0,0,0,0,0,0,0,RSUCRE,Andrew Junius,Andrew Junius,415 567 9000,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7607662655, -122.389984668)",55,2,9,26
Resident,1470022,476 39TH AV,FALSE,BP Filed,5/25/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION PER ORD #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7799508756, -122.499441072)",8,8,4,29
Resident,1622002,619 22ND AV,FALSE,BP Filed,3/15/2018 0:00,2,1,0,0,,,,,,HORIZONTAL & VERTICAL ADDITION @ REAR YARD OF (E) 2 STORIES SINGLE FAMILY HOME TO ADD NEW UNIT W/ 3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.776014684, -122.48154621)",8,8,4,29
Resident,4991024,EXECUTIVE PARK - UPC,TRUE,BP FILED,12/20/2017 0:00,1110,1110,0,0,,,,1990,,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Executive Park; Bayview Hunters Point,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7086013558, -122.394049813)",79,2,9,1
Resident,1256042,1308 MASONIC AVE,FALSE,BP Filed,12/29/2016 0:00,5,0,0,0,,,,2017-000218PRJ,"ADDITION OF NEW UNIT PER ORD 162-16. 1 KITCHEN, 2 BEDROOM, 2 BATHROOMS, 1 LIVING ROOM, 1 OFFICE, 1 MEDIA ROOM.","ADDITION OF NEW UNIT PER ORD 162-16. 1 KITCHEN, 2 BEDROOM, 2 BATHROOMS, 1 LIVING ROOM, 1 OFFICE, 1 MEDIA ROOM.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SADINA,,,4156038460,6 - Buena Vista,5,Haight Ashbury Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7690292365, -122.444749045)",112,7,11,3
Vacant,6597029,663-665 SAN JOSE AVE,TRUE,PL Approved,8/7/2017 0:00,0,0,0,0,,,,2017-005198PRJ,Conditional Use Authorization to permit the change of use from an existing mixed-use building to a day care within a RH-2 district.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,Red Dot Studio,,4155150614,11 - Bernal Heights,8,Mission District Streetscape Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7448290817, -122.422026926)",83,9,5,2
Resident,3085022,715 MANGELS AV,FALSE,BP Filed,12/11/2017 0:00,2,1,0,0,,,,,,"TO LEGALIZE GROUND FLR UNIT PER ORD 43-14. TO ADD A 2ND UNIT CONSITING OF KITCHEN, (3) BDRMS AND (2)",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7328068973, -122.453724424)",70,9,8,41
Resident,3615031B,3173 21ST ST,FALSE,BP Filed,2/13/2018 0:00,3,0,0,0,,,,,,CONVERT EXISTING GARAGE AREA TO A (N) RETAIL STORE AT 1ST FLR. ELECT & MECH & SPRINKLERS DESIGN UNDE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.756896594, -122.418261994)",53,3,2,20
Resident,1306017,178 SEACLIFF AV,FALSE,BP Filed,10/23/2017 0:00,1,1,0,0,,,,,,"TO ERECT 3 STORIES, 1 BASEMENT, TYPE V-B, SINGLE FAMILY RESIDENCE.
** MAHER: EXEMPTED - SEE APPROVED",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7890184115, -122.487909395)",1,8,6,33
Mixres,836001,1540 MARKET ST,FALSE,BP Filed,12/9/2016 0:00,300,300,0,0,,,,2009,"Demolition of all existing structures on site including a 3-story, 2,750sf commercial building, a 4-story, 48,225sf commercial building, and a surface parking lot with 47 spaces, and new construction of a 304-unit, 40-story residential tower (400 feet ta",ERECT 40 STORIES OF 300 DWELLING UNIT MIX USE TYPE ONE CONTRATION.,3120,-46005,0,0,0,0,0,0,0,0,-48225,0,0,0,0,3120,2220,0,0,0,0,0,0,0,0,TCHANG,,,,6 - Buena Vista,5,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7752460892, -122.419536288)",21,4,11,9
Resident,5723042,609 MOULTRIE ST,FALSE,BP Filed,9/5/2017 0:00,1,1,0,0,,,,2017-011781PRJ,New construction of a 3-story SFH on an existing vacant lot.,TOERECT A THREE STORY TYPE VB SINGLE FAMILY DWELLING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,LIAJELLO,architect mason kirby,,4158675357,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7370157102, -122.415782237)",83,9,2,2
Mixres,3532005,1726 - 1730 MISSION ST,FALSE,BP FILED,12/19/2017 0:00,40,40,7,7,BMR Ownership,,,2014-002026PRJ,"Demolition of an existing vacant two (2) story industrial building. New construction of a six (6) story, 68 ft tall mixed-use building. Including: ground floor commercial space, an at-grade 29 car parking garage and 36 dwelling units on five (5) storie",,900,-7299,0,0,0,0,0,0,0,0,0,8199,0,-8199,0,900,900,0,0,0,0,0,0,0,0,AHUISMAN,"Reuben, Junius & Rose, LLP",,4155679000,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7693593035, -122.42039943)",53,3,2,20
Vacant,3761062,HSH - Navigation Center - 5th & Bry,TRUE,PL Approved,12/20/2017 0:00,0,0,0,0,,,,2017-015682PRJ,"Change of use from the existing vacant area to an 88 bed Navigation Center facility. The Navigation Center will
include mobile trailers to provide dormitories, restrooms/showers, client laundry, staff offices,
dining/kitchen areas and open outdoor space",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,CCSF - Real Estate Division,Marta Bayol,415-554-9865,9 - South of Market,6,Central SoMa; Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7786388775, -122.400437816)",32,1,10,34
Mixres,166003,240 - 290 PACIFIC AV,TRUE,CONSTRUCTION,4/13/2018 0:00,33,33,0,0,Fee Payment,,,2013,"The project site consists of three adjacent lots fronting both Battery Street and Pacific Avenue, which total 11,680 sf. The site is currently improved with surface parking lots and a single-story commercial sturcture. The project would demolish the exis","Site permit: TO ERECT 7 STORIES, 1 BASEMENT, 33 UNITS RESIDENTIAL, RETAIL, PARKING & LOBBY.
** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 REQUIRED; ROUTE TO DPH **",2018,625,0,0,0,0,0,0,0,0,0,0,0,0,0,2018,625,0,0,0,0,0,0,0,0,TCHANG,Andrew Junius,Andrew Junius,567-9000,3 - Northeast,3,Northeast Waterfront,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7978697252, -122.400451523)",77,6,3,8
Resident,1524020,2942 ANZA ST,FALSE,BP Filed,10/4/2017 0:00,3,1,0,0,,,,,,"LEGALIZE UNIT (UNIT C) ON 1ST FLOOR W/ (1) BEDROOM, (1) MEDIA ROOM, (1) STORAGE, KITCHEN, LIVING ROO",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7786191445, -122.480069376)",8,8,4,29
Mixres,714016,1001 VAN NESS AV,TRUE,BP FILED,10/21/2016 0:00,239,239,0,0,Fee Payment,,,2014,Demolition of existing commercial office buiding and construction of a new mixed-use (multi-family residential over retail) building.,"ERECT 14-STORY, 1 BASEMENT, TYPE 1-A, 239 DWELLING UNITS RESIDENTIAL, RETAIL, PARKING BUILDING.",5151,-84347,0,0,0,0,0,0,89498,0,-89498,0,0,0,0,5151,5151,0,0,0,0,0,0,0,0,AA CONV,,,,5 - Western Addition,5,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7849297535, -122.421910845)",100,4,11,39
Resident,7105017,304 ORIZABA AV,FALSE,BP Filed,4/28/2017 0:00,2,1,0,0,,,,,,LEGALIZE 2ND DWELLING UNIT ON GROUND FL OF (E) SINGLE FAMILY DWELLING UNIT PER UNIT LEGALIZATION ORD,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7146651673, -122.462448567)",81,10,1,24
Resident,41017,73 VANDEWATER ST,FALSE,BP Filed,10/19/2017 0:00,3,1,0,0,,,,,,LEGALIZE UNIT PER ORDINANCE 43-14. LEGALIZATION AND REMODEL OF(E) ILLEGAL GROUND FLOOR RESIDENTIAL U,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8050817959, -122.413024294)",106,6,3,23
Resident,7541018,46 DIGBY ST,FALSE,BP Filed,5/8/2017 0:00,2,1,0,0,,,,,,ADD UNIT PER ORD 162-16. CONVERT AN EXISTING SPACE INTO AN AUXILLARY DWELLING UNIT. REMOVE & REPLACE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7397641004, -122.432377264)",59,9,5,10
Resident,1836015,1446 18TH AV,FALSE,BP Filed,7/21/2017 0:00,3,1,0,0,,,,,,"ADDITION OF (1) NEW UNIT PER ORD 162-16. (1) LIVING RM, (1) BDRM, (1) BATHROOM.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7608634602, -122.475534761)",109,10,8,14
Resident,7266003,119 RIVERTON DR,FALSE,BP Filed,7/19/2017 0:00,2,1,0,0,,,,,,"UNIT LEGALIZATION PER ORDINANCE# 43-14 @ 1ST FLOOR. 2 BEDROOMS, 1 BATH, 1 KITCHEN & LIVING ROOM.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7318500731, -122.487396492)",62,10,8,35
Mixres,3505001,1601 - 1637 MARKET ST / 53 COLTON ST,TRUE,PL Approved,10/20/2017 0:00,584,584,107,107,,,,2015-005848PRJ,"The proposed project is redevelopment of site for a mixed-use, mixed-income project, including a supportive affordable housing building. New units include 107 affordable, supportive housing efficiency units. ""Other"" use is the Local 38 Plumbers Union hal",,36571,36571,0,0,0,0,0,0,0,27296,27296,0,0,0,0,9275,9275,0,0,0,0,0,0,0,0,VBYRD,"Strada Brady, LLC",,4152724387,8 - Mission,6,The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7738914636, -122.42002993)",32,1,10,20
Resident,4031028,650 DE HARO ST,FALSE,BP Filed,1/5/2018 0:00,2,1,0,0,,,,,,"LEGALIZE (E) 400 SF DWELLING UNIT AT 650A DE HARO ST(REAR BUILDING, LOWER UNIT) PER ORDINANCE 43-14.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7615918468, -122.401630418)",54,2,9,26
Mixed,5284A008,749 Toland Street & 2000 McKinnon A,FALSE,PL Filed,12/12/2017 0:00,0,0,0,0,,,,2015-012491PRJ,Four buildings are proposed on the two lots with a truck court between the four structures. Buildings A & B are 4-story structures providing 28' clear dock high industrial space. this industrial space contains a partial level of office located above the,,664670,215535,0,0,0,0,0,0,0,152971,152971,0,511699,62564,0,0,0,0,0,0,0,0,0,0,0,,,"Brian Liles, AIA",415-621-1799,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.742295888, -122.398919735)",85,2,9,1
Resident,6971A040,96 SEMINOLE AV,FALSE,BP Filed,10/20/2017 0:00,2,1,0,0,,,,,,ADDITION OF DWELLING UNIT PER ORDINANCE #162-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7195939923, -122.445255977)",80,9,1,28
Resident,4167013,1395 22ND ST,TRUE,CONSTRUCTION,4/12/2018 0:00,256,256,0,0,Fee Payment,,,,,"TO ERECT 8 STORIES, 1 BASEMENT, 256 RESIDNETIAL, INDUSTRIAL BUILDING.
(R-2,A-3,F-1,S-2)
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7569752247, -122.394747916)",54,2,9,26
Resident,2196020,2187 21ST AV,FALSE,BP Filed,7/10/2017 0:00,2,1,0,0,,,,,,"TO LEGALIZE ONE BEDROOM, ONE BATHROOM, T.V. ROOM AND DINING ROOM WITH KITCHEN ON FIRST FLOOR. ORDIAN",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7469571006, -122.478399698)",40,10,7,35
Mixres,3721013,524 HOWARD ST,TRUE,PL APPROVED,12/7/2015 0:00,334,334,50,50,On-site BMR Project,55% AMI;,Rental,2013,"The proposed project is to replace the existing surface parking lot at 524 Howard Street (Block 3721, Lot 013) with a 48-story, 495-foot tall residential tower with 300,052 square feet of residential uses over 1,470 square feet of ground floor retail use",,7800,7800,0,0,0,0,0,0,0,0,0,0,0,0,0,7800,7800,0,0,0,0,0,0,0,0,AA CONV,,,,4 - Downtown,6,Downtown; Downtown Streetscape Plan; Transbay; Transit Center District; Transit Center District Streetscape Plan,Transit Center District,2018,Q1,2018_Q1,"(37.7882232129, -122.397017413)",32,1,10,8
Resident,2192002K,2151 25TH AV,FALSE,BP Filed,4/27/2017 0:00,2,1,0,0,,,,,,TO LEGALIZE THE ILLEGAL UNIT BEHIND GARAGE TO COMPLY WITH VIOLATION# 201762521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7473830009, -122.482773706)",40,10,7,35
Vacant,5559002,125 BAYSHORE BLVD,FALSE,PL Filed,1/11/2018 0:00,0,0,0,0,,,,2018-000811PRJ,"Proposed project is a temporary Navigation Center homeless shelter. The project involves interior tenant improvements within the existing warehouse building to create an insulated, conditioned dormitory space, and associated improvements to provide natur",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,San Francisco Public Works,,4155574704,10 - South Bayshore,10,Bayshore Boulevard; Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7465112692, -122.403276859)",85,2,9,1
Resident,2755028,3678 MARKET ST,FALSE,BP Filed,6/26/2017 0:00,5,5,0,0,,,,,,"TO ERECT 4 STORIES, NO BASEMENT, TYPE V-A, 5 UNITS MULTI FAMILY BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7550254025, -122.441868225)",47,7,5,38
Resident,4224015,1004 MISSISSIPPI ST,TRUE,BP ISSUED,4/22/2016 0:00,28,28,3,3,On-site BMR Project,90% AMI;,Ownership,2006,"Construct 28 dwelling units and 28 parking spaces in an underground garage on a vacant lot. The building would be approximately 57,974 sq. ft. and approxomately 40 feet in height.","ERECT 4 STORIES, 28 UNITS, 3 BASEMENTS, RESIDENTIAL CONDOMINIUM BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AHOLLIST,John Conomos,Bruce Baumann,415-551-7884,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7536194639, -122.394041824)",54,2,9,26
Vacant,1457039,2421 CLEMENT ST,FALSE,PL Filed,3/5/2018 0:00,0,0,0,0,,,,2018-003141PRJ,Conditional Use Authorization for change of use from existing office space to new retail space Ice Cream Shop.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DGANETSO,Zone Design Development,,4153776694,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7817532509, -122.485299866)",8,8,4,29
Resident,1406030,362 28TH AV,FALSE,BP Filed,7/5/2017 0:00,2,1,0,0,,,,,,HORIZONTAL REAR ADDITION & 2 STORY VERTICAL ADDITION TO AN (E) SINGLE FAMILY HOME WITH PARKING FOR 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7825809892, -122.487807081)",8,8,4,29
Vacant,5231004,1995 EVANS AV,FALSE,BP Filed,12/21/2017 0:00,0,0,0,0,,,,,,ERECT A THREE STORY TYPE II-A FULL SPRINKLER OFFICD/COMMERCIAL BUILDING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7467134325, -122.395917797)",85,2,9,1
Resident,6016005,234 LISBON ST,FALSE,BP Filed,2/9/2018 0:00,2,1,0,0,,,,,,"RENOVATION OF (E) PORTION OF GARAGE TO ADD ACCESSORY DWELLING UNIT OF 497 SF, INCLUDING KITCHEN & BA",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7246556118, -122.43193681)",90,9,1,7
Mixres,814001,150 VAN NESS AV,TRUE,CONSTRUCTION,4/3/2018 0:00,431,431,50,50,On-site BMR Project,55% AMI;,Rental,2013,"The proposed project is a 13 story, 429 unit residential bldg. on Hayes Street between Van Ness Avenue and Polk Street. The project would contain 512,010 gsf, including 410,760 sf of residential, 90,600 of subsurface parking and 9,000 sf of retail on the","ERECT 13 STORIES ,431 DWELLING UNITS.",9000,-127558,0,0,0,0,0,0,0,0,-136558,0,0,0,0,9000,9000,0,0,0,0,0,0,0,0,GMOSQUER,Marc Babsin,Marc Babsin,415-489-1313,4 - Downtown,6,Downtown; The Market Street Hub Project; Market and Octavia; Civic Center Public Realm Plan; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7773006572, -122.418295447)",21,4,10,36
Mixres,4005001B,1601 - 1677 MARIPOSA ST / 485 CAROLINA,TRUE,CONSTRUCTION,4/3/2018 0:00,154,154,64,64,,50% AMI;,,2012,"The proposed project would involve demolition of an existing 1-story industrial buildings and bus repair shop and the construction of a new mixed-use project with 316 dwelling-units, 8,823 sf ft. of commercial space, and 261 off-street parking spaces.","TO ERECT 4 STORIES, 1 BASEMENT, TYPE VA & IA, 154 UNITS RESIDENTIAL WITH COMMERCIAL & PARKING.
",9555,-65141,0,0,0,0,0,0,8000,0,-8000,66696,3962,-62734,0,5593,5593,0,0,0,0,0,0,0,0,CTOWNES,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7629330732, -122.398991529)",54,2,9,26
Resident,187010,1440 WASHINGTON ST,FALSE,BP Filed,2/16/2016 0:00,24,1,0,0,,,,2016-002422PRJ,"NEW DWELLING UNIT PER ORD NO. 30-15. 2 BEDROOM, 1 BATH AT (E) SHELL SPACE AT REAR OF BLDG. SOFT STORY PERMIT#201510089204. ** MAHER: DISBURBANCE OF AT LEAST 50 CU. YD. OF SOIL. ROUTE TO DPH **","NEW DWELLING UNIT PER ORD NO. 30-15. 2 BEDROOM, 1 BATH AT (E) SHELL SPACE AT REAR OF BLDG. SOFT STORY PERMIT#201510089204.
** MAHER: DISBURBANCE OF AT LEAST 50 CU. YD. OF SOIL. ROUTE TO DPH **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SJIMENEZ,,WASHINGTON MEWS LP,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7940449276, -122.417122439)",16,6,3,32
Resident,1734023,1268 17TH AV,FALSE,BP Filed,10/27/2017 0:00,3,2,0,0,,,,,,"HORIZONTAL/VERTICAL EXTENSION, REMOVE REAR YARD UNIT AND RELOCATE TO FRONT BUILDING, ADD TWO UNITS.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7641610944, -122.474691395)",109,10,11,14
Resident,1798053,1310 44TH AV,FALSE,BP Filed,1/26/2018 0:00,2,1,0,0,,,,,,LEGALIZE UNPERMITTED UNIT ON THE GROUND FLR PER ORD 43-14: 1 HR FIRE RATED CEILING BETWEEN NEW UNIT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7621094549, -122.503653952)",39,10,7,35
Resident,1170024,2527 MCALLISTER ST,FALSE,BP Filed,6/15/2017 0:00,2,1,0,0,,,,,,CONVERT 1ST FLOOR STORAGE AREA TO 2ND UNIT. CREATE NEW 3RD FLOOR WITH MASTER BEDROOM & BATH AND 2ND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7753891367, -122.45416082)",12,7,4,18
Resident,6562037,4211 26TH ST,FALSE,BP Filed,1/9/2018 0:00,2,0,0,0,,,,2018-001088PRJ,"TO DEMOLISH 2 STORY, SINGLE FAMILY BUILDING and TO ERECT 3 STORIES, 1 BASEMENT, TYPE V-B, 2 UNITS RESIDENTIAL BUILDING.","TO ERECT 3 STORIES, 1 BASEMENT, TYPE V-B, 2 UNITS RESIDENTIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GPANTOJA,"ISO ideas, Inc.",,415-766-7908,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7478297425, -122.434111724)",84,3,5,22
Mixres,4022001,2000 - 2070 BRYANT ST,TRUE,CONSTRUCTION,3/15/2018 0:00,194,194,3,3,On-site BMR Project; Land Dedication,90% AMI;,Rental,2013,"The proposed project is the demolition of the 50,000 sf warehouse building at 2070 Bryant Street and construction of a new 6-story residential building with garage parking using conventional parking and parking stackers. The proposed project would constr","ERECT 6-STORY, TYPE 3A OVER 1A, 276 DWELLING UNITS RESIDENTIAL/RETAIL BUILDING.",17536,-18084,0,0,0,0,0,0,3540,0,-3540,56160,12184,-13976,5920,5352,-568,0,0,0,0,0,0,0,0,RSUCRE,Nick Podell,Linsey Perlov,415-296-8800,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7614995379, -122.41058133)",53,3,2,20
Resident,5888019,78 STONEYBROOK AV,FALSE,BP Filed,3/29/2018 0:00,2,1,0,0,,,,,,LEGALIZE UNPERMITTED INTERIOR REMODELING ON THE 1ST FL. ORD #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7295664419, -122.422473441)",94,9,1,7
Resident,4271017A,3060 26TH ST,FALSE,BP Filed,10/20/2017 0:00,2,1,0,0,,,,,,ADDITION OF ADU- ACCESORY DWELLING UNIT IN (E) STORAGE/GARAGE ON GROUND LVL. ADD SHOWER TO 2ND LEVEL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7495908586, -122.411048372)",53,3,2,20
Resident,6087038,566 MADRID ST,FALSE,BP Filed,4/20/2017 0:00,2,1,0,0,,,,,,"LEGALIZE 2ND DWELLING UNIT PER ORDINANCE# 43-14: ADD (N) KITCHEN, (N) STAIR TO BASEMENT. COMPLY WIT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7206949251, -122.433849105)",90,9,1,7
Resident,3580030,461-465 SANCHEZ STREET,FALSE,BP Filed,8/2/2017 0:00,7,1,0,0,,,,2017-008919PRJ,Variance request from the exposure requirement to permit the addition of a new ADU at the rear of an existing 6-unit building.,ADDITION OF NEW ADU ON GROUND FLOOR IN REAR OF BLDG. NO EXPANSION OF BUILDING FOOTPRINT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CCAMPBEL,Palter / Donzelli Design,,4152157808,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7617629717, -122.430323225)",37,3,5,5
Vacant,313017,120 STOCKTON ST aka 50 O'FARRELL ST,FALSE,PL Filed,10/5/2017 0:00,0,0,0,0,,,,2016-016161PRJ,"Conversion of a primarily single-tenant retail building into a multi-tenant building and alteration of the existing exterior facades, incl. small, approx. 3,500 sf addition at the roof top. Floors 1-3 and the basement level will continue as retail areas,",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ETUFFY,"Reuben, Junius & Rose, LLP",Tuija Catalano,4155679000,4 - Downtown,3,Downtown; Downtown Streetscape Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7869796736, -122.405953356)",19,6,3,8
Resident,5521025,295 COSO AV,FALSE,BP Filed,1/22/2018 0:00,2,1,0,0,,,,,,"UNIT LEGALIZATION PER ORDINANCE 43-14. (N) HIGH EFFICIANCY KITCHEN LIGHTING, (N) BICYCLE PARKING, (N",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.74520384, -122.415654665)",83,9,2,2
Resident,6612020,468 VALLEY ST,FALSE,BP Filed,2/7/2018 0:00,2,1,0,0,,,,2018-000532PRJ,"Two story addition to existing , 2-story, 29'1"" tall, singly family home. Proposed project would consist of 2 units and be approximately 39'11 feet tall and 4,557 square foot building.","CONVERT (E) 2 STORY, 1 UNIT DWELLING INTO (N) 4 STORY, 2 UNIT DWELLING WITH 4TH FL SET BACK 26'-4"" F",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,SIA Consulting Corp.,Leanne,415-741-1292,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7443819587, -122.43269547)",84,9,5,22
Vacant,4094006,830 RHODE ISLAND ST,FALSE,PL Filed,12/12/2017 0:00,0,0,0,0,,,,2017-015810PRJ,"Demolition of an existing single family home and construction of a new 2-unit building. Proposed building will be 4 stories, approximately 5939 square feet and contain two units.",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,MA CHARLES,9178370015,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7591894035, -122.402346998)",54,2,9,26
Resident,7212004A,3075 25TH AV,FALSE,BP Filed,3/13/2018 0:00,2,1,0,0,,,,,,"CONVERT (E) GARAGE SPACE TO HAVE A (N) ADU W/ 2 BEDRMS. 2 FULL BATHES, A KITCHEN AND LIVING/DINING A",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7313876759, -122.481186263)",62,10,8,35
Resident,6129032,701 DARTMOUTH ST,FALSE,BP Filed,4/11/2017 0:00,1,1,0,0,,,,,,"TO ERECT 3 STORIES , NO BASEMENT, TYPE VB, SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7219182255, -122.40974163)",91,2,2,25
Mixres,4110008A,PIER 70,TRUE,PL APPROVED,8/24/2017 0:00,2150,2150,600,600,,,,2014-001272PRJ,"The proposed project would involve development of a 28-acre site into a mixed-use development, including parks, roads, and infrastructure. Below is a breakdown of the use types of the pier 70-waterfront site development.
Residential ? Development of a",,1620250,1274650,0,0,0,0,0,0,0,1102250,1102250,345600,50000,-295600,0,468000,468000,0,0,0,0,0,0,0,0,ACONTRER,Jack Sylvan,Forest City Development California,415)(,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7585690854, -122.386880992)",56,2,9,26
Vacant,3561010,262 NOE ST,FALSE,BP Filed,7/27/2017 0:00,0,0,0,0,,,,,,ADMINISTRATIVE CHANGE OF USE FROM VACANT LAUNDROMAT TO NEW MEDICAL CANNABIS DISPENSORY.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,8,,Market & Octavia,2018,Q1,2018_Q1,"(37.76475746, -122.433466679)",28,7,5,5
Resident,503021,1463 LOMBARD ST,TRUE,CONSTRUCTION,12/18/2017 0:00,14,14,3,3,On-site BMR Project,90% AMI;,Ownership,2013,"Demolition of existing 2-unit residential structure, and construction of a new 4-story mixed use building containing 13 dwelling units (including two below market rate/BMR units) above ground floor retail and parking garage.",TO ERECT 4 STORIES 14 DWELLING UNITS TYPE IIIA .,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MWOODS,,,,2 - Marina,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8008589114, -122.425496281)",15,4,6,13
Resident,1704034A,1248 47TH AV,FALSE,BP Filed,8/18/2017 0:00,1,1,0,0,,,,,,"TO ERECT 2 STORIES, NO BASEMENT, TYP V-B, SINGLE FAMILY DWELLING RESIDENCE. (REAR BLDG)",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7632231338, -122.506762827)",39,10,7,35
Resident,4162026,828 ARKANSAS ST,FALSE,BP Filed,3/7/2018 0:00,2,2,0,0,,,,,,"ERECT 4 STORY 1 BASEMENT, 2 RESIDENTIAL UNITS, TYPE 5 BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7556379892, -122.39811775)",54,2,9,26
Mixres,6571051,1296 SHOTWELL ST,TRUE,BP FILED,12/7/2016 0:00,94,94,94,94,,30% AMI; 60% AMI;,Rental,2015-018056PRJ,"Demolition of existing 1-story building and construction of new 9 story Multi-Unit Affordable Senior Housing building with 96 units, including 20 units for formerly homeless seniors.",,850,-10814,0,0,0,0,0,0,0,850,850,0,0,-11664,0,0,0,0,0,0,0,0,0,0,0,,Herman Coliver Locus Architecture,,4154951776,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7486403108, -122.415200502)",53,3,2,20
Resident,5826003,106 BACHE ST,TRUE,BP ISSUED,11/22/2017 0:00,2,2,0,0,,,,,,"TO ERECT 3 STORIES, 2 FAMILY RESIDENTIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SETYADIP,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.73372245, -122.417787983)",61,9,2,2
Mixres,3999002,249 PENNSYLVANIA AV,TRUE,BP FILED,11/22/2016 0:00,59,59,10,10,On-site BMR Project,55% AMI;,Rental,2014,Demolition of two (2) existing hardware warehouses and new construction of a 4-story building with 3 stories of residential units and ground floor with residential/commercial spaces. Proposed parking on ground floor/basement level to provide 44.,"TO ERECT 4 STORIES, ONE BASEMENT, 59 DWELLING APARTMENT & RETAIL.
** MAHER: EXEMPTED - APPROVAL FROM DPH ATTACHED WITH PLAN. SEE A-07 **",3426,-15699,0,0,0,0,0,0,0,0,0,19125,3426,-15699,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7629713748, -122.393172024)",54,2,9,26
Vacant,4287020,1229 CONNECTICUT ST,TRUE,BP ISSUED,1/24/2018 0:00,0,0,0,0,,,,,,TO ERECT ONE WAREHOUSE STORAGE.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7506986927, -122.396050547)",54,2,9,1
Resident,3961018,335 POTRERO AV,FALSE,BP Filed,12/8/2017 0:00,2,0,0,0,,,,,,HORIZONTAL & VERTICAL ADDITION TO EXISTING BLDG. ADD BEDROOMS FOR RESIDENTIAL UNITS & ADD 3 LEVELS F,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,10,Showplace Square/Potrero Hill (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.765266108, -122.407152651)",54,3,9,20
Resident,2385042A,2400 41ST AV,FALSE,BP Filed,9/12/2017 0:00,3,1,0,0,,,,,,"ADD ONE DWELLING UNIT (UNIT C) ON 1ST FLR W/ 2 BDRMS, ONE FULL BATH, ONE KITCHEN, DINING & LIVING RM",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7418761135, -122.499032077)",39,10,7,35
Resident,3148011,36 NORTON ST,TRUE,BP ISSUED,2/20/2018 0:00,2,1,0,0,,,,,,ADDITION OF DWELLING UNITS PER ORDINANCE NO. 162-16.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7251227342, -122.435489028)",94,9,1,28
Vacant,3733014,816 FOLSOM ST,FALSE,PL Filed,11/8/2017 0:00,0,0,0,0,,,,2017-012789PRJ,"Pursuant to the zoning and height designations contemplated by the Central SoMa Plan, the Project Sponsor proposes to demolish the existing commercial building at the Property and construct a 180-foot tall, 18-story over basement hotel (the ""Project""). T",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,"Reuben, Junius & Rose, LLP",,4155679000,9 - South of Market,6,Central SoMa; Downtown Streetscape Plan; Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7818004257, -122.401839746)",32,1,10,34
Resident,317005,436 OFARRELL ST,TRUE,CONSTRUCTION,8/28/2017 0:00,9,9,0,0,,,,2009,Conversion of nine offices into nine residential units. One on-site BMR unit will be provided on-site. All work will occur within the existing building. Conditional Use Authorization required for reduction of off-street parking requirements in NOMARSU,CONVERTING OF NINE OFFICES TO NINE RESIDENTIAL UNITS,0,-9709,0,0,0,0,0,0,0,0,-9709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PLAVALLE,,,,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.786106115, -122.411998728)",20,5,10,36
Resident,3511015,1532 HOWARD ST,TRUE,CONSTRUCTION,4/10/2018 0:00,15,15,0,0,,,,2013,Demolition of an existing one-story commercial building and the proposed new construction of a six-story residential building with 15 single room occupancy units.,"ERECT 6-STORY, NO BASEMENT, TYPE 1, 15 DWELLING UNITS BUILDING. COMPLIANCE W/ ORDINANCE NO. 155-13 NOT REQUIRED.",0,-1599,0,0,0,0,0,0,0,0,0,0,0,0,1599,0,-1599,0,0,0,0,0,0,0,0,RSUCRE,Aidin Massoudi,Aidin Massoudi,922-0200x105,8 - Mission,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.772817627, -122.416284264)",32,1,10,20
Resident,5858047,107 GAVEN ST,FALSE,BP Filed,11/21/2017 0:00,2,1,0,0,,,,,,ADU. COMPLY WITH NOV #201796652 & 201757839. ADDITION OF DWELLING UNIT PER ORD 162-16 & COMPLY W/ IN,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7334262294, -122.407792034)",91,2,2,25
Vacant,1230019,532 COLE ST,FALSE,BP Filed,5/15/2017 0:00,0,0,0,0,,,,2017-006155PRJ,Variance from the exposure requirement to permit the addition of an accessory dwelling unit.,"ADD DWELLING UNIT @ FRONT END OF 1ST STORY LEVEL (N) ADU - (N) WALLS, BATH ROOM & KITCHEN TO CREATE (N) UNIT. (REF PA #201705156553 FOR ADDITIONAL ADU PER ORD. #162-16).",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CALEXAND,Shatara Architecture,,4155127566,6 - Buena Vista,5,Haight Ashbury Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7700574203, -122.450019662)",25,7,11,3
Mixres,3706093,706 MISSION ST,TRUE,CONSTRUCTION,4/3/2018 0:00,185,185,0,0,Fee Payment,,Rental,2008,"The proposed project would result in partial demolition and rehabilitation of the Arson Mercantile Building into a new 42-story, 500-foot high building containing 185 residences, retail, and the 36,560 sf Mexican Musuem. The proposed project would also i","(N) 46-STORY TOWER ADDITION TO THE (E) HISTORIC 10-STORY BLDG.
(R-2,M,A-2,A-3,S-1,S-2,H-3)",174400,25570,0,0,0,0,0,0,119330,0,-119330,0,0,0,29500,174400,144900,0,0,0,0,0,0,0,0,SJONES,Sean Jeffries,Sean Jeffries,593-1100,4 - Downtown,6,Downtown; Downtown Streetscape Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7862060968, -122.402532491)",32,5,10,8
Resident,5386021,1547 UNDERWOOD AV,FALSE,BP Filed,3/21/2018 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION ORD #43-14. INSTALL PARTITION TO SEPARATE GARAGE & ENTRY TO STUDIO DWELLING UNIT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7290348292, -122.391063494)",86,2,9,1
Vacant,2484007,460 WEST PORTAL AVE,FALSE,PL Filed,3/8/2018 0:00,0,0,0,0,,,,2017-014374PRJ,"Conversion of an existing, 2-story, 3-bedroom, plus bath, single-family residence to provide administrative office, meeting, and guest faculty housing spaces to support the existing Educational Uses at the adjacent property located at 470 West Portal Ave",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,"J. Abrams Law, P.C.",,4159994402,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7361541302, -122.471163638)",46,10,8,41
Resident,505015,1671 LOMBARD ST,FALSE,BP Filed,10/26/2017 0:00,19,7,0,0,,,,,,"DEMOLISH NON LOAD BEARING WALLS. ADD (7) NEW ADU UNITS. NEW KITCHEN, BATHS, CABINETRY, ELECTRIC & PL",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8003647953, -122.428826287)",15,4,6,13
Resident,1703021,4626 IRVING ST,FALSE,BP Filed,3/23/2018 0:00,3,1,0,0,,,,,,COMPLY WITH NOV 201829521 TO LEGALIZE EXISTING ILLEGAL UNIT PER ORD 43-14 SECTION 102A3.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,Western Shoreline,Rest of the City,2018,Q1,2018_Q1,"(37.7624607946, -122.50768058)",39,10,7,35
Mixres,3519063,1335 FOLSOM ST,TRUE,CONSTRUCTION,3/5/2018 0:00,67,67,7,7,,55% AMI;,,2013,"The proposed project would involve demolition of an existing one-story commercial building (constructed in 1923) and construction of a new seven-story, residential building of approximately 65' in height. The proposed building shall consist of seven res","TO ERECT 6 STORIES, NO BASEMENT, 53 DWELLING UNITS (SRO) RESIDENTIAL BUILDING INCLUDE GROUND FLOOR LEVEL COMMERCIAL. MAHER COMPLIANCE WITH ORDINANCE 155-13 REQUIRED. INTERIM CONTROLS.",663,-5037,0,0,0,0,0,0,0,0,0,5700,0,-5700,0,663,663,0,0,0,0,0,0,0,0,RSUCRE,Tomas Janik,Tomas Janik,415-359-4397,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7731843927, -122.41191612)",32,1,10,34
Resident,1610037,3315 BALBOA ST,FALSE,BP Filed,8/15/2017 0:00,3,3,0,0,,,,,,"VERTICAL ADDITION: 1ST FL: COMMERCIAL AREA REMODEL, ADD (1) STORAGE. 2ND FL: ADD MASTER BEDROOM, MAS",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7755999566, -122.494405487)",8,8,4,29
Resident,140008,735 DAVIS ST,FALSE,BP Filed,11/15/2017 0:00,53,53,0,0,,,,,,"ERECT A TYPE 1 CONST, 6 STORY 53 RESIDENTIAL DWELLING UNIT BUILDING. MAHER ORDINANCE COMPLY.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,Northeast Waterfront; Northeast Embarcadero Study,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7992119016, -122.399125156)",77,6,3,8
Resident,2541010,8 SLOAT BL,FALSE,BP Filed,1/26/2018 0:00,2,1,0,0,,,,,,LEGALIZE EXISTING 1ST FL UNIT PER ORDINANCE 43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7350092788, -122.472308325)",46,10,8,41
Mixres,334028,519 ELLIS ST,TRUE,PL Approved,6/23/2017 0:00,28,28,3,3,BMR Ownership,,,2014,Proposed new construction of 8-story building with 28 residential condo units above first floor and two commercial units on first floor.,,2541,5082,0,0,2541,0,0,0,0,0,0,0,0,0,0,2541,2541,0,0,0,0,0,0,0,0,TCHANG,,,,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7842982031, -122.415003799)",20,5,10,36
Vacant,2617007,57 ASHBURY TER,FALSE,PL Filed,5/11/2017 0:00,0,0,0,0,,,,2017-005888PRJ,Variance request from the rear and side yard setbacks to permit the legalization of an (e) rear yard structure and infill at the side yard to allow an addition for reasonable accommodation.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JHORN,Hobstetter Architectire Studio,,5103330839,6 - Buena Vista,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7645395024, -122.445052183)",112,7,5,3
Vacant,158009,1401 MASON ST,TRUE,PL Approved,1/24/2018 0:00,0,1,0,0,,,,2017-009193PRJ,Variance from the exposure requirement to permit the addition of an accessory dwelling unit within the existing building envelope.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MCHANDLE,,,4155092956,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7964062392, -122.41197261)",107,6,3,21
Resident,5661019,823 CORTLAND AV,FALSE,BP Filed,3/21/2018 0:00,3,1,0,0,,,,,,COMPLY WITH NOV #201832301 TO LEGALIZE ILLEGAL UNIT @ 1ST FL (ORDINANCE #43-14),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7390827555, -122.414299999)",83,9,2,2
Resident,3273021,725 DARIEN WY,FALSE,BP Filed,2/9/2018 0:00,2,1,0,0,,,,,,"RELOCATE INTERIOR STAIR, REMODEL 1ST FL INCLUDING KITCHE, FAMILY RM, BATH & OFFICE W/ (1)(N) BATH, B",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7306520808, -122.464014899)",68,10,8,41
Resident,5514030,620 PRECITA AV,FALSE,BP Filed,7/7/2017 0:00,1,1,0,0,,,,,,ERECT A TWO STORY TYPE 5 CONSTRUCTION SINGLE FAMILY DWELLING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7475510876, -122.408830622)",60,9,2,2
Resident,1064040,170 COMMONWEALTH AV,FALSE,BP Filed,2/16/2018 0:00,2,1,0,0,,,,,,CONVERSION OF EXISTING GARAGE INTO NEW ACCESSORY DWELLING UNIT PER ORDINANCE 95-17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7822615057, -122.455167903)",11,8,6,31
Mixres,4058002,600 20TH ST,FALSE,PL FILED,2/14/2017 0:00,20,20,4,4,,,,2016-008651PRJ,"Demolition of existing two story building and construction of a new six-story, mixed use residential building. The building shall consist of five residential levels, with a ground level commercial space above a basement garage. See attached project des",,1916,-7284,0,0,0,0,0,0,7000,0,-7000,0,0,0,2200,1916,-284,0,0,0,0,0,0,0,0,,Workshop1,,4154099267,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7607786431, -122.387802089)",55,2,9,26
Resident,3562021,313 CASTRO ST,TRUE,BP ISSUED,2/12/2018 0:00,2,1,0,0,,,,,,"CONVERT (E) 1ST FLOOR TO A 2ND UNIT. ADD 2 BEDROOMS, 1 BATHROOM, KITCHEN, LIVING AREA & DINING AREA",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,8,,Market & Octavia,2018,Q1,2018_Q1,"(37.7636240098, -122.434914228)",28,7,5,5
Mixres,1410021,2224 CLEMENT ST,TRUE,CONSTRUCTION,3/7/2018 0:00,16,16,0,0,Fee Payment,,,2014-001676PRJ,New construction of a 16 unit condominium building comprised of a parking garage at 5' below grade and four floors of units on podium at 5' above grade. The site is currently used as a parking lot.,"TO ERECT 4 STORIES, NO BASEMENT, TYPE 1 & 5A, 12 UNITS RESIDENTIAL UNIT WITH RETAIL & PARKING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SLAI,Salvatore Caruso,,408 998-4087,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7823345897, -122.483417299)",8,8,4,29
Resident,3139026,529 FLOOD AV,FALSE,BP Filed,4/28/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION ORD 43-14. LEGALIZATION OF A DWELLING UNIT INSTALLED WITHOUT A PERMIT. MINOR STRUC,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.729619599, -122.451798324)",95,9,8,41
Resident,1419006,237 14TH AV,FALSE,BP Filed,10/27/2017 0:00,2,1,0,0,,,,,,INTERIOR AND EXTERIOR REMODEL. SCOPE OF WORK INCLUDES CONVERSION OF BASEMENT(GROUND FLOOR)SPACE INTO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7836624786, -122.473412095)",5,8,4,29
Resident,3521022,333 12TH ST,TRUE,BP FILED,12/23/2016 0:00,200,200,21,21,On-site BMR Project; Fee Payment,,,2015-004109PRJ,"The proposed project is to demolish both the existing building and the parking lot and redevelop the site, per the State's Density Bonus law (California Government Code Sections 65915-65918), into an ""affordable-by-design / workforce"" rental housing proj",,0,-21630,0,0,0,0,0,0,0,0,-21630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,Panoramic Interests,,5108831000,8 - Mission,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7708182441, -122.4140073)",32,1,10,20
Resident,2355001K,2347 26TH AV,TRUE,BP ISSUED,1/18/2018 0:00,2,1,0,0,,,,,,COMPLY W/ NOV #201785901. LEGALIZE DWELLING UNIT (UNIT B) ON 1ST FL BY LEGALIZED AS BUILT KITCHEN PE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7436418304, -122.483585586)",40,10,7,35
Resident,3736120,TRANSBAY BLOCK 9,TRUE,CONSTRUCTION,4/3/2018 0:00,545,545,109,109,,60% AMI;,Rental,,,"TO ERECT 42 STORIES, 6 BASEMENTS, 545 UNITS RESIDENTIAL APARTMENT WITH COMMERCIAL MIXED USE BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Downtown Streetscape Plan; Transbay; Transit Center District; Transit Center District Streetscape Plan,Transit Center District,2018,Q1,2018_Q1,"(37.7872035545, -122.395106771)",32,1,10,8
Vacant,531011,1964 UNION ST,FALSE,PL Filed,7/26/2017 0:00,0,2,0,0,,,,2017-009510PRJ,Variance request from the rear yard setback requirement to permit the addition of two new dwelling units at the rear of an existing 2-unit building.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MDITO,Gary Bell + Associates,,4153770425,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7978602796, -122.431678491)",15,4,6,13
Resident,4792025,1237 SHAFTER AV,FALSE,BP Filed,12/5/2017 0:00,2,1,0,0,,,,,,"UNIT LEGALIZATION PER ORDINANCE 43-14, TWO BEDROOMS, 1 BATH AND 1 KITCHEN.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7269877219, -122.384117242)",78,2,9,1
Resident,2607037,284 ROOSEVELT WY,FALSE,BP Filed,2/5/2018 0:00,2,2,0,0,,,,,,"TO ERECT 3 STORIES, 1 BASEMENT, TYPE V-B, 2 UNITS RESIDENTIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7656559321, -122.441194187)",112,7,5,5
Resident,5673025,3437 MISSION ST,FALSE,BP Filed,8/2/2017 0:00,3,1,0,0,,,,,,"TO COMPLY WITH COMPT 201548201, 201536651. COMMERCIAL SPACE WAS ILLEGALLY CONVERTED TO RESIDENTIAL N",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,Mission Public Life Plan,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7415517518, -122.422186819)",83,9,2,2
Resident,1201023,1398 HAYES ST,FALSE,BP Filed,9/6/2017 0:00,6,1,0,0,,,,,,CONVERT COMMERCIAL SPACE TO ACCESSORY DWELLING UNIT PER ORD 162-16. RELATED SOFT STORY WORK PA #2017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7750460645, -122.439356419)",24,7,11,9
Mixres,3553008,490 SOUTH VAN NESS AV,TRUE,BP ISSUED,6/1/2015 0:00,72,72,12,12,Exempt Project,,Ownership,2010,"Construction of a new 8-story mixed-use building with 81 dwelling units, 2,529 square-feet of retail, and one basement level with 44 off-street parking spaces.","TO ERECT 7 STORIES, 1 BASEMENT WITH 84 UNITS RESIDENTIAL & PARKING.",655,-963,0,0,0,0,0,0,0,0,0,1618,0,-1618,0,655,655,0,0,0,0,0,0,0,0,CTEAGUE,Bruce D. Baumann,Bruce D. Baumann,551.7884x3,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.765479937, -122.417823853)",53,3,2,20
Mixres,334008,430 EDDY ST,TRUE,BP APPROVED,4/12/2018 0:00,23,23,3,3,On-site BMR Project,90% AMI;,Ownership,2014,"Proposed new construction of eight story over basement building with 27 residential condo units, and two commercial unit at street level.","TO ERECT 8 STORIES, 1 BASEMENT, 23 UNITS RESIDENTIAL CONDO WITH COMMERCIAL, MIXED USE BUILDING.",797,1594,0,0,797,0,0,0,0,0,0,0,0,0,0,797,797,0,0,0,0,0,0,0,0,CESPIRIT,,,,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7839367125, -122.414833881)",20,5,10,36
Resident,150054,1000 - 1020 BROADWAY,TRUE,BP FILED,7/12/2016 0:00,1,1,0,0,,,,2006,"Proposed project would involve a three-lot subdivision and the new construction of three two-unit buildings, one on each newly subdivided lot. The buildings would total approximately 19,000 sq. ft., 10 parking spaces, and would be approximately 40 feet i",ERECT ONE STORY SINGLE FAMILY DWELLING W/ THREE BASEMENTS OVER RODIUM.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KCONNER,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7972167602, -122.413810539)",107,6,3,21
Resident,2607280,354 ROOSEVELT WY,FALSE,BP Filed,10/4/2017 0:00,3,1,0,0,,,,,,"PER ADD UNIT ORDINANCE# 162-16, CONVERT (E) LEGAL BEDROOM SUITE TO ADU.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7654858481, -122.442415038)",112,7,5,5
Vacant,247025,1375 SACRAMENTO ST,TRUE,PL Approved,12/6/2017 0:00,0,0,0,0,,,,2017-006059PRJ,Variance from the exposure requirement to permit the addition of an accessory dwelling unit.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GPANTOJA,,,4157106020,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7920064639, -122.415429366)",16,6,3,21
Resident,4210023,1169 YORK ST,FALSE,BP Filed,12/7/2017 0:00,3,1,0,0,,,,,,LEGALIZE (1) (E) RESIDENTIAL DWELLNG UNIT ON GROUND FLOOR PER ORDINANCE 43-14 (NO FEE WAIVER) INFILL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7534195062, -122.407965529)",53,3,2,20
Resident,508009,2040 GREENWICH ST,FALSE,BP Filed,3/22/2018 0:00,1,1,0,0,,,,,,"TO ERECT A TYPE V, 4-STORY SINGLE FAMILY RESIDENCE WITH NO BASEMENTS.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7995308065, -122.433390163)",15,4,6,13
Resident,4044013,777 TENNESSEE ST,TRUE,CONSTRUCTION,3/30/2018 0:00,59,59,8,8,On-site BMR Project,90% AMI;,Ownership,2013,The proposed project would involve the demolition of an existing two-story light industrial building and construction of a new multi-family building. The proposed new building would include 59 Residential units over below grade parking which would conta,"TO ERECT 5 STORIES, 2 BASEMENTS, 59 UNITS RESIDENTIAL & PARKING.",0,-11424,0,0,0,0,0,0,0,0,0,11424,0,-11424,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,Gary Burk,Mitchell Benjamin,882-9783 x10,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7620267675, -122.389324478)",55,2,9,26
Mixres,3725093,5M,TRUE,PL APPROVED,1/4/2016 0:00,688,688,58,58,On-site BMR Project; Land Dedication,90% AMI;,Ownership,2011,"Project review for a development . A mix of residential, office, retail and other uses on the approx. 4 acre site on the SE corner of 5th/ Mission and extending towards sixth street & south to Howard Street, The site is comprised of 23 parcels.",,617900,574800,0,17300,-23600,0,0,0,0,593500,591300,0,0,0,0,7100,7100,0,0,0,0,0,0,0,0,KGUY,,,,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7821536526, -122.40660111)",32,1,10,34
Mixres,3737012,TRANSBAY BLOCK 8,TRUE,CONSTRUCTION,4/6/2018 0:00,548,548,151,151,,50% AMI;,Rental,,,"TO ERECT 56 STORIES TOWER, 2.5 BASEMENT, 9 STORIES ELEMENT HIGH RISE bUILDING, WITH 546 UNITS RESIDENTIAL, RETAIL & PARKING.
** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 REQUIED; ROUTE TO DPH **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MSMALL,,,,9 - South of Market,6,Downtown Streetscape Plan; Transbay; Transit Center District; Transit Center District Streetscape Plan,Transit Center District,2018,Q1,2018_Q1,"(37.7879001111, -122.394594038)",32,1,10,8
Mixres,645014,1436 & 1498 POLK ST/ 1567 CALIFORNIA ST,TRUE,PL APPROVED,10/16/2015 0:00,63,63,8,8,On-site BMR Project; Fee Payment,90% AMI;,Ownership,2014,"The proposed project would demolish an existing two (2) story retail building and associated surface parking area and construct a seven-story, 80 -foot tall mixed-use building with retail shops at ground level and forty-seven (47) dwelling units on 2nd t",,8000,-3746,0,0,0,0,0,0,0,0,0,0,0,0,0,8000,-3746,0,0,0,0,0,0,0,0,AA CONV,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7902656481, -122.420299362)",105,4,3,21
Resident,6739005,80 THOR AV,FALSE,BP Filed,4/25/2017 0:00,1,1,0,0,,,,,,CONSTRUCT (N) 3-STORY SINGLE FAMILY DWELLING UNIT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7349450445, -122.434420441)",96,9,5,10
Resident,1827040,2121 JUDAH ST,FALSE,BP Filed,9/29/2017 0:00,3,1,0,0,,,,,,"TO LEGALIZE GROUND FLOOR UNIT PER ORDINANCE 43-14 TO ADD A 3RD UNIT CONSIST OF KITCHEN, BEDROOM & BA",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7611034775, -122.484927891)",39,10,7,35
Mixres,1071003,2670 GEARY BL,FALSE,BP FILED,12/14/2017 0:00,95,95,3,3,,,,2014-002181PRJ,"Construction of a seven story mixed-use building composed of three stories with 21, two-four bedroom residential dwelling units, three stories of office space, one story commercial space and 3 levels of subterranean parking. The proposed building conform",,46696,43882,0,0,0,0,0,0,0,35372,35372,0,0,0,0,11324,8510,0,0,0,0,0,0,0,0,JHORNER,,Riyad Ghannam,699-3640,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7828525513, -122.447442491)",11,8,6,31
Mixres,3736110,555 HOWARD ST,TRUE,BP FILED,12/27/2016 0:00,80,80,13,13,,,,2015-008058PRJ,"Demolish two existing2-story buildings and construct new mixed-use tower with ~194,000 GSF residential (127 units) and ~167,000 GSF hotel (223 rooms). The project will have 2 levels of below-grade parking (76 spaces).","ERECT 37 STORIES, 4 BASEMENTS, 80 UNITS RESIDENTIAL HOTEL, RESTAURANT AND PARKING.",210906,168651,0,0,0,0,0,0,31255,0,-31255,0,0,0,11000,4344,-6656,0,0,0,206562,206562,0,206,206,VBYRD,Pacific Eagle Holdings,,4157807308,9 - South of Market,6,Downtown; Downtown Streetscape Plan; Transbay; Transit Center District; Transit Center District Streetscape Plan,Transit Center District,2018,Q1,2018_Q1,"(37.7875294127, -122.396880312)",32,1,10,8
Resident,3747012,325 FREMONT ST,TRUE,BP ISSUED,3/21/2017 0:00,119,119,0,0,Fee Payment,,,2012,"The proposed project would construct a 250-foot tall residential tower , containing 119 dwelling units and 61 off-street parking spaces. The current planning is for resident parking below grade; lobby, bike parking and handicap parking at street level;","TO ERECT 26 STORIES, 3 BASEMENT, 118 RESIDENTIAL UNITS WITH MIX USE TYPE 1 CONSTRUCTION.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,Steve Vettel,Steve Vettel,268-6171,9 - South of Market,6,Rincon Hill; Rincon Hill Streetscape Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7877714363, -122.392946602)",30,1,10,8
Resident,5312046,1715 NEWCOMB AV,FALSE,BP Filed,8/30/2017 0:00,3,1,0,0,,,,,,LEGALIZE GROUND FLOOR KITCHEN. CONVERT (2) UNITS TO (3) UNITS UNDER ORDINANCE #43-14 (1) BEDROOM & (,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7362775794, -122.392165491)",86,2,9,1
Resident,5434A007,1886 DONNER AV,FALSE,BP Filed,2/16/2018 0:00,2,1,0,0,,,,,,"LEGALIZATION OF LOWER 322sq.ft RESIDENTIAL UNIT W/ LIVING RM, BEDROOM, KITCHEN AND BATHROOM PER ORD",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7286068683, -122.400973777)",86,2,9,1
MixedRes,1529001,411 - 15TH AV,TRUE,BP APPROVED,4/11/2017 0:00,18,4,0,0,,,,2016-008805PRJ,Proposed addition of four new dwelling units with egress directly to the exterior of an existing 14-unit over office building.," ADDITION OF DWELLING UNITS PER ORD #30-15 IN CONJUNTION W/ A MANDATORY SEISMIC RETROFIT (PERMIT #201504022692). LOCATED WITHIN THE (E) BUILDING ENVELOPE AT GROUND LEVEL & INCLUDES THE FOLLOWING IMPROVEMENTS: (4)(N) DWELLING UNITS; (N) BICYLE STORAGE.",0,0,0,0,0,0,0,0,1571,811,-760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.780259049, -122.474215273)",5,8,4,29
Resident,3282018A,60 KEYSTONE WY,FALSE,BP Filed,12/1/2017 0:00,2,1,0,0,,,,,,REMODEL EXISTING GROUND FLOOR FAMILY AND STORAGE AREA INTO ADU. ORDINANCE #95-17.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7269587573, -122.462320124)",68,10,8,41
Resident,1894016,1569 48TH AV,FALSE,BP Filed,3/5/2018 0:00,3,1,0,0,,,,,,REMOVE 3RD FLOOW WALLS & PITCHED ROOF & REPLACE WITH (N) 9' HIGH WALLS & FLAT ROOF. ALL (N) INTERIOR,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,Western Shoreline,Rest of the City,2018,Q1,2018_Q1,"(37.7571068359, -122.508169748)",39,10,7,35
Mixres,6631049,497 29TH ST,FALSE,BP Filed,9/13/2016 0:00,4,1,0,0,,,,2016-013458PRJ,ADD 1 UNIT = STUDIO UNIT WITH KITCHEN & 1 BATHROOM. REMODEL AN (E) UNIT.,ADD 1 UNIT = STUDIO UNIT WITH KITCHEN & 1 BATHROOM. REMODEL AN (E) UNIT. SOFT STORY APPROVED PER #2016-0822-5608.,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,500,0,0,0,0,0,0,0,0,0,SADINA,Hood Thomas,,4153852303,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.74325264, -122.430886942)",84,9,5,22
Resident,0915012B,2045 JEFFERSON ST,FALSE,BP Filed,2/16/2018 0:00,2,1,0,0,,,,,,"LEGALIZTED (E) DWELLING UNIT @ 1ST FLR WITH KITCHEN, BEDROOM AND BATHROOM PER ORD# 43-14. MODITFY (E",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.8040441262, -122.446203635)",17,4,6,13
Resident,5615036A,3287 MISSION ST,FALSE,BP Filed,5/26/2017 0:00,2,2,0,0,,,,,,"TO ERECT 2 STORIES, NO BASEMENT, 2 UNITS RESIDENIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7441152559, -122.420220919)",83,9,2,2
Resident,7105014,288 FARALLONES ST,TRUE,BP ISSUED,3/15/2018 0:00,2,1,0,0,,,,,,LEGALIZE KITCHEN IN A DWELLING UNIT PER ORD #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.714286929, -122.462317919)",81,10,1,24
Resident,4088026,825 YORK ST,FALSE,BP Filed,10/19/2017 0:00,2,1,0,0,,,,,,REMODEL & ADD (2) STORIES TO EXISTING 2-STORY SINGLE FAMILY DWELLING TO CREATE TWO UNITS.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7583175537, -122.408436976)",53,3,2,20
Resident,7331003,800 BROTHERHOOD WAY (UNDER CONSTRUCTION),TRUE,CONSTRUCTION,3/31/2017 0:00,36,36,0,0,,,,2003,"The project site is currently an 8.15-acre parcel of vacant land. The proposed project involves the subdivision of the site into 127 lots and the construction of 127 buildings, including 66 single-family homes, 39 two-unit buildings, and 22 three-unit b",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,,,,13 - Ingleside,7,Parkmerced,19th Avenue,2018,Q1,2018_Q1,"(37.7153585419, -122.477280566)",42,10,8,16
Mixres,3708012,OCEANWIDE (MISSION ST TOWER),TRUE,CONSTRUCTION,3/16/2018 0:00,153,153,0,0,Fee Payment,,,2006,"The project site consist of three undeveloped lots and four buildings ranging from five to seven stories, totaling approx. 251,000 sq. ft. of office, retail, and commercial uses. There are no off-street parking or loading on the site. The proposed projec",CONSTRUCT (N) HOTEL/RESIDENTIAL BUILDING,798398,798398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,798398,798398,0,0,0,KGUY,Mark Solit,Joel Yodowitz,415 567-9000,4 - Downtown,6,Downtown; Downtown Streetscape Plan; Transit Center District; Transit Center District Streetscape Plan,Transit Center District,2018,Q1,2018_Q1,"(37.7894712544, -122.398385318)",108,6,10,8
Resident,596061,1537 PACIFIC AV,FALSE,BP Filed,10/25/2017 0:00,3,1,0,0,,,,,,ADDITION OF DWELLING UNIT PER ORDINANCE NO. 162-16.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7948871831, -122.420520375)",105,4,3,32
Resident,331001,229 ELLIS,FALSE,PL FILED,7/27/2017 0:00,52,52,0,0,,,,2016-007593PRJ,"The proposed project (ΓÇ£ProjectΓÇ¥) would involve the rehabilitation of a vacant, mixed-use historic
building. The alterations include façade alterations, excavation, interior alterations, and a one-story
vertical addition to the existing 4-story-over-",,0,-12400,0,0,0,0,0,0,0,0,0,0,0,0,12400,0,-12400,0,0,0,0,0,0,0,0,,,,,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7851168162, -122.409726894)",20,5,10,36
Vacant,23005,1300 COLUMBUS AVE,FALSE,PL Filed,12/8/2017 0:00,0,0,0,0,,,,2017-005154PRJ,ALTERATION AND ADDITION TO THE HOLIDAY INN HOTEL AT 1300 COLUMBUS AVENUE: INTERIOR RENOVATION OF EXISTING GUEST ROOMS AND HOTEL LOBBY/DINING; NEW 4-STORY WING ON EXISTING SURFACE LOT ALONG NORTH POINT STREET WITH GROUND LEVEL RETAIL AND 3 FLOORS OF GUEST,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,"Reuben, Junius & Rose, LLP",,4155679000,3 - Northeast,3,Northeast Waterfront; FishermanΓÇÖs Wharf Public Realm Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.806433975, -122.418070877)",99,6,3,23
Resident,0581013B,2285 BROADWAY,FALSE,BP Filed,10/12/2017 0:00,9,0,0,0,,,,2017-016098PRJ,Addition of three new accessory dwelling units to an existing 6-unit building.,"ADD UNIT PER ORDINANCE# 162-16. ADD 3 NEW UNITS ON THE GROUND FLOOR OF AN (E) 6 UNITS BUILDING. 2 STUDIO & 1 ONE BEDROOM UNIT. A BATH & KITCHEN IN EACH. SOFT STORY PA# 2017/09/06/6951.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MCHANDLE,,,4155435005,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7940616856, -122.434575722)",102,4,6,30
CIE,4712008,1 ARDATH COURT (COMMUNITY CENTER),FALSE,BP FILED,12/17/2015 0:00,0,0,0,0,,,,2015-003310PRJ,New construction of a community center to be located on an empty patch of land on the corner of Harbor Road and Ingalls Street.,"ERECT 1-STORY, NO BASEMENT, TYPE 5-1, COMMUNITY CENTER.
** MAHER: N/A **",5588,5588,0,5588,5588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JDISALVO,HB&A Architects,Hafsa Burt,415-702-1609,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7342431948, -122.382430288)",86,2,9,1
Resident,2619060,42 ORD CT,FALSE,BP Filed,11/3/2017 0:00,2,1,0,0,,,,,,"REMODEL & EXPAND THE (E) SINGLE FAMILY HOME TO PROVIDE (2) RESIDENTIAL UNITS, PLUS OFF STREET PARKIN",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7641638989, -122.441055492)",113,7,5,5
Resident,6501061,24 FOUNTAIN ST,FALSE,BP Filed,12/8/2017 0:00,4,4,0,0,,,,,,Multiple Permits,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7503689671, -122.441951309)",51,3,5,22
Vacant,1528040,415 16TH AVE,FALSE,PL Filed,5/10/2017 0:00,0,0,0,0,,,,2017-005809PRJ,Conditional Use Authorization to legalize an unauthorized change of use from law offices to a massage establishment.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,LCALMESE,,,4155055288,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7801063491, -122.475342468)",5,8,4,29
Resident,0491002A,3347 FILLMORE ST,FALSE,BP Filed,4/18/2017 0:00,2,2,0,0,,,,,,"TO ERECT A (4) STORY, TYPE 1A, 2-UNIT RESIDENTIAL AND RETAIL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.8004653461, -122.436434154)",17,4,6,13
Mixres,3749058,390 01ST ST,TRUE,BP APPROVED,8/4/2017 0:00,180,180,22,22,On-site BMR Project,90% AMI;,Rental,2014,"The proposed project is to demolish the existing 1,590 square foot automobile service station and construct a 201,079 square foot, 13-story, 13-story, 130-foot tall residential building that includes 164,957 square feeto of habitable space and 36,122 squ",ERECT A 14 STORY 180 RESIDENTIAL UNITS AND COMMERCIAL BUILDING W/ 3 BASEMENT. MAHER ORDINANCE-EXTENDED IS NO REQUIRED.,610,-980,0,0,0,0,0,0,0,0,0,0,0,0,1590,610,-980,0,0,0,0,0,0,0,0,DVU,,,,9 - South of Market,6,Rincon Hill; Rincon Hill Streetscape Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7860914771, -122.393472933)",30,1,10,8
Vacant,3756001,1201 FOLSOM ST,FALSE,BP Filed,6/5/2017 0:00,0,0,0,0,,,,,,CHANGE OF USE OF(E)3RD & 4TH FL FROM LIGHT MANUFACTURING TO OFFICE USE IN HISTORIC BLDG & BASE BLDG,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7746675943, -122.410049857)",32,1,10,34
Resident,574002,2047 POLK ST,FALSE,BP Filed,3/5/2018 0:00,2,1,0,0,,,,,,"COMPLY W/ NOV 201553602 & 201481171, LEGALIZE (E) UNIT ON 1ST FL PER ORD# 43-14. SEPARATE PA# 201802",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7956460205, -122.422003548)",105,4,3,32
Resident,6769051,108 MONTEREY BL,FALSE,BP Filed,5/26/2017 0:00,3,1,0,0,,,,,,"UNIT #1. PER COMPLAINT #201609831. UNIT LEGALIZE ORDINANCE 43-14. 2 BEDROOM, 1 BATH, 1 KITCHEN. 624",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7318637436, -122.43764923)",95,9,8,41
Mixres,3506002,1500 - 1580 MISSION ST,TRUE,BP ISSUED,10/3/2017 0:00,540,540,110,110,,50% AMI;,Rental,2014-000362PRJ,"The proposed project would demolish two buildings, except for a portion of Mission Street frontage and clock tower of the 1500 Mission Street building and construct a mixed-use project. The mixed-use building would include ground-floor retail, residentia","TO ERECT 16 STORIES, 2 BASEMENT, OFFICE BUILDING & 39 STORIES, 2 BASEMENT, 540 RESIDENTIAL UNITS BUILDING. BOTH BUILDINGS ARE OVER A SHARED TWO LEVEL SUBTERRANEAN BASEMENT PARKING GARAGE. (R-2,B,A-3,I-4,S-2)",605300,518318,0,0,0,0,0,0,14991,567300,552309,57000,0,-57000,14991,38000,23009,0,0,0,0,0,0,0,0,KGUY,Related California Urban Housing,,415-677-9000,8 - Mission,6,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7743348419, -122.418000987)",32,5,10,20
Mixres,836007,1546 - 1564 MARKET ST,TRUE,BP ISSUED,11/2/2016 0:00,110,110,13,13,On-site BMR Project,90% AMI;,Ownership,2012,"Demolition of two existing buildings and the construction of a new 12-story residential tower with 109 dwelling units, 4,560sf of ground floor commercial space, 105 bicycle parking spaces, a car share space, 28 off-street parking spaces, and a landscaped","ERECT 12-STORY, 1 BASEMENT, RESIDENTIAL, RETAIL & PARKING BUILDING. MAHER ORDINANCE APPLIES.",4560,-6782,0,0,0,0,0,0,0,0,-4676,0,0,0,0,4560,-2106,0,0,0,0,0,0,0,0,KGUY,,,,6 - Buena Vista,5,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7749804233, -122.420196108)",21,4,11,9
Resident,7555009,366 SUSSEX ST,TRUE,BP ISSUED,4/3/2018 0:00,2,1,0,0,,,,,,ADD UNIT PER ORDINANCED NO. 162-16. INTERIOR FREMODEL FOR ADU TO INCLUDE LIVING ROOM KITCHEN BEDROOM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7373255139, -122.438902126)",96,9,5,10
Resident,184007,1515 LEAVENWORTH ST,FALSE,BP Filed,11/7/2016 0:00,8,1,0,0,,,,2016-014696PRJ,"CONVERT ILLEGAL UNIT TO ONE ADU @ REAR (NORTHWEST CORNER). REF #2015-0821-4994 (SOFT STORY APPL), 2016-1107-2165 (UNIT LEGALIZATION) & 2016-1108-2161 (ADU).","CONVERT ILLEGAL UNIT TO ONE ADU @ REAR (NORTHWEST CORNER). REF #2015-0821-4994 (SOFT STORY APPL), 2016-1107-2165 (UNIT LEGALIZATION) & 2016-1108-2161 (ADU).",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ESAMONSK,,1515 LEAVENWORTH STREET LLC,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7950617831, -122.416778404)",16,6,3,32
Vacant,689033,1336 POST ST,TRUE,PL Approved,12/22/2017 0:00,0,0,0,0,,,,2017-011859PRJ,Request Conditional Use Authorization for change of use from vacant Grocery Store to Ambulatory Surgery Center.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MWOODS,"Reuben, Junius & Rose, LLP",,4156593141,5 - Western Addition,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7867158442, -122.424202562)",100,4,6,39
Mixres,3732100,921 HOWARD ST,FALSE,PL FILED,3/29/2017 0:00,205,205,205,205,,,,2017-000275PRJ,"The proposed project includes construction of a new 180' High-Rise, eighteen story, mixed-use residential tower and podium containing approximately 205 residential units. Off-street parking will be located at the ground floor with access from Tehama St.",,4999,-14869,0,0,0,0,0,0,0,0,0,0,0,0,19868,4999,-14869,0,0,0,0,0,0,0,0,,"5th and Howard Associates, L.P.",,4153583921,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7808327462, -122.405165997)",32,1,10,34
Mixres,717003,719 LARKIN ST,TRUE,CONSTRUCTION,4/13/2018 0:00,42,42,6,6,BMR,90% AMI;,Ownership,2015-005329PRJ,"Demolish existing one-story over basement commercial building and construct a new mixed use 8-story building consisting of a basement level storage and residential parking garage, 1,400 SF ground floor retail, and 42 residential units.","TO ERECT 8 STORIES, NO BASEMENT, TYPE IB, 42 RESIDENTIAL UNITS WITH MIXED USED BUILDING.
** MAHER: N/A **",1400,-4600,0,0,0,0,0,0,0,0,0,0,0,0,6000,1400,-4600,0,0,0,0,0,0,0,0,VBYRD,"JS Sullivan Devleopment, LLC",,4155010931,4 - Downtown,6,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7845464642, -122.418072738)",20,5,10,36
Resident,5659005,212 BANKS ST,FALSE,BP Filed,1/12/2018 0:00,2,1,0,0,,,,,,"1ST FLR - INTERIOR REMODEL - LEGALIZE UNIT KITCHEN, ADD A SHOWER STALL PER ORD #414, COMPLY WITH NOV",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7399043088, -122.412902508)",83,9,2,2
Vacant,1149029,350 MASONIC AVE,FALSE,PL Filed,2/9/2018 0:00,0,0,0,0,,,,2018-002179PRJ,"Expansion of San Francisco Day School from 400 students to 480 students. Project proposes to remove the surface parking lot and existing structure at 2130 Golden Gate, and construct a 3-story above ground,16,500 square foot addition over the footprint",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CMAY,"Reuben, Junius and Rose, LLP",,4155679000,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7780424706, -122.446283052)",97,7,11,18
Resident,150054,1000 - 1020 BROADWAY,TRUE,BP FILED,7/12/2016 0:00,2,2,0,0,,,,2006,"Proposed project would involve a three-lot subdivision and the new construction of three two-unit buildings, one on each newly subdivided lot. The buildings would total approximately 19,000 sq. ft., 10 parking spaces, and would be approximately 40 feet i",ERECT THREE STORY TWO FAMILY DWELLINGS W/ THREE BASEMENTS RESIDENTIAL BUILDING OVER RODIUM.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KCONNER,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7972167602, -122.413810539)",107,6,3,21
Resident,6969008B,77 SENECA AV,FALSE,BP Filed,6/8/2017 0:00,2,1,0,0,,,,,,UNIT LEGALIZAITON ORD 43-14. LEGALIZE A 2ND DWELLING UNIT ON THE GROUND FLOOR OF AN (E) SINGLE FAMI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7181775982, -122.4411392)",80,9,1,28
Resident,2344A002,2307 15TH AV,FALSE,BP Filed,2/21/2018 0:00,2,1,0,0,,,,,,IN RESPONSE TO NOV #201763801 TO LEGALIZE UNAUTHORIZED DWELLING UNIT AT GROUND FLR PER ORDINANCE 43-,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7449132219, -122.471731407)",44,10,8,41
Resident,5360024B,1539 SHAFTER AV,FALSE,BP Filed,2/20/2018 0:00,2,1,0,0,,,,,,"LEGALIZE DWELLING UNIT INSTALLED W/O PERMIT PER ORD# 43-14. INSTALL FIRE RATED DOORS, MAKE EXISTING",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7302064351, -122.389797194)",86,2,9,1
Resident,6548009,232 CLIPPER ST,FALSE,BP Filed,8/24/2017 0:00,2,1,0,0,,,,,,"HORIZONTAL & VERTICAL ADDITIONS. RENOVATE (E) SINGLE FAMILY, 1-STORY HOME TO A 2-UNIT, 4-STORY BLDG.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7493564441, -122.43025143)",84,3,5,22
Resident,744002,807 FRANKLIN ST,FALSE,PL FILED,6/23/2015 0:00,50,49,5,5,,,,2013,"The proposed project is the addition & alteration to a historic, single-family victorian home, including the removal of non-historic rear addition and expansion of penthouse and construction of a new 8-story, multi-family residential apartment building i",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SLAI,Toby Morris,Edward Morris,415 749-0302,5 - Western Addition,5,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7821201284, -122.422710864)",100,4,11,39
Vacant,665029,1739 PINE ST,FALSE,PL Filed,5/24/2017 0:00,0,0,0,0,,,,2017-006473PRJ,Variance from the exposure requirements to permit the addition of an accessory dwelling unit within the existing building envelope.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DWEISSGL,,,4155460450,5 - Western Addition,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7888651537, -122.424409254)",100,4,6,39
Resident,493015,1990 LOMBARD ST,FALSE,BP Filed,3/27/2018 0:00,6,6,0,0,,,,,,CONVERT UPPER (2) FLRS OF (E) OFFICE BLDG TO RESIDENTIAL APARTMENTS; (3) UNITS ON EACH FLOOR; GROUND,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.8003729596, -122.43430089)",17,4,6,13
Mixres,7308001,PARKMERCED,TRUE,PL APPROVED,2/10/2011 0:00,7887,4666,284,284,On-site BMR Project; Fee Payment,,,2008,"Master redevelopment program for 116-ac Parkmerced site, proposed to retain existing midrise bldgs and demo/replace all others w/ 4-14-story residential bldgs, on-site relocation of existing residents @ current rent-controlled rates, concurrent infrastru",,521450,478383,0,0,0,0,0,0,10775,91390,80615,0,0,0,32292,430060,397768,0,0,0,0,0,0,0,0,AA CONV,,,,13 - Ingleside,7,Parkmerced,19th Avenue,2018,Q1,2018_Q1,"(37.7205047819, -122.483875009)",42,10,8,16
Resident,2317001,2215 RIVERA ST,FALSE,BP Filed,1/23/2018 0:00,2,1,0,0,,,,,,LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT PERMIT. UNIT LEGALIZATION PER ORD 43-14. LEGALIZE EX,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7460101632, -122.490155644)",40,10,7,35
Resident,4224036,1033 TEXAS ST,FALSE,BP Filed,8/9/2017 0:00,3,3,0,0,,,,,,"ERECT A 4 STORY 3 UNITS RESIDENTIAL TYPE 5 CONSTRUCTION BUILDING, WORK WITH PA201708094308.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7532914808, -122.394356895)",54,2,9,26
Resident,2651002,1 CORBETT AV,FALSE,BP Filed,6/6/2017 0:00,3,1,0,0,,,,,,"LEGALIZE (E) IN LAW PER ORDINANCE# 43-14. 3 BEDROOMS, 2 BATHS FOR NEW UNIT. ADD BICYCLE RACK. ADD SP",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7619469055, -122.43966828)",115,7,5,5
Resident,1423028,266 11TH AV,FALSE,BP Filed,5/30/2017 0:00,3,1,0,0,,,,,,PROPOSED A NEW UNIT @ EXISTING 1/F.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7833408998, -122.469487196)",5,8,4,11
Mixres,3726103,119 07TH ST,TRUE,CONSTRUCTION,3/27/2018 0:00,39,39,0,0,Fee Payment,,,2012,"A new 8-story residential development consisting of 48 dwelling units, 1 level of below-grade parking with 15 spaces, and 2,795 sf of ground floor retail.",ERECT NEW MIXED-USED 8 STORY 39 RESIDENTIAL UNITS APARTMENT/PARKING LOT. MAHER ORDINANE IS NOT REQUIRED.,1974,-30426,0,0,0,0,0,0,0,0,0,0,0,0,0,1974,1974,0,0,0,0,-32400,0,0,0,RSUCRE,Nicole Belcore,Andrew J. Junius,415 567-9000,4 - Downtown,6,East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7790728693, -122.410312381)",32,1,10,34
Resident,77004,30 EDITH ST,TRUE,BP APPROVED,5/25/2016 0:00,3,2,0,0,,,,,,"Admin permit to clarify&correct desc of work,unit ct&occu as apprvd on Plang entitle2008-12-31-9407.Scope work to read:Alter/Remodel(E)SFD to add 2 more units(Fr 1to3 units,R-3 to R-2)&1 new flr w/roof deck.Total 3 fls.incl hori add,new stair&elev to ro",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MLUELLEN,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.802908571, -122.408605287)",106,6,3,23
Resident,3948002,98 PENNSYLVANIA AV,TRUE,BP FILED,12/23/2016 0:00,48,48,7,7,On-site BMR Project,90% AMI;,Rental,2013,"Proposed new construction of a five-story building at 98 Pennsylvania Avenue. The proposed design includes 45 residential units from first floor to fifth floor. There will be 16 one-bedroom units, and 29 two-bedroom units. The project shall also includ","TO ERECT 5 STORY, 1 BASEMENT, TYPE III-A OVER TYPE I-A, 48 UNITS APARTMENTS BUILDING.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7655618061, -122.394221043)",54,1,9,4
Resident,1785019A,1374 31ST AV,FALSE,BP Filed,1/4/2018 0:00,2,1,0,0,,,,,,ADD ADU TO SINGLE FAMILY DWELLING WITHIN (E) FOOTPRINT PER SEC 20766 - NO WAIVER.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7616327151, -122.489559157)",39,10,7,35
Resident,1525036,434 20TH AV,FALSE,BP Filed,7/13/2017 0:00,3,1,0,0,,,,,,"HORIZONTAL & VERTICAL ADDITION TO 3 STORIES, 2 UNITS RESIDENTIAL BUILDING TO BECOME 4 STORIES, 3 UNI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7795960415, -122.478994509)",8,8,4,29
Resident,5841024,481 JUSTIN DR,FALSE,BP Filed,10/30/2017 0:00,2,1,0,0,,,,,,HORIZONTAL ADDITION AT REAR TWO STORIES. ADD ACCESSORY DWELLING UNIT AT FIRST FLOOR.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7319400676, -122.425217662)",93,9,2,2
Resident,3212013,350 OCEAN,FALSE,PL FILED,9/11/2017 0:00,20,20,0,0,,,,2017-001961PRJ,"Demolition of existing retail space, construct new 20 unit residential over retail mixed-use building with basement parking.",,0,738,0,0,0,0,0,0,0,0,0,0,0,0,0,738,738,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7241818513, -122.442927765)",94,9,1,28
Resident,1706037,1238 45TH AV,FALSE,BP FILED,10/9/2015 0:00,2,2,0,0,,,,,,TO ERECT A 3 STORIES OF TWO FAMILY DWELLINGS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7634520517, -122.504737041)",39,10,7,35
Mixres,3518020,241 10TH ST,TRUE,CONSTRUCTION,8/18/2017 0:00,32,32,3,3,BMR Ownership,,,2014,"The proposed project is to demolish the existing 10,189 square foot car-rental office building and construct a new 5-story, 55-foot tall, 32-dwelling unit, mixed-use building. The existing building on the subject 9,000 sf lot was constructed in 1921. T",ERECT 5 STORIES OF 28 DWELLING UNITS. MIX USE BUILDING.,1813,-8376,0,0,0,0,0,0,0,0,0,0,0,0,0,1813,-8376,0,0,0,0,0,0,0,0,JBANALES,,,,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7736498622, -122.413437182)",32,1,10,34
Mixres,3532019B,235 VALENCIA ST,TRUE,PL Approved,1/24/2018 0:00,50,50,6,6,,,,2016-007877PRJ,"The proposed project on 235 Valencia will include four residential stories above a commercial ground floor. The project proposes 50 residential units, comprised primarily of studios under 350 SF and 40% two-bedroom or larger units. Below market rate (BM",,5479,-3521,0,0,0,0,0,0,0,0,0,9000,0,-9000,0,5479,5479,0,0,0,0,0,0,0,0,,DDG 235 Valencia Realty LLC,Craig Hamburg,,8 - Mission,9,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7692013569, -122.421842348)",53,3,2,20
Mixres,4059009,2290 03RD ST,TRUE,BP ISSUED,7/29/2016 0:00,71,71,0,0,Fee Payment,,Ownership,2005,"Demolition of an existing one-story, commercial building and construction of a six-story, mixed-use building with 80 dwelling units, 80 off street parking spaces and appx. 14,000 GSF of ground floor commercial use.","TO ERECT 6 STORIES, 1 BASEMENT, 71 UNITS RESIDENTIAL, COMMERCIAL & PARKING BUILDING.",796,-3204,0,0,0,0,0,0,0,0,0,0,0,0,4000,796,-3204,0,0,0,0,0,0,0,0,CTEAGUE,Stu During,Stu During,415 986-0884,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7607982507, -122.388901959)",55,2,9,26
Resident,6156007,3164 SAN BRUNO AV,FALSE,BP Filed,6/9/2017 0:00,2,1,0,0,,,,,,LEGALIZE (E) KITCHEN. CONVERT SINGLE FAMILY TO 2 UNITS UNDER ORDINANCE# 43-14. 2 BEDROOMS & 1 BATH I,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,9,,Rest of the City,2018,Q1,2018_Q1,"(37.721990184, -122.401600487)",91,2,2,25
Resident,1437008,347 05TH AV,FALSE,BP Filed,10/10/2017 0:00,3,1,0,0,,,,,,"CONVERT A DUPLEX TO A 3 UNIT RESIDIENTIAL BLDG. ADD 2 BEDROOMS AND 2 BATH AT 2ND FL, ADD 2 BED AND 3",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7820813427, -122.463614648)",5,8,4,11
Resident,6525001A,1 HORACE ST,FALSE,BP FILED,9/24/2014 0:00,2,1,0,0,,,,2014,Variance request to the rear yard requirement to permit the new construction of an additional dwelling unit.,CONSTRUCT (N) 3-STORY SINGLE FAMILY RESIDENCE.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,Chris Giouzelis,Yakuh Askew,415-920-1839,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7507228467, -122.414397953)",53,3,2,20
Resident,7536038,537 VALLEY ST,FALSE,BP Filed,9/6/2017 0:00,1,1,0,0,,,,,,"TO ERECT 3 STORIES, 1 BASEMENT, TYPE VB, SINGLE FAMILY RESIDENCE.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7438020218, -122.434258448)",84,9,5,22
Resident,5744030,259 CRESCENT AV,FALSE,BP Filed,1/12/2018 0:00,2,1,0,0,,,,,,"ADU PER ORDINANCE 162-16 ON 1ST FL WITH A BEDROOM, A FULL BATH, A LIVING ROOM, A DINING ROOM AND KIT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7352280037, -122.419113367)",61,9,2,2
Resident,795027,635 FULTON ST,FALSE,BP Filed,12/19/2017 0:00,17,15,0,0,,,,2017-007542PRJ,"THE PROJECT PROPOSES: (1) MOVING AN EXISTING MORTUARY STRUCTURE ON 635 FULTON STREET TO THE EASTERN EDGE OF ITS SITE ALONG THE PROPERTY LINE, (2) RELOCATING AN EXISTING RESIDENTIAL VICTORIAN BUILDING FROM 807 FRANKLIN TO 635 FULTON, AND
(3) ADDING ONE-ST","NEW FOUNDATION AND MEP TO PREPARE SITE FOR TWO (E) MOVED BUILDINGS, TWO (E) MOVED BUILDINGS TO COMPL",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EWHITE,Kerman Morris Architects,,4157490302,5 - Western Addition,5,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.777985368, -122.427274811)",22,4,11,9
Vacant,1015043,3941 Sacramento Street,FALSE,BP Filed,5/9/2017 0:00,0,0,0,0,,,,2017-005392PRJ,"2 STORY VERTICAL ADDITION AND ROOF DECKS. HORIZONTAL REAR AND FROTN ADITION. NEW 2ND UNIT AT GROUND FLOOR. INTERIOR REMODEL OF EXISTING UNIT, INCLUDING KITCHEN","2 STORY VERTICAL ADDITION AND ROOF DECKS. HORIZONTAL REAR AND FROTN ADITION. NEW 2ND UNIT AT GROUND FLOOR. INTERIOR REMODEL OF EXISTING UNIT, INCLUDING KITCHEN",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,,Eric McGinty,415-902-9137,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7865315163, -122.457779804)",10,8,6,31
Resident,1680016A,895 37TH AV,FALSE,BP Filed,8/7/2017 0:00,3,1,0,0,,,,,,(N)ADU PER ORD #162-16. CONVERT PORTION OF(E)GROUND FL GARAGE/STORAGE AREA INTO(N)ACCESSORY DWELLING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7721222167, -122.497282877)",8,8,4,29
Resident,3615041,676 CAPP ST,FALSE,BP Filed,12/1/2017 0:00,1,1,0,0,,,,,,"ADDING (N) UNIT AT REAR OF (E) BLG(STORAGE) WITH 2 BEDS, 1 KITCHEN, 1 LIVING, 1 DINING AT BASEMENT,",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7559299703, -122.418014835)",53,3,2,20
Resident,1537031,456 08TH AV,FALSE,BP Filed,10/13/2017 0:00,2,1,0,0,,,,,,REAR ADDITION WITH NEW 2ND DWELLING UNIT PARTIALLY WITHIN (E) GROUND FLOOR LEVEL. MODIFICATION AS RE,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7798406698, -122.466018458)",5,8,4,11
Resident,4943006,1018 HOLLISTER AV,FALSE,BP Filed,7/21/2017 0:00,2,1,0,0,,,,,,"IN (E) FOOTPRINT: CONVERT BASEMENT INTO ADU. REMODEL UPPER LVL FLR, EXPANDING THE LANDING OF EXISTIN",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7190994977, -122.390799176)",88,2,9,1
Mixres,3764063,525 HARRISON ST,TRUE,BP FILED,9/24/2015 0:00,179,179,25,25,On-site BMR Project,90% AMI;,Rental,2013,"The proposed project includes demolition of the existing two-story former industrial building (27,500 gsf), and the new construction of a 23-story residential building (approximately 255,468 gross square feet; up to 250-ft tall) with up to 205 dwelling u","TO ERECT 17 STORIES, 3 BASEMENT, 179 DWELLING UNITS & RETAIL BUILDING. ** MAHER: COMPLIANCE WITH ORDINANCE NO. 155-13 REQUIRED; ROUTE TO DPH **",0,-16000,0,0,-16000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,,,,9 - South of Market,6,Rincon Hill; Rincon Hill Streetscape Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7853672052, -122.393359325)",30,1,10,8
Resident,4105009,800 INDIANA ST,TRUE,CONSTRUCTION,4/6/2018 0:00,326,326,0,0,Fee Payment,,,2011,The proposed project is the demolition of the existing Opera Warehouse and construction of a new 340-unit multi-family units and 294 parking spaces. The project would be constructed in six building with a semi subterraen parking garage.,"TO ERECT 5 STORIES, 1 BASEMENT, 326 DWELLING UNITS RESIDENTIAL, PARKING, ACCESSORY USES BUILDING.
** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 REQUIRED; ROUTE TO DPH **",0,-74847,0,0,0,0,0,0,0,0,0,74847,0,-74847,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,Lou Vasquez,Joe Kirchofer,415-284-9080,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7591964042, -122.391729048)",55,2,9,26
Resident,1716027,1282 35TH AV,FALSE,BP Filed,1/10/2018 0:00,2,1,0,0,,,,,,"CONVERT (E) 1ST FL STORAGE AREA TO A NEW 2ND DWELLING UNIT WITH 1 BATH, 2 BEDS, KITCHEN & LIVING. SM",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7631682076, -122.494010033)",39,10,7,35
Resident,4760011,1494 REVERE AV,FALSE,BP Filed,8/29/2017 0:00,2,1,0,0,,,,,,"NEW ADU @ 1ST FLR. NEW KITCHEN, BATHROOM, 2-BDRM & LIVING ROOM. TO COMPLY WITH ORDINANCE 162-16.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7307343658, -122.387983833)",86,2,9,1
Mixres,3753148,377 06TH ST,TRUE,BP FILED,12/14/2017 0:00,90,90,12,12,On-site BMR Project,55% AMI;,Rental,2014,"The proposed project is to demolish the existing gas station and construct a new 8-story, 85-foot tall, 96,225-square-foot residential building with ground-floor retail. The existing 1,610-square-foot building on the 12,990 square foot lot was construct",,6485,4875,0,0,0,0,0,0,0,0,0,1610,0,-1610,0,6485,6485,0,0,0,0,0,0,0,0,DVU,"Nakash Enterprises, LLC",Will Mollard,415-523-0304,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7776640853, -122.404157101)",32,1,10,34
Mixres,3965021,2435 - 2445 16TH ST,TRUE,BP FILED,7/13/2016 0:00,53,53,8,8,On-site BMR Project,90% AMI;,Ownership,2014,DEMOLISH AUTO REPAIR SHOP,TO ERECT 7 STORIES OF 53 DWELLING UNITS (MIX USE BLDG TYPE I CONSTRUCTION),7399,-2598,0,0,0,0,0,0,0,0,0,0,0,-9997,0,7399,7399,0,0,0,0,0,0,0,0,EJACKSON,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7653208741, -122.411119978)",53,3,2,20
Resident,1772007,1318 18TH AV,FALSE,BP Filed,2/21/2018 0:00,2,1,0,0,,,,,,"UNIT LEGALIZATION PER ORDINANCE 43-14 AT 1ST FLR FRONT BUILDING, BUILDING A.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7631973988, -122.475696439)",109,10,7,14
Resident,6965A033,20 NAVAJO AV,FALSE,BP Filed,8/4/2017 0:00,2,1,0,0,,,,,,"ADD UNIT ON 1ST FLOOR PER ORDINANCE# 95-17. (2 BEDROOMS, KITCHEN, LIVING & 1 BATH) HORIZONTAL ADDITI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7197935752, -122.443241729)",80,9,1,28
Resident,3092059,427 JOOST AV,FALSE,BP Filed,4/27/2017 0:00,2,1,0,0,,,,,,"TO CORRECT ITEMS IN NOV 201650053 PER UNIT LEGALIZATION ORDINANCE #43-14, LEGALIZING AND (E) GROUND",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7321109015, -122.444969869)",95,9,8,41
Resident,6927001,496 URBANO DR,FALSE,BP Filed,1/4/2018 0:00,2,1,0,0,,,,,,COMPLY WITH NOV#201780321. PER ADU# 95-17. (1 BED & 1 BATH) RELOCATE LAUNDRY TO GARAGE HALLWAY FROM,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7233995723, -122.468131127)",67,10,8,41
Mixres,2515001,2800 SLOAT BL,TRUE,CONSTRUCTION,4/10/2018 0:00,56,56,7,7,On-site BMR Project,90% AMI;,Ownership,2005,"Demolition of existing buildings and construction of three new five-story buildings with a total of 55 dwelling units, 48 parking spaces in an underground parking garage, 26,000 gsf of ground floor retail, and 34 covered spaces for the commercial use.","TO ERECT 5 STORIES, 1 BASEMENT, 56 UNITS RESIDENTIAL OVER COMMERCIAL, MIXED USED BUILDING.",22779,6435,0,0,0,0,0,0,0,0,0,0,0,0,0,22779,22779,0,0,0,0,-16344,0,0,0,KCONNER,Kieran O'Carroll,Rachel Hamilton,510-547-6914,15 - Outer Sunset,4,Western Shoreline,Rest of the City,2018,Q1,2018_Q1,"(37.7358537739, -122.504737332)",40,10,7,35
Vacant,3733018,840 FOLSOM ST,FALSE,BP Filed,7/31/2017 0:00,0,0,0,0,,,,,,CHANGE OF USE FROM INDUSTRIAL TO RETAIL SALES. REMOVE PART OF MEZZANINE. TENANT IMPROVEMENTS. SPRINK,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Central SoMa; Downtown Streetscape Plan; Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7814808596, -122.402444497)",32,1,10,34
Mixres,855016,1700 MARKET ST,TRUE,BP APPROVED,9/26/2017 0:00,42,42,5,5,On-site BMR Project,90% AMI;,Ownership,2013,"43 unit, 8 story residential building with ground floor commerical.",CONSTRUCT (N) MIXED-USED BUILDING (APARTMENT & COMMERCIAL),1753,-1647,0,0,0,0,0,0,0,0,0,0,0,0,3400,1753,-1647,0,0,0,0,0,0,0,0,TCHANG,Warner Schmalz,Warner Schmalz,415-252-7063,6 - Buena Vista,5,The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys; Lower Haight Public Realm Plan,Market & Octavia,2018,Q1,2018_Q1,"(37.7729534153, -122.422447142)",26,4,11,9
Mixres,3719010,181 FREMONT ST,TRUE,CONSTRUCTION,3/26/2018 0:00,74,74,0,0,Fee Payment,,Ownership,2007,"66-story office mixed-use high-rise project, 796,933 total gsf, 878-ft, with class A office space (floors 2-44), 140 units residential (floors 47-65), with sky lobby, and auto lift-accessed 241-space 4-level underground parking; requiring demolition of","TO ERECT 54 STORIES, 5 BASEMENT, 74 RESIDENTIAL UNITS WITH RETAIL, OFFICE, PARKING BUILDING.
",530316,492866,0,0,0,0,0,0,0,530316,492866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SJONES,Daniel Kingsley,Daniel Kingsley,415.421.8200,4 - Downtown,6,Downtown; Downtown Streetscape Plan; Transbay; Transit Center District; Transit Center District Streetscape Plan,Transit Center District,2018,Q1,2018_Q1,"(37.7896424393, -122.395220788)",32,1,10,8
Resident,7539004,1915 Diamond St,FALSE,BP Filed,5/17/2013 0:00,1,0,0,0,,,,2015-003953PRJ,"Horizontal and vertical expansion to existing 3-story (2 unit dwelling). Proposed work includes new 4th floor, deck, facade changes and landscaping in front yard and new construction of a new third unit above an existing garage structure facing Beacon St",COMPLY WITH N.O.V.#200225295. ADDING BEDROOM ABOVE GARAGE (E) ON STREET LEVEL (256 SQFT) & HORIZONTAL ADDITION AT REAR ON STREET LEVEL(305 SQFT) INTERIOR REMODEL.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NTRAN,,FREITAS ELIZABETH A,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7421425658, -122.435110681)",59,9,5,10
Resident,2032002,1719 17TH AV,FALSE,BP Filed,9/1/2017 0:00,2,1,0,0,,,,,,"BASEMENT 550 SQ FT OF CONDITIONED SPACE, ADD ADU PER ORDINANCE NO 95-17 W/ MINOR EXPANSION UNDER SUP",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7557706527, -122.47476388)",44,10,8,14
Resident,1546018B,234 BALBOA ST,FALSE,BP Filed,2/8/2018 0:00,2,0,0,0,,,,,,CHANGE OF USE. CHANGE (E) BUILDING TO CHILDCARE CENTER,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7775902745, -122.461465053)",5,8,4,11
Resident,63011,526 LOMBARD ST,FALSE,BP Filed,7/18/2017 0:00,2,2,0,0,,,,,,"TO ERECT 4 STORIES, 1 BASEMENT, TYPE V-B, 2 UNITS RESIDENTIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8034491016, -122.410336044)",106,6,3,23
Resident,5071009,250 TOCOLOMA AV,FALSE,BP Filed,3/30/2018 0:00,2,1,0,0,,,,,,ADD ADU AT 1ST FL WITH ONE BATH AND ONE KITCHEN PER ORDINANCE 95-17. REPLACE EXISTING SLAB ON GRADE.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7120763499, -122.398239713)",89,2,9,1
Resident,5684018,1000 CORTLAND AV,FALSE,BP Filed,3/21/2018 0:00,8,0,0,0,,,,,,"CHANGE OF USE FROM HAIR SALON TO A FULL SERVICE RESTAURANT - NOT FORMULA RETAIL. INTERIOR WALLS, KIT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.738854607, -122.413161087)",83,9,2,2
Vacant,3777037,518 BRANNAN ST,FALSE,BP Filed,6/2/2017 0:00,0,0,0,0,,,,,,"CHANGE OF USE FROM AUTOMOTIVE TO MEDICAL MARIJUANA DISPENSARY WHICH WILL INCLUDE (N) FLOORING, LIGHT",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,9 - South of Market,6,Central SoMa; Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7781586514, -122.397329512)",32,1,10,34
Resident,6193009,250 WILDE AV,FALSE,BP Filed,11/21/2017 0:00,2,1,0,0,,,,,,COMPLY W/ NOV #201607421. ADD (1) DWELLING UNIT PER ORD #95-17. (1) STORY VERTICAL ADDITION. 1ST FLO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,10,,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7163065529, -122.402028432)",91,9,9,40
Resident,665002,1551 FRANKLIN ST,TRUE,BP ISSUED,9/11/2017 0:00,5,2,0,0,,,,2016-000663PRJ,ADDITIONAL TWO (2) NEW UNITS PER ORDINANCE 30-15; SEISMIC APPLICATION UNDER SEPARATE PERMIT 201509046210.,ADDITIONAL ONE (1) NEW UNITS PER ORDINANCE 162-16; SEISMIC APPLICATION UNDER SEPARATE PERMIT 201509046210.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ESAMONSK,ALVIN & ANNA HUIE REVOCABLE TRUST,ALVIN & ANNA HUIE REVOCABLE TRUST,,5 - Western Addition,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.788965264, -122.423984831)",100,4,6,39
Resident,3510058,915 - 935 MINNA ST,TRUE,BP ISSUED,11/8/2017 0:00,6,6,6,6,On-site BMR Project,55% AMI;,Rental,2015-002600PRJ,"Proposed new construction of a residential building (4 stories above ground).
The PPA was submitted on 3/2/15 and the 90 day deadline is 5/31/2015.","TO ERECT 4 STORIES, NO BASEMENT, TYPE VA, 6 UNITS MULTI-FAMILY RESIDENTIAL BUILDING.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DVU,Equity Community Builders,,4156516200,4 - Downtown,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7742867308, -122.415799574)",32,1,10,34
Resident,535007,2350 UNION ST,FALSE,BP Filed,2/6/2018 0:00,2,2,0,0,,,,,,ADD TWO NEW ACCESSORY DWELLING UNITS TO DETACHED EXISTING GARAGE PER ORD 162-16.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7970487299, -122.438060658)",14,4,6,13
Resident,2713013,71 EAGLE ST,FALSE,BP Filed,10/19/2017 0:00,2,0,0,0,,,,2017-014237PRJ,Interior and exterior additions and modifications to an existing single family home. Addition of a new dwelling unit.,REMODEL (E) GARAGE TO INCLUDE LAUNDRY & UTILITIES. ADD A 403 SQ FT APARTMENT. REMODEL FRONT FACADE TO INCLUDE DECK ON 2ND STORY.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GPANTOJA,,,5108332643,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7582252778, -122.443252391)",115,3,5,5
Resident,5341009B,1566 SHAFTER AV,FALSE,BP Filed,9/26/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF UNAUTHORIZED (N) UNIT PER ORDINANCE 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7308853616, -122.389923439)",86,2,9,1
Resident,1262021,858 STANYAN ST,FALSE,BP Filed,6/29/2017 0:00,3,3,0,0,,,,,,VERTICAL ADDITION & RENOVATION OF (E) COMMERCIAL / RETAIL BUILDING. ADD 4 FLOORS WITH 3 RESIDENTIAL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,5,Haight Ashbury Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7665426175, -122.452671667)",29,7,11,3
Resident,2627005,48 SATURN ST,FALSE,BP Filed,5/3/2017 0:00,1,1,0,0,,,,,,"ERECT 4-STORY, 1 BASEMENT, TYPE 5, SINGLE FAMILY DWELLING UNIT BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7629037267, -122.44208801)",112,7,5,5
Resident,1626012,1726 CABRILLO ST,FALSE,BP Filed,10/26/2017 0:00,3,1,0,0,,,,,,LEGALIZATION PER ORDINANCE# 43-14 @ GROUND FLOOR OF (E) 3 STORY. REPURPOSE (E) GARAGE FOR NEW BIKE P,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7750012273, -122.477381528)",5,8,4,29
Resident,256016,875 CALIFORNIA ST / 770 POWELL ST,TRUE,BP ISSUED,12/29/2017 0:00,44,44,0,0,Fee Payment,,,2014-000609PRJ,"The project proposes to demolish a parking structure at 875 California and parking lot at 770 Powell Street and construct a 52,400 gsf residential building, with 15,150 gsf parking in the basement.","TO ERECT 8 STORIES, 1 BASEMENT, 44 UNITS RESIDENTIAL BUILDING.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KGUY,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7917833818, -122.408914801)",16,6,3,21
Resident,6053019,534 WOOLSEY ST,FALSE,BP Filed,3/22/2018 0:00,2,1,0,0,,,,,,COMPLY W/ NOV# 201846591 TO LEGALIZE EXISTING KITCHEN @ GROUND FLR PER ORD# 95-17. REF PA# 201305136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7242611956, -122.407220305)",91,2,2,25
Resident,6612017,448 VALLEY ST,FALSE,BP Filed,12/18/2017 0:00,2,2,0,0,,,,,,ERECT (N) 3-STORY MUTLI-RESIDENTIAL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7443972185, -122.432436793)",84,9,5,22
Resident,5697006,332 BRADFORD ST,FALSE,BP Filed,1/19/2018 0:00,1,1,0,0,,,,,,ERECT 2-STORY SINGLE FAMILY DWELLING UNIT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7376674283, -122.409873794)",83,9,2,2
Resident,2033A008,1741 16TH AV,FALSE,BP Filed,6/26/2017 0:00,2,1,0,0,,,,,,ADDITION OF NEW UNIT ON 1ST FLOOR. NO EXTERIOR CHANGES BASED ON STATE LAW. TO COMPLETE THE UNIT A KI,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7554236083, -122.473698322)",44,10,8,14
Resident,857002,55 LAGUNA ST (SENIOR CENTER),TRUE,CONSTRUCTION,4/12/2018 0:00,79,79,78,78,On-site BMR Project,55% AMI;,Rental,2012,"Mixed-use project which would include construction of seven new buildings and the adaptive re-use of two existing buildings for 491 dwelling units, 421 off-street parking spaces, 3,500 GSF of retail use, 12,000 GSF for a dental clinic, and 12,590 GSF for","TO ERECT 6 STORIES, NO BASEMENT, 79 UNITS RESIDENTIAL SENIOR CENTER BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,"Farella, Braun + Martel",,4159544902,6 - Buena Vista,8,Market and Octavia; Market Octavia Living Alleys; Lower Haight Public Realm Plan,Market & Octavia,2018,Q1,2018_Q1,"(37.7716971219, -122.426146641)",27,4,5,9
Resident,4909003,1212 EGBERT AV,TRUE,BP ISSUED,11/30/2017 0:00,2,2,0,0,,,,,,COMPLIANCE WITH ORDINANCE NO. 155-13 NOT REQUIRED. EXCAVATION<50 CU.YD. ERECT 2 STORIES ONE SINGLE FAMILY DWELLING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7209163425, -122.389005623)",88,2,9,1
Mixres,5683012,906 CORTLAND AV,TRUE,CONSTRUCTION,9/27/2017 0:00,2,2,0,0,,,,2012,"2 lot Subdivision, demolition of existing two-story commercial building damaged by fire, and construction of a three-story mixed-use building with a commercial storefront and accessory parking at the ground floor, two dwelling units at the second and thi",ERECT 3 STORIES OF 2 DWELLING UNITS.,150,-690,0,0,0,0,0,0,0,0,0,0,0,0,840,150,-690,0,0,0,0,0,0,0,0,DVU,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7387730926, -122.413613604)",83,9,2,2
Resident,6019006,340 NAPLES ST,FALSE,BP FILED,7/6/2016 0:00,2,1,0,0,,,,,,UNIT LEGALIZATION ORD #43-14 & COMPLY W/ NOV 201208941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ADINASEE,,,,12 - South Central,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7233934474, -122.429624774)",90,9,1,7
MIPS,3775064,140 SOUTH PARK ST,TRUE,BP ISSUED,10/4/2017 0:00,0,0,0,0,,,,2016-005034PRJ,CHANGE OF USE FROM INDUSTRIAL TO 1ST FLOOR RETAIL & 2ND FLOOR OFFICE / BUSINESS. INTERIOR RENOVATION. NEW STORFRONT WINDOWS ON SOUTH ELEVATION. NEW WINDOW REPLACEMENT IN KIND. MEP UPGRADE. ** MAHER: N/A **,"CHANGE OF USE FROM INDUSTRIAL TO 1ST FLOOR RETAIL & 2ND FLOOR OFFICE / BUSINESS. INTERIOR RENOVATION. NEW STORFRONT WINDOWS ON SOUTH ELEVATION. NEW WINDOW REPLACEMENT IN KIND. MEP UPGRADE UNDER SEPERATE PERMIT.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,YEUNGMIN,LINDA A GRIMES REVOC TR REVOC TR,LINDA A GRIMES REVOC TR,,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7814571089, -122.394729003)",31,1,10,8
Resident,2618018,138 LOWER TR,FALSE,BP FILED,10/20/2016 0:00,3,1,0,0,,,,2016-014942PRJ,"ADD UNIT PER ORDINANC NO.162-16. BLDG OUT AN ADU WITH IN THE (E) 1ST FLR STORAGE AREA. NO EXPANSION OF BLDG ENVELOPE. ADE INCLUDESS 1 BEDROOM, 1 BATHROOM, KITCHEN & LIVING RM. 2 (E) WATER HEATER AND FAUS FOR UPPER UNITS TO BE RELOCATED/REPLACED. (N) WH &","ADD UNIT PER ORDINANC NO.162-16. BLDG OUT AN ADU WITH IN THE (E) 1ST FLR STORAGE AREA. NO EXPANSION OF BLDG ENVELOPE. ADE INCLUDESS 1 BEDROOM, 1 BATHROOM, KITCHEN & LIVING RM. 2 (E) WATER HEATER AND FAUS FOR UPPER UNITS TO BE RELOCATED/REPLACED. (N) WH &",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ADINASEE,Kelly Melendez,,4153054959,6 - Buena Vista,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7634644181, -122.442190863)",112,7,5,5
Mixres,3730007,262 07TH ST,FALSE,PL FILED,5/6/2016 0:00,86,86,0,0,,,,2014.0334PRJ,"The proposed project is to demolish the existing one story, approximately 7,800 square-foot warehouse and construct a new structure that would be 65-feet tall and 124-feet deep measured from 7th Street; a required rear yard would be 41.33 feet deep and f",,1662,-6093,0,0,0,0,0,0,0,0,0,7755,0,-7755,0,1662,1662,0,0,0,0,0,0,0,0,VBYRD,SIA Consulting Corp.,,415-922-0200,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7769856325, -122.408736879)",32,1,10,34
Resident,6209052,202 TEDDY AV,FALSE,BP FILED,5/13/2015 0:00,3,2,0,0,,,,2015-006747PRJ,"Demolish one single-family residence, subdivide into three (3) lots, and construct three (3) new single-family residences.","ERECT 3-STORY, TYPE V, 1 DWELLING UNIT BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JDISALVO,,TAM YIN KWAN,,12 - South Central,10,,Rest of the City,2018,Q1,2018_Q1,"(37.7148275871, -122.406551663)",75,9,9,40
Resident,7135023,216 HEAD ST,TRUE,BP REINSTATED,3/14/2016 0:00,1,1,0,0,,,,2011,,"ERECT 3 STORIES, TYPE 5, SINGLE FAMILY DWELLING BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,APERRY,,,,13 - Ingleside,7,,19th Avenue,2018,Q1,2018_Q1,"(37.7112827041, -122.464091752)",65,10,8,24
CIE,1156013,1660 MCALLISTER ST,FALSE,BP FILED,1/26/2015 0:00,0,0,0,0,,,,2015-001323PRJ,COMPLETE CHANGE OF USE FROM GARAGE TO CHURCH. COMPLETE WORK IN BATHROOMS & PULPIT AREA. INSTALL NEW LIGHTING / REMODEL PASTERO'S OFFICE & INSTALL BATHROOM. ** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 NOT REQUIRED,"COMPLETE CHANGE OF USE FROM GARAGE TO CHURCH. COMPLETE WORK IN BATHROOMS & PULPIT AREA. INSTALL NEW LIGHTING / REMODEL PASTERO'S OFFICE & INSTALL BATHROOM.
** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 NOT REQUIRED **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SYOUNG,,JERUSALEM CHURCH OF GOD IN CHR,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7779529611, -122.439370386)",97,7,11,39
Resident,1462031,460 31ST AV,TRUE,CONSTRUCTION,4/11/2018 0:00,2,2,0,0,,,,2014-003232PRJ,Demolish existing non-historic single family dwelling. Construct new 4-story over basement two-family dwelling with 4 parking spaces,"TO ERECT 4 STORIES, 1 BASEMENT, 2 FAMILIES DWELLING BLDG.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,"Gabriel Ng + Architects, Inc.",,4156828060,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7806293793, -122.490887127)",8,8,4,29
Resident,5377071,159 CHARTER OAK AV,FALSE,BP FILED,8/4/2016 0:00,3,3,0,0,,,,,,"ERECT 3 STORY, NO BASEMENT, SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7353248119, -122.404254)",87,2,9,1
Resident,150053,1000-1020 BROADWAY,TRUE,BP FILED,7/12/2016 0:00,4,4,0,0,,,,2006,"Proposed project would involve a three-lot subdivision and the new construction of three buildings, one on each newly subdivided lot, two single-family dwellings and one duplex. The buildings would total approximately 19,000 sq. ft., 10 parking spaces, a",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AHOLLIST,David P. Cincotta,David P. Cincotta,415-398-8080,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.797187166, -122.414045538)",107,6,3,21
Resident,1726015,1273 24TH AV,TRUE,BP ISSUED,7/18/2016 0:00,3,1,0,0,,,,2015-014529PRJ,"LEGALIZATION OF DWELLING UNIT. UNIT EXISTS ON GR FL, COVERTED FROM RECREATION ROOM","PER ORDINANCE# 43-14, LEGALIZATION OF DWELLING UNIT. UNIT EXISTS ON GR FL, COVERTED FROM RECREATION ROOM",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SAMONSKY,,EREMIAN ALEX,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7638666242, -122.482849712)",39,10,7,35
Resident,4937017,2626 GRIFFITH ST,FALSE,BP FILED,1/4/2016 0:00,1,1,0,0,,,,2016-000471PRJ,"TO ERECT 3 STORIES, NO BASEMENT, SINGLE FAMILY DWELLING.","TO ERECT 3 STORIES, NO BASEMENT, SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ALEXANDE,HE GUO BAO & WU SU QIN,HE GUO BAO & WU SU QIN,,10 - South Bayshore,10,Candlestick Point; Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7186214879, -122.388080213)",88,2,9,1
Resident,1736033,1208 15TH AV,TRUE,CONSTRUCTION,6/6/2014 0:00,2,2,0,0,,,,,,TO ERECT 2 DWELLING UNIT WITH 3-STORY NEW BUILDING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ETOPE,,,,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7652505851, -122.472542324)",109,10,11,14
Resident,6685006A,240 CHENERY ST,TRUE,BP REINSTATED,3/20/2018 0:00,2,1,0,0,,,,2015-003919PRJ,Repair and renovation with a horizontal addition to an existing non-conforming unit within the rear yard. Repairs are required due to fire damage.,"FRONT BLDG. ERECT 3-STORY, 1 BASEMENT, TYPE 5, 1 DWELLING UNIT BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MBOUDREA,MAK Studio,,4158615646,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7383398946, -122.426566238)",59,9,5,10
PDR,4811011,1350 VAN DYKE AV,TRUE,BP ISSUED,11/7/2016 0:00,0,0,0,0,,,,2015-000959PRJ,"REMODEL TENANT SUITE INCLUDING DEMOLISTION & CONSTRUCTION CONVERT (E) GROUND FLOOR FROM STORAGE TO PARKING GARAGE CONSTRUCT 2ND FLOOR FOR STORAGE, AN CONSTRUCT NEW 3RD FLOOR VERTICAL ADDITON FOR STORAGE AND OFFICE. NEW STAIR & ELEVATOR. MEHER-COMPLIANCE","REMODEL TENANT SUITE INCLUDING DEMOLITION & CONSTRUCTION CONVERT (E) GROUND FLOOR FROM STORAGE TO PARKING GARAGE CONSTRUCT 2ND FLOOR FOR STORAGE, AND CONSTRUCT NEW 3RD FLOOR VERTICAL ADDITON FOR STORAGE AND OFFICE. NEW STAIR & ELEVATOR. MAHER-COMPLIANCE",28142,14649,0,0,0,0,0,0,0,0,0,13493,28142,14649,0,0,0,0,0,0,0,0,0,0,0,JSPEIRS,,LAU DAVID ZE FAN,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7266314388, -122.387417302)",86,2,9,1
PDR,5559008,175 BAY SHORE BL,FALSE,PL FILED,12/1/2016 0:00,0,0,0,0,,,,2016-006393PRJ,"Demolition of existing 1-story Plumbing supply business storage and construct new 1-story of Auto body repair & paint shop building.
The PPA was submitted on 5/12/16 and the 90 day deadline is 8/10/16.",,11690,9930,0,0,0,0,0,0,0,0,0,0,11690,11690,1760,0,-1760,0,0,0,0,0,0,0,0,,D-Scheme Studio,,4152520888,10 - South Bayshore,10,Bayshore Boulevard; Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7456043179, -122.403372606)",85,2,9,1
MIPS,7544045,199 EVERSON ST,FALSE,BP FILED,3/9/2016 0:00,0,0,0,0,,,,2016-006865PRJ,CONSTRUCT (N) ACTIVITY ROOM/OFFICE IN A 1-STORY BUILDING,CONSTRUCT (N) ACTIVITY ROOM/OFFICE IN A 1-STORY BUILDING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,DIAMOND VIEW RESIDENTS ASSOC ASSOC,DIAMOND VIEW RESIDENTS ASSOC,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7390877716, -122.43307892)",59,9,5,10
Resident,869007,127 BUCHANAN ST,TRUE,CONSTRUCTION,4/2/2018 0:00,4,4,0,0,,,,2014-000240PRJ,Construction of new 5-unit building.,"TO ERECT 4 STORIES, 4 UNITS RESIDENTIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SVELLVE,,127 BUCHANAN LLC,,6 - Buena Vista,5,Market and Octavia; Market Octavia Living Alleys; Lower Haight Public Realm Plan,Market & Octavia,2018,Q1,2018_Q1,"(37.7709840968, -122.427208197)",27,7,11,9
Resident,2853009,998 BURNETT AV,FALSE,BP Filed,2/20/2018 0:00,2,1,0,0,,,,,,"LEGALIZATION OF (E) ADU PER ORDINANCE# 162-16, & CORRECTION OF (E) VIOLATIONS. (N) FINISHES & (N) PA",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7471266309, -122.4451392)",48,7,5,38
Mixres,1107008,2500 - 2698 TURK ST,FALSE,BP FILED,11/30/2016 0:00,71,71,0,0,,,,2015-000058PRJ,"New construction of two buildings connected by an elevated walkway. A combined total of 205,000 gsf, excluding the underground garage (77,000 gsf). The buildings will provide approximately 600 beds in approximately 444 bedrooms between the two building","(WEST BUILDING) TO ERECT 4 STORIES, 1 BASEMENT, TYPE IA/5A, 71 UNITS STUDENT RESIDNECE HALL WITH AMENITY OFFICE.",2000,-6500,0,2000,-6500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MWOODS,"Coblentz Patch Duffy & Bass, LLP",Harry O'Brien,415-772-5723,5 - Western Addition,1,,Rest of the City,2018,Q1,2018_Q1,"(37.779098838, -122.451448083)",12,7,4,18
Resident,1763027,1366 09TH AV,TRUE,BP ISSUED,1/8/2016 0:00,2,1,0,0,,,,,,"LEGALIZE (E) UNIT & KITCHEN PER ORD-43-14. ADD TWO LAYERS OF TYPE ""X"" GYPSUM BOARD TO CEILING BELOW UNIT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7628132405, -122.465895988)",109,10,11,14
Resident,2027012A,1779 22ND AV,FALSE,BP FILED,9/13/2016 0:00,2,1,0,0,,,,,,CONVERT EXISTING GROUND FLOOR IN-LAW UNIT FOR A LEGAL IN-LAW DWELLING UNIT PER ORD 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ADINASEE,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.754506347, -122.480045057)",39,10,7,35
Mixres,533014,2150 UNION ST,TRUE,BP ISSUED,3/8/2018 0:00,6,4,0,0,,,,2016-014626PRJ,Vertical and horizontal addition to an existing 2-story dwelling over ground floor commercial building. Addition of 4 new dwelling units. Interior renovations and additions. Facade modifications.,"ADDITION AND RENOVATION OF MIXED USE RETAIL/RESIDENTIAL BLDG. RENOVATION OF (E) GROUND FLR RETAIL & 2 (E) RESIDENTIAL UNITS. ADDITION OF (4) RESIDENTIAL UNITS AT REAR OF BUILDING. TOTAL ADDITION OF 4,191 SF.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,FARRENSW,Elevation Architects,Jonathan Pearlman,4155371125 X,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7974750636, -122.434710914)",15,4,6,13
Mixres,936014,2444 LOMBARD ST,FALSE,PL FILED,3/25/2015 0:00,53,53,0,0,,,,2014,"The proposed project is to demolish the existing building and construct a new mixed-use building consisting of 53 residential units, a basement-level residential parking garage, ground-floor retail space, and commercial parking. The building would be fo",,4000,-12000,0,2000,-6000,0,0,0,0,0,0,0,0,0,8000,2000,-6000,0,0,0,0,0,0,0,0,DLINDSAY,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7994135725, -122.442052407)",17,4,6,13
Resident,2086007A,1966 GREAT HY,TRUE,BP FILED,4/10/2009 0:00,2,2,0,0,,,,2009,NEW TWO-UNIT RESIDENTIAL STRUCTURE. VARIANCE FOR FRONT SETBACK.,"ERECT A 4-STORIES, 2 FAMILY DWELLING UNITS BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CJAROSLA,,,,15 - Outer Sunset,4,Western Shoreline,Rest of the City,2018,Q1,2018_Q1,"(37.7497758189, -122.507788431)",39,10,7,35
Mixres,836006,1550 MARKET ST,TRUE,PL APPROVED,10/16/2015 0:00,109,109,0,0,,,,2012,"Demolition of two existing buildings and the construction of a new 12-story residential tower with 109 dwelling units, 4,560sf of ground floor commercial space, 105 bicycle parking spaces, a car share space, 28 off-street parking spaces, and a landscaped",,4560,-16928,0,0,0,0,0,0,0,0,-14822,0,0,0,0,4560,-2106,0,0,0,0,0,0,0,0,EWATTY,Christopher Davenport,Christopher Davenport,925-309-2503,6 - Buena Vista,5,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7748892672, -122.420080841)",21,4,11,9
Mixres,1084001B,1 STANYAN ST,TRUE,CONSTRUCTION,10/25/2017 0:00,13,13,0,0,Fee Payment,,,2007,"The proposed project would demolish the existing gas station and construct a new 13-unit residential building with 1,700 sq. ft. of ground floor retail and 14 parking spaces. The building would be approx. 24,256 sq ft, four-stories, and 40 feet in height","TO ERECT 4 STORIES, NO BASEMENT, 13 UNITS RESIDENTIAL WITH RETAIL & PARKING BUILDING.",1700,-5810,0,0,0,0,0,0,0,0,0,0,0,0,7510,1700,-5810,0,0,0,0,0,0,0,0,SVELLVE,John E. McInerney Esq.,Bruce Baumann,415 551-7884,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7810723629, -122.456521625)",12,8,4,18
Resident,874009,22 CHURCH ST,FALSE,BP FILED,12/30/2016 0:00,4,2,0,0,,,,2017-000263PRJ,VERTICAL ADDITION ADD A 3RD STORY. ADD 2 UNITS @ BASEMENT & 3RD FLOOR WITH 2 BATHROOMS & 1 BATH.,VERTICAL ADDITION ADD A 3RD STORY. ADD 2 UNITS @ BASEMENT & 3RD FLOOR WITH 2 BATHROOMS & 1 BATH.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,FARRENSW,HARTY CIARAN HARTY,HARTY CIARAN,,6 - Buena Vista,8,Market and Octavia; Market Octavia Living Alleys; Lower Haight Public Realm Plan,Market & Octavia,2018,Q1,2018_Q1,"(37.769958912, -122.429469989)",28,7,5,9
Resident,2303016,2277 46TH AV,FALSE,BP FILED,5/8/2015 0:00,2,1,0,0,,,,,,(N) KITCHEN ON 1ST FL & LEGALIZE IN-LAW DWELLING UNIT UNDER ORD #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7440638708, -122.505111711)",39,10,7,35
Resident,3702308,1169 MARKET ST,TRUE,BP ISSUED,10/24/2016 0:00,0,0,0,0,,,,,,"TO ERECT 18 STORIES, 6 BASEMENTS, 501 UNITS RESIDENTIAL, RETAIL WITH PARKING BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TCHANG,,,,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7784409344, -122.413479161)",32,5,10,34
Resident,6566027,1411 CHURCH ST,FALSE,BP FILED,6/4/2012 0:00,2,1,0,0,,,,,,ADD NEW DWELLING UNIT AT GROUND FLOOR. INTERIOR REMODEL AT 2ND FLOOR REAR. ADD NEW BATH & RECONFIGURE BEDROOM ON 3RD FLOOR. NEW 3 STORY ADDITION AT REAR.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JLOOK,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7482552419, -122.426789703)",52,3,5,22
Resident,6020033A,618 EXCELSIOR AV,TRUE,CONSTRUCTION,7/1/2016 0:00,2,1,0,0,,,,,,LEGALIZE INLAW (E) BATH RM AND (E) KITCHEN UNIT LEGALIZATION PER ORDINANCE 43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,12 - South Central,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7236296147, -122.428608358)",90,9,1,7
Resident,6921001,101 URBANO DR,TRUE,CONSTRUCTION,3/6/2018 0:00,2,1,0,0,,,,,,"COMPLY W/ COMPLAINT #201776386, UNIT LEGALIZATION ORD 43-14, LEGALIZATION OF DWELLING UNIT INSTALL W",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7250741456, -122.464541104)",67,10,8,41
Resident,1254005,22 DOWNEY ST,TRUE,BP ISSUED,4/5/2018 0:00,3,2,0,0,,,,2016-010485PRJ,ADDITION OF 3 (N) ACCESSORY DWELLING UNITS TO 721 ASHBURY ST AND 1 (N) ACCESSORY DWELLING UNIT TO 22 DOWNEY ST PER ORDINANCE 30-15 IN REFERENCE TO PA #2016-06-03-9090.,ORD 30-15. ADDITION OF (2) NEW UNITS AT 22 DOWNEY ST. PER ORDINANCE NO 30-15. SEISMIC APP #2016-0603-9090 (721 ASHBURY) APP #2016-0725-3280 (22 DOWNEY).,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ALEXANDE,Gina Weyant,,4156038460,6 - Buena Vista,5,Haight Ashbury Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7685330677, -122.447082493)",25,7,11,3
Resident,6526021,1441 SOUTH VAN NESS AV,FALSE,BP FILED,8/9/2016 0:00,3,1,0,0,,,,2016-005617PRJ,LEGALIZE GROUND FLOOR UNIT PER NOV #201695061. (N) NFPA 13-R FIRE SPRINKLERS UNDER SEPERATE PERMIT. VERTICAL & HORITZONTAL ADDITION & REMODEL OF MULTI-FAMILY RESIDENCE. (N) KITCHEN ON 1ST & 2ND FLRS. ADD 4TH FLR (N) KITCHEN (N) PWDR RM & (N) DECK. (N) SO,LEGALIZE GROUND FLOOR UNIT PER NOV #201695061. (N) NFPA 13-R FIRE SPRINKLERS UNDER SEPERATE PERMIT. VERTICAL & HORITZONTAL ADDITION & REMODEL OF MULTI-FAMILY RESIDENCE. (N) KITCHEN ON 1ST & 2ND FLRS. ADD 4TH FLR (N) KITCHEN (N) PWDR RM & (N) DECK. (N) SO,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"SPEIRS,J",ZHANG MARK GE,ZHANG MARK GE,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7501356067, -122.415703633)",53,3,2,20
MIPS,4334001,"1420 HAMPSHIRE STREET, 2801 26TH ST",FALSE,BP FILED,12/6/2016 0:00,0,0,0,0,,,,2016-007695PRJ,"The proposed project is a vertical addition to the existing Residential Care for the Elderly (RCFE) facility, to expand from 34 beds to 96. The addition would be two stories tall, within the same footprint as the existing building. Open space will be p",TWO STORY ADDITION TO EXISTING ONE STORY. O/BASEMENT RESIDENTIAL CARE FACILITY.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DSIROIS,Merced Residential Care,,4152186776,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7494674016, -122.407082445)",53,3,2,20
Resident,1246018,38 BELVEDERE ST,TRUE,CONSTRUCTION,6/12/2017 0:00,8,2,0,0,,,,2016-006866PRJ,"PER ORDINANCES 30-15. 1ST FLOOR UNIT ADDITION/ALTERNATION, DEMO STORAGE SPACE, PROVIDE ONE STUDIO APARTMENT, AND ONE 2 BEDROOMS APARTMENT. WORK DONE IN CONJUNCTION W/ SEISMIC STRENGTHENING SEPARATE PERMIT UNDER PA# 2016/05/16/7509.","PER ORDINANCES 30-15. 1ST FLOOR UNIT ADDITION/ALTERATION, DEMO STORAGE SPACE, PROVIDE ONE STUDIO APARTMENT, AND ONE 2 BEDROOMS APARTMENT. WORK DONE IN CONJUNCTION W/ SEISMIC STRENGTHENING SEPARATE PERMIT UNDER PA# 2016/05/16/7509.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ALEXANDE,DRIES PAUL G DRIES,DRIES PAUL G,,6 - Buena Vista,5,Haight Ashbury Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7691678078, -122.449215925)",25,7,11,3
Mixres,667020,1525 PINE ST,FALSE,PL FILED,5/9/2016 0:00,15,15,0,0,,,,2015-009955PRJ,Demolition of existing 1 story restaurant; construction of a new 7 story mixed-use commercial and residential building with two commercial spaces at ground floor.,,1695,-25,0,0,0,0,0,0,0,0,0,0,0,0,0,1695,-25,0,0,0,0,0,0,0,0,,D-Scheme Studio,,4152520888,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7893210698, -122.420826389)",50,4,3,21
Resident,1219008,1122 PAGE ST,TRUE,BP ISSUED,5/31/2011 0:00,4,1,0,0,,,,2010,ADD 1 ADDITIONAL UNIT. 4 UNITS TOTAL.,"Construct new dwellin unit at ground floor. Renovate building interior, reconfigure dwelling units ON 2 & 3. REFER TO PRE-APPLICATION MINUTES.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GCABRERO,Troy Kashanipour,Troy Kashanipour,415.431.0869,6 - Buena Vista,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7721654219, -122.439365072)",112,7,11,3
Resident,3588001C,3527 18TH ST,TRUE,CONSTRUCTION,4/27/2017 0:00,10,2,0,0,,,,2011,add two units to (e) 8 unit building,"COMPLIANCE WITH NOV# 201070246. REMOVE 2 PARKING GARAGES TO ACCOMODATE 2 RESIDENTIAL UNITS @ GROUND LEVE. TO LEGALIZE UNITS.
** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 NOT REQUIRED **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DSANCHEZ,Reza Khoshnevisan,Reza Khoshnevisan,922-0200x108,8 - Mission,8,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7614767353, -122.422238684)",37,3,5,20
MIPS,3726026,1076 HOWARD ST,TRUE,PL FILED,11/17/2015 0:00,0,0,0,0,,,,2015-015152PRJ,Change of use from PDR to Office and a vertical addition of 1 additional story.,,18671,6799,0,0,0,0,0,0,0,18671,15580,0,0,-8781,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,Vantage Property Investors,,3105456013,4 - Downtown,6,East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7786890202, -122.409098265)",32,1,10,34
Resident,2656049,181 CORBETT AV,TRUE,BP FILED,11/18/2016 0:00,3,1,0,0,,,,2016-008545PRJ,Comply with NOV 201498751. Legalize 3rd DU by adding kitchen per section 207.3 (ord. 43.14) & change occupancy. previous permitted work under PA# 8011064 & #8305024. Add fire sprinklers & 1-hr separation between units & garage. Ordinance 43-16 (see back,Comply with NOV 201498751. Legalize 3rd DU by adding kitchen per section 207.3 (ord. 43.14) & change occupancy. previous permitted work under PA# 8011064 & #8305024. Add fire sprinklers & 1-hr separation between units & garage. Ordinance 43-16 (see back,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KCONNER,KAY HENRY REVOC LVG TR TR,KAY HENRY REVOC LVG TR,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7615250692, -122.442375821)",115,7,5,5
Mixres,595008,2050 VAN NESS AV / 1675 PACIFIC AV,FALSE,PL FILED,3/1/2016 0:00,53,53,0,0,,,,2014,Replace existing structure on site with an 8-story multi-family residential project with ground floor retail and parking.,,1378,-11030,0,0,0,0,0,0,670,0,-670,6625,0,-6625,5113,1378,-3735,0,0,0,0,0,0,0,0,AA CONV,,,,3 - Northeast,3,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7946321836, -122.422795496)",105,4,3,32
Resident,95031,2125 HYDE ST,TRUE,PL Approved,5/23/2017 0:00,11,3,0,0,,,,2016-014950PRJ,Variance from the open space requirement to allow the addition of three dwelling units within the existing building envelope;,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NFOSTER,Hood Thomas Architects,,4153852303,3 - Northeast,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8006258305, -122.419697994)",107,6,6,32
Resident,3609002,2410 MISSION ST,FALSE,BP FILED,8/29/2016 0:00,8,8,0,0,,,,,,VERTICAL ADDITION. DEMOLISH ROOF OF EXISTING 1-STORY COMMERCIAL & BUILD (N) STRUCTURE & 4-STORY WOOD FRAME RESIDENTIAL ON TOP. ADDITION OF 8 DWELLING UNITS.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7583443585, -122.419324231)",53,3,2,20
Mixed,4316002,1100 CESAR CHAVEZ ST,TRUE,PL APPROVED,7/21/2015 0:00,0,0,0,0,,,,2015-007177PRJ,"Interior renovations and exterior modifications to existing PDR building. Increase accessory office use by 4,206 sf.",,26994,1694,0,0,0,0,0,0,0,8405,4206,0,18589,-2512,0,0,0,0,0,0,0,0,0,0,0,ERUSSELL,Veritable Vegetable,,(415) 550-48,10 - South Bayshore,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7504527903, -122.389020353)",56,2,9,1
Resident,6800004,10 TINGLEY ST,FALSE,BP FILED,7/9/2015 0:00,1,1,0,0,,,,2014,"Merging Lots 001, 004 and 405. Demolish existing single story restaurant. Constructing a new four-story mixed-use structure including 10 residential dwelling units, 1,700 sq.ft. first floor commercial space and 10 spaces off-street parking garage.",ERECT A THREE STORY SINGLE FAMILY DWELLING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TRANNANC,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7285638393, -122.432102619)",94,9,1,28
Resident,676033,1800 BUCHANAN ST,TRUE,BP ISSUED,8/8/2016 0:00,6,6,0,0,,,,2015-007328PRJ,Proposes to construct a new 4-story residential building over an existing underground garage structure serving an adjacent property. The new building would contain six dwelling units and five off- street parking spaces.,TO ERECT 3 STORIES OF 6 DWELLING UNITS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AKIRBY,"Reuben, Junius, and Rose, LLP",,4155679000,5 - Western Addition,5,Japantown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7867939008, -122.430324993)",101,4,11,30
Mixres,5066B003,2175 BAYSHORE BL,TRUE,BP APPROVED,5/19/2009 0:00,4,4,0,0,,,,2006,"construction of new commercial and 4 unit building, demolition of existing buildings","ERECT 3 STORIES, 4 DWELLING BUILDING WITH COMMERCIAL.",750,-1250,0,0,0,0,0,0,0,0,0,0,0,0,0,750,-1250,0,0,0,0,0,0,0,0,EJACKSON,Alex Nie,Alex Nie,656-3528,10 - South Bayshore,10,Schlage Lock,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7124017538, -122.400968234)",89,2,9,1
Mixres,691001,1145 POLK ST,FALSE,BP FILED,11/20/2015 0:00,54,54,0,0,,,,2014-001674PRJ,Demolition of existing building; construction of mixed-use building with retail space on first floor and 5 floors above of residential space consisting of 54 units of studio apartments. Modification of existing basement to create subterranean parking lo,"TO ERECT 6 STORIES, 1 BASEMENT, TYPE I-B / III-A, 54 UNITS RESIDENTIAL, RETAIL WITH PARKING BUILDING.",6990,-13737,0,0,0,0,0,0,0,0,-12477,0,0,0,0,6990,-1260,0,0,0,0,0,0,0,0,NFOSTER,Dolmen Property Group,,255-9024,4 - Downtown,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.787465809, -122.420298391)",50,4,3,21
Mixres,3702047,1125 MARKET ST,FALSE,PL FILED,12/18/2013 0:00,164,164,0,0,,,,2013,"Construction of a 12-story,100,422 sf bldg containing 164 dwelling units, 3,005 sf of ground-floor retail, and 47 parking spaces.",,3005,3005,0,0,0,0,0,0,0,0,0,0,0,0,0,3005,3005,0,0,0,0,0,0,0,0,TBLOMGRE,Maritz Pr,Patri Mer,415.284.1,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7797562718, -122.412736199)",32,5,10,34
Resident,4353008,1615 INDIANA ST,FALSE,BP FILED,12/30/2016 0:00,2,2,0,0,,,,,,ERECT A 5 STORY TYPE IIA 2 FAMILY DWELLING MIXED USE BUILDING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,10 - South Bayshore,10,Dogpatch Public Realm Plan; Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7498303297, -122.389444853)",56,2,9,1
Mixres,4059001C,2230 3RD ST,FALSE,PL FILED,3/6/2014 0:00,37,37,0,0,,,,2013,The proposed project would result in the demolition of an existing commercial warehouse building (Tire Dealer) and construct a new 7-story mixed-use commercial and residential building with ground floor commercial/residential flex space and residential p,,2399,-3201,0,0,0,0,0,0,0,0,0,0,0,0,0,2399,-3201,0,0,0,0,0,0,0,0,JBANALES,Marc Dimalanta,Marc Dimalanta,415-252-0888,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7612470308, -122.388940698)",55,2,9,26
Resident,1569002,609 26TH AV,TRUE,CONSTRUCTION,5/27/2014 0:00,2,1,0,0,,,,,,"REVISION TO APPROVED PA# 2007/09/11/2317 BY RAISING THE ENTIRE BLDG 3'. ALSO RAISE THE GRADE LEVEL IN REAR YARD. REVISE STAIRS & LIGHTWELL IN REAR YARD. REVISE WINDOWS, DOOR IN REAR WALL. REPLACE COMPOSIT SHINGLES FOR CLAY TILE IN FRONT ROOF. ALL OTHER D",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GCABRERO,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7778694361, -122.485925174)",8,8,4,29
Resident,6204060,135 ALPHA ST,FALSE,BP FILED,2/17/2017 0:00,2,1,0,0,,,,2017-002320PRJ,COMPLY WITH NOV# 201580601. LEGALIZATION OF DWELLING UNIT PER ORDINANCE# 43-14. 2 BEDROOM & 2 BATHS.,COMPLY WITH NOV# 201580601. LEGALIZATION OF DWELLING UNIT PER ORDINANCE# 43-14. 2 BEDROOM & 2 BATHS.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JIMENEZS,MARTIN FAMILY TRUST TRUST,MARTIN FAMILY TRUST,,12 - South Central,10,,San Francisco/San Mateo Bi-County Area,2018,Q1,2018_Q1,"(37.7140937787, -122.403905903)",75,9,9,40
Resident,155020,1364 PACIFIC AV,TRUE,BP ISSUED,11/28/2016 0:00,1,1,0,0,,,,,,"TO ERECT 4 STORIES, 1 BASEMENT, SINGLE FAMILY RESIDENTIAL & BUSINESS.",0,-168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-168,0,0,0,0,0,0,0,0,NFOSTER,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7956907697, -122.417699083)",16,6,3,32
Resident,1152018,1880 GOLDEN GATE AV,TRUE,CONSTRUCTION,9/28/2016 0:00,3,2,0,0,,,,2013,"The proposal is to construct vertical and horizontal additions to the existing two-story, single-family residence to result in a five-story, three-unit building.",HORIZONTAL & VERTICAL ADDITION. 4 STORIES OVER BASEMENT. CONVERT SINGLE FAMILY DWELLING TO 3 FAMILY DWELLING.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GCABRERO,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7785793616, -122.441528009)",97,7,11,39
Resident,0581015A,2251 BROADWAY,TRUE,BP ISSUED,8/11/2017 0:00,3,1,0,0,,,,2016-014419PRJ,PER UNIT LEGALIZATION ORDINANCE# 43-14. AT GROUND FLOOR LEGALIZE (E) IN-LAW UNIT. 1 BEDROOM & 1 BATHROOM. ** MAHER: N/A **,"PER UNIT LEGALIZATION ORDINANCE# 43-14. AT GROUND FLOOR LEGALIZE (E) IN-LAW UNIT. 1 BEDROOM & 1 BATHROOM.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ADINASEE,WILLIAMS JOHN A WILLIAMS,WILLIAMS JOHN A,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7940744351, -122.434067876)",102,4,6,30
Resident,1448038,1545 CLEMENT ST,TRUE,BP ISSUED,9/13/2017 0:00,2,2,0,0,,,,2015-018568PRJ,TO DEMOLISH 1 STORY COMMERCIAL BUILDING and construct a 4-story mixed use building with three residential units.,TO ERECT 4 STORIES 3 UNITS OF RESIDENTIAL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,LAJELLO,,BONG ANNE & HENRY W C,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.782209347, -122.476014945)",5,8,4,29
Mixres,3636005,2632 MISSION ST,FALSE,BP FILED,11/1/2016 0:00,16,16,0,0,,,,2016-004707PRJ,"Construction of new 5 story mixed used building. Sixteen residential units (8 one bedrooms, 8 two bedrooms) over one retail space with basement storage. Sixteen bicycle parking spaces are provided on the ground floor, with zero vehicle parking spaces. Co","ERECT 5-STORY, 16 UNITS, 1 BASEMENT CONDOMINIUM & RETAIL BUILDING.",7766,7766,0,0,0,0,0,0,0,0,0,0,0,0,0,7766,7766,0,0,0,0,0,0,0,0,EJARDINE,Gabriel Ng Architects Inc.,,4156828060,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7548336594, -122.419050976)",53,3,2,20
Resident,526014,1450 UNION ST,FALSE,BP FILED,4/28/2016 0:00,4,2,0,0,,,,2016-006589PRJ,"VERTICAL ADDITION. ADD 2 UNITS, 2 STORY. FILL IN LIGHTWELL, NEW FOUNDATION, INTERIOR RECONFIGURATION & REMODEL, NEW KITCHENS/BATH, FACADE REMODEL, ALL NEW WINDOWS ON FACADE, ALL NEW ELECTRICAL/PLUMBING. SPRINKLER UNDER SEPARATE PERMIT. ** MAHER: N/A **","VERTICAL ADDITION. ADD 2 UNITS, 2 STORY. FILL IN LIGHTWELL, NEW FOUNDATION, INTERIOR RECONFIGURATION & REMODEL, NEW KITCHENS/BATH, FACADE REMODEL, ALL NEW WINDOWS ON FACADE, ALL NEW ELECTRICAL/PLUMBING. SPRINKLER UNDER SEPARATE PERMIT. ** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NORTHEAS,JUSTIN T MCBAINE REVOC TRUST TRUST,JUSTIN T MCBAINE REVOC TRUST,,3 - Northeast,2,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7989332217, -122.423243118)",107,4,6,32
Resident,1867036,1526 22ND AV,FALSE,BP FILED,4/30/2015 0:00,2,1,0,0,,,,,,"UNIT LEGALIZATION ORDINANCE 43-14. NEW 20 MIN FIRE DOOR, NEW GFCI OUTLET AT GROUND FLOOR KITCHEN COUNTER. LEGALIZED 2ND FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7591499454, -122.479708693)",39,10,7,35
Resident,1377002,107 17TH AV,TRUE,BP ISSUED,1/9/2018 0:00,2,1,0,0,,,,,,"ADD 2ND UNIT AT GROUND FLOOR BEHIND GARAGE, NO STRUCTURAL WORK, UPGRADE (E) FAMILY ROOM TO KITCHEN. RECESS (E) GARAGE DOOR. 1 BEDROOM & 1 BATH.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SYOUNG,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7858925459, -122.476819576)",2,8,4,29
Resident,498020,2920 FRANKLIN ST,TRUE,CONSTRUCTION,1/11/2018 0:00,2,2,0,0,,,,2014-000550PRJ,"Demolition of a 1922 single-family residence to be replaced by a four-story, two-unit residential building.","ERECT 4-STORY, NO BASEMENT, TYPE 5B, 2 DWELLING UNITS BUILDING. EXEMPTED FOR MAHER ORDINANCE.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,Michael Hennessey Architecture,Michael Hennessey,415-512-1559,2 - Marina,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8015373918, -122.425995052)",17,4,6,13
Resident,6173005,1123 GIRARD ST,TRUE,BP REINSTATED,1/14/2014 0:00,1,1,0,0,,,,2009,open space variance (new dwelling unit),"ERECT A 3 STORIES, SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTEAGUE,,,,12 - South Central,10,,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7186769619, -122.400653916)",91,9,9,40
PDR,4912001,1300 FITZGERALD AV / 1401 EGBERT AV,TRUE,BP ISSUED,11/29/2016 0:00,0,0,0,0,,,,2014,"Demolish 7 PDR buildings, adjust lot lines, and construct 2 PDR buildings.","ERECT 1-STORY, TYPE 5, WAREHOUSE BUILDING. N/A FOR MAHER ORDINANCE.",28200,1030,0,0,0,0,0,0,0,0,0,27170,28200,1030,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7225688324, -122.3929855)",88,2,9,1
Resident,6081046,224 BRAZIL AV,FALSE,BP FILED,12/19/2016 0:00,2,1,0,0,,,,,,"ADD NEW UNIT ON 1ST FLOOR. NEW KITCHEN, 2 BATHROOMS AND 2 BEDROOMS",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PANTOJAG,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7235382125, -122.43293499)",90,9,1,7
Resident,493014,189 MAGNOLIA ST,FALSE,BP FILED,1/19/2017 0:00,6,6,0,0,,,,2017-001753PRJ,CONVERT (E) OFFICE BUILDING TO RESIDENTIAL APARTMENTS. REMODEL & EXPAND (E) 3 STORY BUILDING. TWO-3 BEDROOM UNITS ON EACH FLOOR. ** MAHER: N/A **,"CONVERT (E) OFFICE BUILDING TO RESIDENTIAL APARTMENTS. REMODEL & EXPAND (E) 3 STORY BUILDING. TWO-3 BEDROOM UNITS ON EACH FLOOR.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NORTHWES,WALL CO THE THE,WALL CO THE,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.8003850189, -122.434206928)",17,4,6,13
Resident,534030,2261 FILBERT ST,FALSE,BP FILED,6/27/2014 0:00,2,1,0,0,,,,2014-000645PRJ,Construction of 2-story vertical addition and horizontal rear addition.,HORIZONTAL & VERTICAL ADDITION TO ADD 2 STORY TO CONVERT A 2 STORY 1 UNIT RESIDENCE TO A 4 STORY 2 UNIT RESIDENCE. ROOF DECK ACCESS FROM 4TH FLOOR. EXPANDING GARAGE FROM 1 CAR TO 4 CAR GARAGE. 1ST & 2ND FLOOR: (N) UNIT #1 3RD & 4TH: (N) UNIT #2 FULLY SP,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SYOUNG,,KOTLYAR EDITH,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7976124082, -122.436636226)",15,4,6,13
Resident,2140004B,2031 20TH AV,TRUE,BP ISSUED,5/4/2017 0:00,2,1,0,0,,,,,,"HORIZONTAL & VERTICAL ADDITION. 1ST FLR: 2 BEDROOM, 1 KITCHEN, 1 LIVING RM. 2ND FLR: 2 BEDRMS 1 BATHRM, 1 FAMILY RM. 3RD FLR: 2 BEDRMS, 1 GREAT RM, 1 ROOF DECK. LEGALIZATION OF 2ND UNIT WITH ORDINANCE 43-14.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TKENNEDY,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7498245902, -122.477567954)",39,10,7,35
MIPS,3788009A,144 TOWNSEND ST,TRUE,PL APPROVED,2/9/2017 0:00,0,0,0,0,,,,2015-017998PRJ,"The project proposes to convert and change the existing legal use of the building from 42,322 gsf of self-storage and 3,005 gsf of office space into 100% office building with 42510 gsf of office use of which 3,005 gsf is pre-existing office and 39,505 is",,42510,-2817,0,0,0,0,0,0,0,42510,39505,0,0,0,0,0,-42322,0,0,0,0,0,0,0,0,AHUISMAN,"Reuben, Junius & Rose, LLP",,4155679000,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7801513281, -122.391986502)",31,1,10,8
Resident,5419023,1670 ARMSTRONG AV,FALSE,BP FILED,1/11/2016 0:00,3,3,0,0,,,,2016-000826PRJ,TO ERECT 4 STORIES OF 3 DWELLING UNIT TYPE 5 CONSTRUCTION.,TO ERECT 4 STORIES OF 3 DWELLING UNIT TYPE 5 CONSTRUCTION.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DISALVOJ,John Zhang,,4158893029,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7272726086, -122.393706688)",86,2,9,1
Mixres,3554001,1900 MISSION ST,FALSE,BP FILED,7/8/2015 0:00,9,9,0,0,,,,2013,"The proposed project would construct a 6-story building with ground floor retail space, second floor office space, and four floors of two and three-bedroom condos for a total of 9 residential units. The project would include 5 off-street parking spaces a","ERECT 7-STORY, TYPE 1, 11 DWELLING UNITS, AND RETAIL WITH 1 BASEMENT BUILDING.",2569,630,0,0,0,0,0,0,0,1725,1725,0,0,-1939,0,844,844,0,0,0,0,0,0,0,0,DVU,Kevin Stephens,Kevin Stephens,509-5661,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7665356372, -122.420108702)",53,3,2,20
Resident,1081019,2478 GEARY BL,FALSE,PL FILED,6/8/2016 0:00,6,5,0,0,,,,2016-006164PRJ,Proposed addition to (E) SFH. Exterior alterations and additions. Addition of 2 (N) dwelling units.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,Owners,Boon Shiu & Keehyun Choi,4085295302,1 - Richmond,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.783004241, -122.444117188)",103,8,6,31
MIPS,3755029,1170 HARRISON ST,FALSE,BP FILED,8/11/2016 0:00,0,0,0,0,,,,2015-016239PRJ,The Project Sponsor proposes to make interior alterations to the existing building at 1170 Harrison Street. The project involves transforming the existing one-story warehouse with a mezzanine into two-stories of office space. There will be no expansion,"SITE PERMIT FOR CHANGE OF USE FROM PDR TO OFFICE, ADDITION OF NEW SECOND LEVEL OFFICE WITHIN(E) HISTORIC BUILDING STRUCTURE. MECHANICAL, ELECTRICAL, PLUMBING, LIFE SAFETY AND FIRE SPRINKLERS TO BE SUBMITTED UNDER SEPARATE PERMITS. N/A FOR MAHER ORDINANCE",19025,19025,0,0,0,0,0,0,0,19025,19025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,"Reuben, Junius & Rose, LLP",,4155679000,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7743985436, -122.408131956)",32,1,10,34
Resident,3727049,630 NATOMA ST,TRUE,CONSTRUCTION,7/31/2017 0:00,3,3,0,0,,,,2015-009485PRJ,"Proposed demolition of existing 1-story over basement office/storage building and construction of a (N) 4-story, 3-unit condominium over 2-car parking garage. Rear yard setback.","TO ERECT 4 STORIES, NO BASEMENT, COSTRUCTION TYPE V-A, 3 UNITS CONDOMINIUM REISDENTIAL BUILDING.",0,-2620,0,0,0,0,0,0,0,0,-2620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ERUSSELL,Couture Architecture,Scott Couture,(415) 482-02,4 - Downtown,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7779362279, -122.410816051)",32,1,10,34
CIE,3950002,1240 & 1250 17TH ST,FALSE,BP FILED,1/29/2016 0:00,0,0,0,0,,,,2015-010660PRJ,Change of use from retail and auto repair uses to Institutional - Educational. (AltSchool),CHANGE OF USE FROM AUTO REPAIR TO EDUCAITON. INTERIOR PARTITIONS WITH MEP FOR (N) CLASSROOMS.,12995,0,0,12995,12995,0,0,0,0,0,0,12995,0,-12995,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,AltSchool C/O EBI Consulting,,8586520336,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7655189341, -122.396407016)",54,1,9,4
Resident,3556048,1813 15TH ST,FALSE,BP FILED,12/28/2016 0:00,6,1,0,0,,,,2017-000278PRJ,ADU PER ORD 162-16. CONVERT GARAGE TO SINGLE DWELLING UNIT. GENERAL REMODEL THROUGHOUT (E) UNITS. NFPA-13 SPRINKLERS @ BASEMENT ONLY. ROOF DECK. SEISMIC RETROFIT UNDER SEPERATE PERMIT #2016-1228-6019,ADU PER ORD 162-16. CONVERT GARAGE TO SINGLE DWELLING UNIT. GENERAL REMODEL THROUGHOUT (E) UNITS. NFPA-13 SPRINKLERS @ BASEMENT ONLY. ROOF DECK. SEISMIC RETROFIT UNDER SEPERATE PERMIT #2016-1228-6019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PANTOJAG,BROCKWAY LARRY J REVOC FAM TR FAM T,BROCKWAY LARRY J REVOC FAM TR,,8 - Mission,8,Market and Octavia; Mission District Streetscape Plan; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7661781771, -122.424689973)",37,3,5,20
Resident,5543009,1649 TREAT AV,FALSE,BP FILED,10/26/2015 0:00,1,1,0,0,,,,,,"REAR BUILDING. TO ERECT 2 STOIRES, 1 BASEMENT, SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MPUTRA,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.744432256, -122.412253658)",83,9,2,2
Mixres,3730023,1174 - 1178 FOLSOM ST,TRUE,BP ISSUED,7/18/2016 0:00,42,42,0,0,,,,2012,"The proposed project would involve merging two existing lots, demolition of two existing two-story structures, and the constuction of new 6 story, 65' tall building with basement parking. The proposed project would include retail on the first floor, offi","ERECT 6-STORY, 1 BASEMENT FOR 42 DWELLING UNITS, RETAIL AND OFFICE BUILDING. TYPE 3-A CONSTRUCTION. MAHER ORDINANCE IS COMPLY.",9888,288,0,0,0,0,0,0,0,5908,5908,9600,0,-9600,0,3980,3980,0,0,0,0,0,0,0,0,JKUGLER,Erik Liu,Erik Liu,314-8700,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7757141171, -122.409743195)",32,1,10,34
Resident,2754052,162 GRAND VIEW AV,TRUE,BP REINSTATED,6/1/2016 0:00,2,2,0,0,,,,2014-000428PRJ,,"(FRONT BUILDING) TO ERECT 3 STORIES OF 1 FAMILY DWELLING. SHORING, EXCAVATION AND FOUNDATION ARE UNDER SEPARATE PERMIT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CHANG TI,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7555053514, -122.440615127)",115,3,5,38
Resident,2421037,2558 21ST AV,FALSE,BP FILED,3/24/2017 0:00,2,1,0,0,,,,,,ADDITION OF DWELLING UNIT PER ORDINANCE NO.162-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7400055734, -122.477298775)",40,10,7,35
Resident,7112019,45 BROAD ST,TRUE,CONSTRUCTION,4/10/2018 0:00,1,1,0,0,,,,,,CREATE LEGAL 3RD UNIT IN (E) REAR YARD UNATTACHED STORAGE BUILDING. NEW LAUNDRY @ (E) 1ST LEVEL CONV,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7129195137, -122.454797343)",81,10,1,24
Resident,1222014,1460 PAGE ST,TRUE,BP ISSUED,12/15/2016 0:00,3,1,0,0,,,,2017-004837PRJ,LEGALIZATION OF AN (E) NON-CONFORMING 1ST FLR/GARDEN LVL UNIT UNDER THE BOARD OF SUPERVISORS ORDINANCE NO 43-14. UNIT EXISTED PRIOR TO JAN 1ST 2013.,RENOVATION OF TOP 3 FLOORS. INCLUDING INSTALLATION OF 3RD DWELLING UNIT AT TOP FLR. EGRESS IMPROVEMENTS. NEW DORMERS AT ATTIC LEVEL. NO EXPANSION OF BUILDING ENVELOPE PROPOSED (NO ADDITIONS). COMPLY WITH COMPLAINT#199921637. LEGALIZE GROUND FLOOR UNIT (1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EOROPEZA,Kerman Morris Architects,,4157490302,6 - Buena Vista,5,Haight Ashbury Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7715099132, -122.444903597)",25,7,11,3
MIPS,4710084,144 CASHMERE ST,TRUE,BP ISSUED,7/11/2017 0:00,0,0,0,0,,,,2015-003067PRJ,New construction of a 900 gsf office building with 2 off-street parking spaces.,"ERECT 1 STORY, TYPE V-B, OFFICE BUILDING.",900,900,0,0,0,0,0,0,0,900,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JDISALVO,SGPA Architecture & Planning,,4159830131,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.73747041, -122.384823407)",86,2,9,1
Resident,935024,2429 CHESTNUT ST,TRUE,BP ISSUED,8/30/2016 0:00,4,2,0,0,,,,2016-002617PRL,Addition of third unit,CONVERT UNIT 2429 FROM 1 UNIT INTO 2 UNITS. NO CHANGE TO UNIT 2431.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AKIRBY,Danny Mak,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.799624503, -122.443381053)",17,4,6,13
CIE,6795A029,203 COTTER ST,TRUE,BP FILED,9/29/2016 0:00,0,0,0,0,,,,2015-003791PRJ,"Conditional Use Authorization to permit the change of use from neighborhood agricultural to educational and construct two two-story buildings totaling 12,250 sq. feet and two greenhouses.","TO ERECT TWO STORIES, NO BASEMEMNT, PRIVATE ELEMENTARY, MIDDLE SCHOOL.",15400,15400,0,15400,15400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NTRAN,"Reuben, Junius & Rose",,4155679000,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7287566378, -122.436361236)",94,9,1,28
Resident,818048,447 - 453 LINDEN ST,TRUE,CONSTRUCTION,3/22/2016 0:00,2,2,0,0,,,,2010,"Construction of a new two-unit, 4-story residential structure on the existing vacant lot.","construct new 4-story, 2-unit building.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CGROB,,,,5 - Western Addition,5,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7759605011, -122.425320174)",22,4,11,9
Resident,506036,1727 LOMBARD ST,FALSE,BP FILED,1/23/2013 0:00,14,14,0,0,,,,2012,"Group housing for post-secondary educational institution (Academy of Art University). Subject property contains 52 guest rooms and is currently a tourist motel. Property features split-zoning, with front portion zoned NC-3 (group housing is principall",TO DUCUMENT CHANGE OF USE UNDER PLANNING CODE SECTION 182 (C). FROM HOTEL TO GROUP HOUSING.,0,-16000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16000,14,0,-14,EWATTY,Elisa Stephens,Bob Passmore,415-567-9872,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.8003213909, -122.430031378)",15,4,6,13
Resident,3549051,18 SHOTWELL ST,TRUE,BP FILED,2/28/2017 0:00,5,3,0,0,,,,2016-005711PRJ,New construction of a three (3) unit residential structure within the rear yard.,"TO CONSTRUCT NEW 3-STORIES, NO BASEMENT, 3 UNITS APARTMENT BUILDING.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,Prado Engineering,,4158890878,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7680559523, -122.416979562)",53,3,2,20
Resident,4146016,2810 22ND ST,FALSE,BP FILED,1/6/2017 0:00,5,1,0,0,,,,2017-000720PRJ,"UNIT LEGALIZATION ORD 43-14. LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT PERMIT. LEGALIZE (E) KTICHEN, BDRM & CONVERT PARTIAL (E) GARAGE TO FAMILY RM & BATHRM. ALL WORK AT GROUND FLR.","UNIT LEGALIZATION ORD 43-14. LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT PERMIT. LEGALIZE (E) KTICHEN, BDRM & CONVERT PARTIAL (E) GARAGE TO FAMILY RM & BATHRM. ALL WORK AT GROUND FLR.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JIMENEZS,LAO FAMILY TR TR,LAO FAMILY TR,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7561523199, -122.410718631)",53,3,2,20
Resident,3502024,140 DUBOCE AV,FALSE,PL FILED,9/11/2014 0:00,17,2,0,0,,,,2014,"Variance request to the rear yard, open space, and exposure requirements to permit an addition that creates two additional dwelling units.",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,Greg Schank,Troy Kashnipour,415.431.0869,8 - Mission,8,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7700132218, -122.42349678)",27,1,5,20
Resident,2142001A,2007 22ND AV,FALSE,BP FILED,12/16/2016 0:00,2,1,0,0,,,,,,ADD DWELLING UNIT THROUGH LEGALIZATION PROCESS AT 1ST FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KCONNER,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7501442968, -122.479671505)",39,10,7,35
Resident,5305010,1734 NEWCOMB AV,TRUE,BP FILED,9/24/2010 0:00,2,1,0,0,,,,2010,Addition of a dwelling unit in the basement of an existing single family residence.,CREATING AN IN-LAW UNIT. REMOVE (E) BSMT STAIRS&CHIMNEY.REPAIR 2/FL USING MATCHING MATERIAL.REPAIR 3/FL & ROOF DUE TO THE REMOVAL OF CHIMNEY.RELOCATE (E) WATER HEATER&FURNACE IN 1/FL.(E)FACADE FINISH LAP SIDING.REPAIR (E)DECK&ADD (N)BACK STAIR.MOVE 1/FL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BFU,Horace Johnson,Horace Johnson,415-573-8334,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7368796126, -122.392156242)",86,2,9,1
Resident,6521004,13 LUCKY ST,TRUE,BP REINSTATED,3/19/2018 0:00,1,1,0,0,,,,2013,"Variance to the rear yard, exposure, and open space requriements for the new construction of a SFD.","ERECT 3-STORY, TYPE 5, SINGLE FAMILY RESIDENCE.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DSANCHEZ,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7522359482, -122.413257802)",53,3,2,20
Resident,7146001,2214 CAYUGA AV,FALSE,BP FILED,12/28/2016 0:00,7,6,0,0,,,,2016-012135PRJ,"The proposed project is to demolish existing single family dwelling, which spans two parcels. On lot 1, construct two new buildings, each two residential over commercial. On lot 34, construct one mixed use with two dwellings over commercial, and once sin",DEMOLISH 2 STORY SINGLE FAMILY DWELLING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VBYRD,"Gabriel Ng + Architects, Inc.",Jeremy Schaub,415-682-8060,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7101713163, -122.454862277)",66,9,1,28
Resident,1752003,1263 03RD AV,FALSE,BP FILED,12/5/2016 0:00,3,1,0,0,,,,2016-016285PRJ,"Legalize a third unit (Unit No.1263A) at the ground floor of an existing two-family two-story-over-garage dwelling, per Planning Code Section 207.3 (Ord. 43-14). No front alterations.",LEGALIZATION OF (E) UNAUTHORIZED DWELLING UNIT UNDER ORD #43-14. SPRINKLER UNDER DEFERRED SUBMITTAL.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KCONNER,Samuel Kwong,,4153913313,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7649630866, -122.460218187)",109,7,11,14
Resident,5414006,2230 LANE ST,TRUE,PL APPROVED,1/19/2017 0:00,1,1,0,0,,,,2016-008445PRJ,Legalizing the existing dwelling unit on the second floor and permit an approximately 640 gsf addition to the unit.,,0,-1000,0,0,0,0,0,0,0,0,-1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,Rebecca Joseph,PELASSINI HEMAN,5303003243,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7282695407, -122.393567784)",86,2,9,1
Resident,0028006E,2624 LEAVENWORTH ST,TRUE,BP APPROVED,3/22/2017 0:00,3,1,0,0,,,,2015-012195PRJ,ADD GARAGE LEVEL APARTMENT. N/A ORDINANCE #155-13,ADD GARAGE LEVEL APARTMENT. N/A LEGALIZE UNIT PER ORDINANCE #43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JIMENEZS,,VIRGINIA M BILLANTE TRUST,,3 - Northeast,2,Northeast Waterfront; FishermanΓÇÖs Wharf Public Realm Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8053980687, -122.418341715)",99,6,6,32
Resident,0603004A,2242 WASHINGTON ST,TRUE,CONSTRUCTION,4/10/2018 0:00,3,1,0,0,,,,,,"PER ORD #162-16, CREATE 643 SQ.FT. OF ADU IN THE STORAGE AREA BEHIND THE GARAGE WITHIN (E) BLDG. ADU",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7923880915, -122.430259646)",102,4,6,30
Resident,2393040,2255 TARAVAL ST,TRUE,BP APPROVED,11/17/2015 0:00,7,7,0,0,,,,2013,"Demolish existing auto service structure. Erect new 5-story, 7-units residential, 3-units commercial mixed use building with 8 parking spaces.","TO ERECT 4 STORIES, 10 DWELLING UNITS, NO BASEMENT, MIXED USE BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJACKSON,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.742153151, -122.490454702)",40,10,7,35
PDR,3808004,188 HOOPER ST,FALSE,PL FILED,5/3/2016 0:00,0,0,0,0,,,,2016-001557PRJ,Proposed project is to demolish the existing one and two-story warehouse buildings at 188 Hooper used for graduate programs and construct a new five-story building with up to 600 beds of housing for CCA students in single and double occupancy dormitories,,37000,1000,0,0,0,0,0,0,0,0,0,36000,32000,-4000,0,5000,5000,0,0,0,0,0,0,0,0,VBYRD,"UrbanGreen Devco for ArtGroup, LLC",,6506420750,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7678879717, -122.400375354)",33,1,9,4
Mixres,691005,1200 VAN NESS AV,FALSE,BP FILED,9/26/2016 0:00,95,95,0,0,,,,2015-012577PRJ,"The proposed project will be the construction of 130' high, 13-story, 272,796 gsf mixed use (retail/commercial/residential) building with a parking garage for 357 cars in five below grade levels. The proposed project will have retail which may include a","TO ERECT 13 STORIES, 5 BASEMENTS, 95 UNITS RESIDENTIAL, COMMERCIAL, RETAIL & PARKING BUILDING.
** MAHER: N/A **",137749,38046,0,0,0,0,0,0,53485,109045,55560,0,0,0,46218,28704,-17514,0,0,0,0,0,0,0,0,VBYRD,"Duane Morris, LLC",Alice Barkley,415-957-6116,4 - Downtown,3,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7869436088, -122.420985841)",50,4,3,21
Resident,1933008,1649 10TH AV,TRUE,BP FILED,11/3/2015 0:00,3,1,0,0,,,,2015-006574PRJ,LEGALIZATION OF 3RD DWELLING UNIT AT THE THIRD FLOOR PER ORD 43-14.,"LEGALIZATION OF 3RD FLOOR SPACE (EXISTING PERMITED) TO A ONE BEDROOM, ONE BATH UNIT. PLANT ONE STREET TREE. INSTALL SPRINKLER SYSTEM ON ALL 3 FLOORS & DECKS (WILL FILE SEPARATELY FOR SPRINKLERS).",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,SUBRAMANIAN RAVINDRAN K STODDA,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7575597562, -122.467263112)",44,10,8,14
Resident,5336048,1915 QUESADA AV,FALSE,PL FILED,8/8/2013 0:00,1,1,0,0,,,,2009,"Construct two new three-story single-family homes on two vacant lots; 4,460 sf on Lot 48 and 6,020 sf on Lot 49, off-street parking for two vehicles (one on each lot); create access easement on City property.",TO ERECT 1 DWELLING UNIT 3 STORY NEW BUILDING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7353930191, -122.395590422)",87,2,9,1
Resident,6580036,4041 CESAR CHAVEZ ST,TRUE,CONSTRUCTION,2/6/2018 0:00,1,1,0,0,,,,,,TO ERECT 4 STORIES OF 1 FAMILY DWELLING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,HORNJEFF,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7472661724, -122.430139559)",84,9,5,22
Resident,645003,1335 LARKIN ST,TRUE,BP ISSUED,8/9/2017 0:00,20,20,0,0,,,,2013,Preserve facade of know Historic Resource and construct 5 stories of residential over parking behind Historic facade.,"RESERVE EXTERIOR FACADE OF 1 STORY W/ MEZZANINE LEVEL COMMERCIAL GARAGE. NEW CONST WILL RESULT IN A 6 STORY, 65' TALL, APPROX 35,000 GROSS SQFT RESIDENTIAL BLDG WHICH WILL INCLUDE 20 RESIDENTIAL UNITS W/ DECKS, OPEN SPACE, 18 VEHICLE PKG & 10 BICYCLE PKG",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,LLYNCH,Anthony Pantaleoni,Tony Pantaleoni,415-495-4051,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7903301138, -122.419308365)",105,4,3,21
Resident,7088052,216 RAMSELL ST,FALSE,BP FILED,9/14/2016 0:00,3,2,0,0,,,,2016-013437PRJ,"Convert a single-family dwelling into a three-family dwelling. Legalize a second dwelling unit per Planning Code Section 207.3 (Ord. 43-14). Add one accessory dwelling unit (ADU), Unit 3, within the building envelope, per Ord. 162-16 (Planning Code Secti","LEGALIZATION OF DWELLING UNITS PER UNIT LEGALIZATION ORDINANCE 43-14, ADD TWO UNITS.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PANTOJAG,zengxiang Lia,LIU ZENG XIANG,,13 - Ingleside,11,,19th Avenue,2018,Q1,2018_Q1,"(37.7146323463, -122.465926201)",65,10,1,24
Resident,4266012,1274 HAMPSHIRE ST,FALSE,BP FILED,3/3/2015 0:00,3,1,0,0,,,,2015-005022PRJ,UNIT LEGALIZATION ORDINANCE 43-14. LEGALIZE OF ONE NEW UNIT AT REAR GARAGE AT FIRST FLOOR. INTERIOR REMODEL AT 2ND AND 3RD FLOOR OF EXISTING UNITS. COMPLY WITH COMPLAINT #201334822.,UNIT LEGALIZATION ORDINANCE 43-14. LEGALIZE OF ONE NEW UNIT AT REAR GARAGE AT FIRST FLOOR. INTERIOR REMODEL AT 2ND AND 3RD FLOOR OF EXISTING UNITS. COMPLY WITH COMPLAINT #201334822.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,GOLDEN PROPERTIES LLC,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7518161535, -122.407465266)",53,3,2,20
Resident,103021,146 JASPER PL,FALSE,PL FILED,6/24/2013 0:00,4,2,0,0,,,,2013,Construction of a new two unit residential building,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TSHEYNER,Peter Wilson,Peter Wilson,510.543.5111,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8012555802, -122.408790537)",106,6,3,23
Resident,6508011,236 JERSEY ST,FALSE,BP FILED,2/12/2016 0:00,3,1,0,0,,,,2016-002725PRJ,ADD (N) ACCESSORY DWELLING UNIT TO REAR PORTION OF THE GROUND FLOOR. ADD (1) KITCHEN & (1) BATHROOM.,ADD (N) ACCESSORY DWELLING UNIT TO REAR PORTION OF THE GROUND FLOOR. ADD (1) KITCHEN & (1) BATHROOM.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,YEUNGMIN,SHANE STEPHEN H TRUST OF 2000 TRUST,SHANE STEPHEN H TRUST OF 2000,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7509518171, -122.430489802)",84,3,5,22
PDR,4829020A,1413 VAN DYKE AV,TRUE,BP ISSUED,7/6/2017 0:00,0,0,0,0,,,,2016-010781PRJ,"CONSTRUCT (N) 1-STORY, NO BASEMENT, WAREHOUSE.","CONSTRUCT (N) 1-STORY, NO BASEMENT, WAREHOUSE.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CHRISTEN,CHOW YING KIN & SIU MEI MEI,CHOW YING KIN & SIU MEI,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7270412112, -122.389210338)",86,2,9,1
Resident,6655030,176 RANDALL ST,TRUE,BP APPROVED,2/11/2014 0:00,2,1,0,0,,,,2008,"Demo existing 1,410 sqft, 22-feet in height single-family residence with one parking space and replace with a 4,986 sqft, 35-feet in height 2-unit building with 4 parking spaces.","ERECT A NEW 3 STORIES 2 FAMILY DWELLING, OVER BASEMENT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JPOLING,Michael Allorecht,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7399317865, -122.427287507)",59,9,5,10
Mixres,937028,"2419, 2421 & 2435 LOMBARD ST",TRUE,BP FILED,4/3/2014 0:00,11,8,0,0,,,,2011,"Merge 3 lots and convert it to 4 stories condominium bldg. with 12 units and ground floor commercial. Demolition of existing bldgs. on 3 lots (including one -1 story commercial/residential house, one - 2 stories bldg. with first floor commercial and sec","ERECT 4-STORY, TYPE 5, 1 BASEMENT, 11 UNITS CONDO WITH COMMERCIAL BUILDING.",1012,-3788,0,0,0,0,0,0,0,0,0,0,0,0,0,1012,-3788,0,0,0,0,0,0,0,0,ASTARR,Kevin Wong,Ben Wong,999-3388,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7988614302, -122.441502984)",14,4,6,13
Resident,1273017,1010 STANYAN ST,FALSE,BP FILED,12/17/2015 0:00,4,4,0,0,,,,2016-000260PRJ,ERECT 4 STORIES OF 4 DWELLING UNIT MULTI FAMILY RES'D. TYPE 5 CONSTRUCTION.,ERECT 4 STORIES OF 4 DWELLING UNIT MULTI FAMILY RES'D. TYPE 5 CONSTRUCTION.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,jonathan pearlman,,4155371125,6 - Buena Vista,5,,Rest of the City,2018,Q1,2018_Q1,"(37.765232479, -122.452420166)",29,7,11,3
PDR,5434B005,1828 EGBERT AV,FALSE,BP FILED,3/12/2015 0:00,0,0,0,0,,,,2013,,"SITE PERMIT AMENDMENT TO PA# 2000/06/17/2939. CONDITIONAL USE FOR INTERNET EXCHANGE USE. CONSTRUCT NEW SUPPLY & EXHAUST SHAFTS. ADD PARKING, SWITCH GEAR, WATER & FUEL TANKS.
* MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 REQUIRED; ROUTE TO HEALTH *",132061,6091,0,0,0,0,0,0,0,0,0,0,132061,132061,125970,0,-125970,0,0,0,0,0,0,0,0,RSUCRE,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7275849713, -122.400411374)",86,2,9,1
Resident,2993088,287 CRESTA VISTA DR,TRUE,CONSTRUCTION,4/21/2015 0:00,1,1,0,0,,,,,,"ERECT 2-STORY, NO BASEMENT, TYPE 5, SINGLE FAMILY DWELLING BLDG.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JLOOK,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7356510108, -122.453628564)",117,9,8,41
Resident,1069039,2 LUPINE AV,FALSE,BP FILED,5/23/2016 0:00,1,1,0,0,,,,2016-007461PRJ,"Construct new 3-story single family dwelling on lot containing existing 3-story, 5-unit apartment building.",CONSTRUCT (N) SINGLE FAMILY DWELLING UNIT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MAYCHRIS,WING K QUOCK TRUST TRUST,WING K QUOCK TRUST,,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7839933058, -122.449705278)",11,8,6,31
Mixres,145044,1234 GRANT AV,TRUE,BP FILED,12/12/2016 0:00,4,4,0,0,,,,2015-009551PRJ,CHANGE OF USE: (E) 2ND & 3RD FL DINING AREAS CHANGE TO 4 APARTMENT UNITS. (N) GARDEN ROOF DECK.,CHANGE OF USE: (E) 2ND & 3RD FL DINING AREAS CHANGE TO 4 APARTMENT UNITS. (N) GARDEN ROOF DECK.,3218,-2910,0,0,0,0,0,0,0,0,-2910,0,0,0,0,3218,0,0,0,0,0,0,0,0,0,CASBAGH,Anthony Tahng,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7986478654, -122.407002432)",106,6,3,23
Retail/Ent,5231002B,1995 EVANS AV,TRUE,PL APPROVED,3/21/2013 0:00,0,0,0,0,,,,2013,"The proposed project includes demolition of three existing buildings on the site (approximately 39,800 sf) and consturction of a new four-story, 65-foot tal, 105,150 sf building containing the San Francisco Police Department Forsenic Service Division and",,175150,46150,0,0,0,0,0,0,0,0,0,39800,0,-39800,89200,175150,85950,0,0,0,0,0,0,0,0,EPURL,John T. Matthies,John T. Matthies,415-557-4659,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.746086138, -122.395526245)",85,2,9,1
Resident,3552008,1936 FOLSOM ST,TRUE,BP APPROVED,6/6/2014 0:00,2,1,0,0,,,,,,FROM SINGLE FAMILY TO MULTI FAMILY UNIT CONVERSION. RECONFIGURE 2ND STORY ENTRY. REHABILITATE 3RD FL UNIT & ADD A DORMER.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DHARRIS,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7663134193, -122.415758776)",53,3,2,20
Resident,119025,1812 TAYLOR ST,TRUE,BP ISSUED,7/13/2011 0:00,3,1,0,0,,,,2010,Add dwelling unit on ground floor with no expansion of the building,"ADD 3RD UNIT AT GROUND FLOOR 450 SF. 3 PARKING SPACES PROVIDED IN GARAGE. MECH, ELECT. & PLUMB UPGRADES FOR NEW UNIT. ADD WINDOWS, NO BUILDING OUT OF ENVELOPE. CHANGE OF OCCUPANCY FROM R-3 TO R-1.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AHOLLIST,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7991719972, -122.413752464)",107,6,3,32
Resident,6637011,244 30TH ST,TRUE,BP APPROVED,11/14/2016 0:00,3,1,0,0,,,,2016-003315PRJ,LEGALIZE EXISTING UNAUTHORIZED ACCESSORY DWELLING UNIT PER ORDINANCE 43-14,LEGALIZE EXISTING UNAUTHORIZED ACCESSORY DWELLING UNIT PER ORDINANCE 43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ALEXANDE,CASTELLI NANCY A CASTELLI,CASTELLI NANCY A,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7424133181, -122.425355201)",84,9,5,22
Resident,3646002,102 SAN JOSE AV,FALSE,BP FILED,2/6/2017 0:00,1,1,0,0,,,,2016-003100PRJ,ADU. REAR BUILDING GARAGE/SHED LOCATED IN REAR YARD TO BE TURNED INTO AN ADU SINGLE FAMILY DWELLING PER ORDINANCE 162-16,ADU. REAR BUILDING GARAGE/SHED LOCATED IN REAR YARD TO BE TURNED INTO AN ADU SINGLE FAMILY DWELLING PER ORDINANCE 162-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SOUTHEAS,Lynn Hazen,Lynn Hazen,415-902-0885,8 - Mission,8,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7532604939, -122.421794143)",52,3,5,20
Resident,552031,1776 VALLEJO ST,FALSE,BP FILED,1/27/2016 0:00,1,1,0,0,,,,2016-001466PRJ,TO ERECT 2 STORIES OF ONE SINGLE FAMILY,TO ERECT 2 STORIES OF ONE SINGLE FAMILY,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,EMERSON RICHARD EMERSON,EMERSON RICHARD,,2 - Marina,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7965988441, -122.426678382)",102,4,6,13
Mixres,3644021,1278 - 1298 VALENCIA ST,FALSE,PL FILED,1/15/2015 0:00,35,35,0,0,,,,2013,"The proposed project would replace existing gas station with a six story mixed use residential building. Provide retail facilities on the ground floor and 35 residential units on the remaining 5 stories above. 33,939sf residential units & 3,737sf retail","ERECT 6-STORY, 35 DWELLING UNITS, TYPE III, RESIDENTIAL & RETAIL BUILDING.",3737,3737,0,3737,3737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DVU,,,,8 - Mission,8,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7523096425, -122.420977367)",53,3,5,20
Mixres,41001,2293 POWELL ST,TRUE,BP APPROVED,7/10/2017 0:00,17,17,0,0,,,,2013,The proposed project would remove an existing vacant structure previously containing ground floor restaurant and second floor office and merge 2 lots into single parcel. The project would construct a new 4-story over basement concrete structure with bel,"ERECT 4-STORY, TYPE 5A OVER TYPE 1A PODIUM, RESIDENTIAL, RETAIL & PARKING WITH 1 BASEMENT BUILDING. MAHER ORD #155-13 APPLIED.",5199,-4195,0,0,0,0,0,0,2519,0,-2519,0,0,0,6875,5199,-1676,0,0,0,0,0,0,0,0,NFOSTER,Ian Birchall,Ian Birchall,512-9660,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.805617201, -122.41219979)",106,6,3,23
Resident,1233016,1352 HAIGHT ST,FALSE,BP FILED,12/22/2016 0:00,4,2,0,0,,,,,,"RENOV WITHIN(E)BLDG ENVELOPE&ENCLOS 2-STORY(E)4-STORY LITEWELL(E)2 RES&1 COMM UNIT BLDG.FILL IN UNDERRM AT REAR PER 2A BULLETIN#4.REALLOTE(E) PARTIAL STORAGE/COMM SPACE TO CREATE2 ADD DWELLING UNITS.FIRE RATING UPGRADES,MECH,ELEC,PLUMB UPGRADE UNDER SEP",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,6 - Buena Vista,5,Haight Ashbury Public Realm Plan,Rest of the City,2018,Q1,2018_Q1,"(37.7706015423, -122.444525102)",25,7,11,3
Resident,1731015,1271 19TH AV,TRUE,CONSTRUCTION,4/3/2018 0:00,2,2,0,0,,,,2014,New construction of a four-story building containing two residential units and two vehicle spaces.,"TO ERECT 4 STORIES, 1 BASEMENT, 2 UNITS RESIDENTIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TCHANG,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7641077538, -122.477551113)",39,10,7,35
Resident,6526030,1449 SOUTH VAN NESS AV,TRUE,PL Approved,8/23/2017 0:00,6,2,0,0,,,,2016-003875PRJ,Change of use of structure located at the rear of the property (along Virgil St) from garage to residential. Vertical addition expands the second story residential of the same building creating a two (2) new dwelling units.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JBANALES,Cumby Architecture,,4155051536,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7499918368, -122.415689878)",53,3,2,20
Resident,4913010,1270 FITZGERALD AV,FALSE,BP FILED,12/15/2015 0:00,3,1,0,0,,,,2016-000348PRJ,"LEGALIZE (E) KITCHENS TO LEGALIZE (E) RESIDENTIAL UNITS UNDER UNIT LEGALIZATION PROGRAM PER PLAN. COMPLY W/ NOV #201569121, #201569684, #201567912. PER ORD #43-14.","LEGALIZE (E) KITCHENS TO LEGALIZE (E) RESIDENTIAL UNITS UNDER UNIT LEGALIZATION PROGRAM PER PLAN. COMPLY W/ NOV #201569121, #201569684, #201567912. PER ORD #43-14.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,YEUNGMIN,WU XIAOQI,WU XIAOQI,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7219785987, -122.392537808)",88,2,9,1
Mixed,3515022,1675 HOWARD ST,FALSE,PL FILED,6/21/2016 0:00,0,0,0,0,,,,2016-005739PRJ,"Proposed removal & replacement of (E) first floor windows at Howard Street. Construction of (N) 12'-6"" building on top of (E) parking structure.",,19442,2892,0,0,0,0,0,0,0,6049,3200,0,0,0,0,13393,-308,0,0,0,0,0,0,0,0,,Centric Construction,Brynn McMillan,4159839520,8 - Mission,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7704617534, -122.41717986)",32,1,10,20
Resident,5890013A,219 MAYNARD ST,FALSE,BP FILED,5/13/2015 0:00,2,1,0,0,,,,,,NEW KITCHEN AREA ON 1ST FLOOR & LEGALIZE IN-LAW DWELLING UNIT UNDER ORDINANCE NO# 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7296423211, -122.42556804)",94,9,1,7
Resident,215023,1331 WASHINGTON ST,FALSE,PL FILED,6/30/2016 0:00,4,1,0,0,,,,2016-004976PRJ,Proposed addition of (N) dwelling unit to (E) 3-unit building. Horizontal & vertical expansion. Addition of (N) 4-car garage. Full interior renovation. Current staircase will be rebuilt.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,CHI ROBERT,CHI ROBERT,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7938695038, -122.415302548)",16,6,3,21
Mixres,3995007,2092 03RD ST / 600 18TH ST,FALSE,PL FILED,11/10/2015 0:00,18,18,0,0,,,,2014,"The proposed project involves the demolition of the existing buildings and construction of a new six-story, 68-foot-tall (84-foot-tall with mechanical penthouse), 20,540-square-foot building consisting of 18 dwelling units, 3,064 square feet of ground-fl","CONSTRUCT (N) 6-STORY, 19 DWELLING UNTS RESIDENTIAL ABOVE RETAIL WITH 1 BASEMENT BUILDING.",3110,-370,0,0,0,0,0,0,1350,0,-1350,0,0,0,2130,3110,980,0,0,0,0,0,0,0,0,KDURANDE,Michael Leavitt,Michael Leavitt,415-674-9100,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7631881051, -122.38908918)",55,2,9,26
Resident,518029,1973 GREENWICH ST,FALSE,BP FILED,7/17/2015 0:00,2,2,0,0,,,,2015-009869PRJ,TO DEMOLISH A 2 STORIES OF A SINGLE FAMILY DWELLING,TO ERECT A 4 STORIES OF 2 FAMLY DWELLINGS,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,,GOREN LEORA M,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7990596305, -122.432024341)",15,4,6,13
Resident,3509026,17 GRACE ST,TRUE,BP ISSUED,3/30/2018 0:00,13,13,0,0,,,,2014-002016PRJ,"The proposed project is to construct a five-story, 45-foot tall residential building on two adjacent lots that total 2,840 square feet. The proposed 10,249 gross square foot building would be accessed exclusively off Grace Street that includes thirteen d",ERECT 5 STORIES OF 13 DWELLING UNIT (APARMENT) WITH TYPE 5 CONSTRUCTION. N/A FOR MAHER ORDINANCE NO 155-13.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DISALVOJ,D-Scheme Studio Architects,,4152520888,4 - Downtown,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7751571763, -122.414565019)",32,1,10,34
Resident,1523031,462 22ND AVE,TRUE,CONSTRUCTION,12/13/2017 0:00,8,2,0,0,,,,2016-008410PRJ,"COVERT GARAGE INTO (3) ADDITION DWELL UNITS FOR A TOTAL (9) UNITS. UNITS TO BE WITHIN THE (E) BLDG ENVELOPE, PER ORDINANCE NO 30-15. REFER TO P/A 201605046574 FOR SOFT STORY RETROFIT PER SFBC CHAPTER 34B. 2012 IEBC A-4 AREA OF WORK & PATH OF EGRESS OF TH","COVERT GARAGE INTO (3) ADDITION DWELL UNITS FOR A TOTAL (9) UNITS. UNITS TO BE WITHIN THE (E) BLDG ENVELOPE, PER ORDINANCE NO 30-15. REFER TO P/A 201605046574 FOR SOFT STORY RETROFIT PER SFBC CHAPTER 34B. 2012 IEBC A-4
AREA OF WORK & PATH OF EGRESS OF TH",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CALEXAND,,FONG FAMILY TRUST,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7790063515, -122.481101525)",8,8,4,29
Resident,4965029,1083 HOLLISTER AV,FALSE,BP FILED,11/10/2015 0:00,2,1,0,0,,,,,,"LEGALIZE GROUND FL KITCHEN TO ADD (1)(N) RESIDENTIAL UNIT UNDER UNIT LEALIZATION PROGRAM. LEGALIZE GARAGE TO GROUND FL UNIT'S LIVING ROOM. COMPLY WITH NOV #201569083, NOV #201569681, NOV #201567882",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,YEUNGMIN,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7193339282, -122.392283503)",88,2,9,1
Resident,1127003,1211 SCOTT ST,TRUE,BP APPROVED,3/24/2017 0:00,3,1,0,0,,,,2015-012514PRJ,"ADDITION OF ONE ACCESSORY DWELLING UNIT AT THE GROUND FLOOR PER ORDINANCE 30-15, MISCELLANEOUS DECAY & WATER DAMAGE REPAIR, WATERPROOF (E) DECKS & FRONT STAIRCASE. SOFT STORY RETROFIT PERMIT #201509156939.","NEW APARTMENT ADDITION IN COMPLIANCE WITH ORDINANCE 30-15, MISCELLANEOUS DECAY & WATER DAMAGE REPAIR, WATERPROOF (E) DECKS & FRONT STAIRCASE. SOFT STORY RETROFIT PERMIT #201509156939. Sprinklers under separate permit.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,TAYLOR WENDY RUTLEDGE,,5 - Western Addition,5,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7811960138, -122.437659944)",97,4,11,39
Resident,572013,1458 BROADWAY,TRUE,BP ISSUED,2/14/2018 0:00,8,8,0,0,,,,2014-002834PRJ,"Change of use and vertical addition to convert a 2-story building with ground floor parking, and a second floor commercial office space into a 6-story building with a ground floor garage for (5) cars, (8) bicycle spaces and (8) residential units above.","
CONSTRUCT N/6 STORIES RESID'L OCCUP. BLDG CHANGE OF USE & VERTICAL ADDITION TO CONVERT A 2 UNIT STORY BLDG W/G/F PARKING & 2/F COMM'L OFFICE SPACE INTO A 6 STORY BLDG W/A G/F GARAGE FOR 8 CARS, 8 BICYCLE SPACES & 8 RESIDENTIAL UNITS ABOVE. PROPOSAL ALS",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NFOSTER,Y.A. Studios,,920-1839,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7963395148, -122.421086817)",105,4,3,32
Resident,4008003,580 DE HARO ST,TRUE,CONSTRUCTION,1/3/2018 0:00,2,2,0,0,Fee Payment,,Ownership,2013,"The proposed project would include demolition of 6 residential buildings and one office building, subdivide the property lot into 7 lots (3 - 25 x 100 lots and 4 - 25 x 75 lots), and build two 2-unit residential building and 5 single-family residential b","ERECT 3-STORY, 1 BASEMENT, TYPE V, 2 FAMILY DWELLING UNITS BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7625648001, -122.401698862)",54,2,9,26
Resident,7113063,195 BROAD ST,TRUE,BP ISSUED,8/16/2017 0:00,4,2,0,0,,,,2015-002590PRJ,1ST FLOOR: CONVERT (E) COMMERCIAL SPACE INTO TWO RESIDENTIAL UNITS.,1ST FLOOR: CONVERT (E) COMMERCIAL SPACE INTO TWO RESIDENTIAL UNITS.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,APERRY,,BROAD & CAPITOL HLDGS LLC,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7129604593, -122.458831849)",81,10,1,24
PDR,4227013A,1228 25TH ST,FALSE,PL FILED,10/28/2015 0:00,0,0,0,0,,,,2015-005968PRJ,Construction of a new Small Enterprise Workspace building on a lot currently used as container storage.,CONSTRUCT(N) 5-STORY COMMERCIAL BUILDING,13940,13940,0,0,0,0,0,0,0,0,0,0,11475,11475,0,2465,2465,0,0,0,0,0,0,0,0,VBYRD,Michael Leavitt Architecture,,4156749100,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7529398339, -122.391397248)",56,2,9,26
Mixres,4108003,2420 03RD ST,FALSE,BP FILED,5/8/2014 0:00,9,9,0,0,,,,2013,The proposed project would involve new construction of a 3-story with mezzanine mixed use building with 9 residential units and one commercial unit located at ground level. The project would have no off-street parking and 12 bicycle parking spaces.,"ERECT 3 STORIES , 9 DWELLING UNITS, TYPE 5 BUILDING",475,475,0,0,0,0,0,0,0,0,0,0,0,0,0,475,475,0,0,0,0,0,0,0,0,JNAVARRE,Angus McCarthy,,,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7589406254, -122.38872197)",55,2,9,26
Resident,5526006,1640 ALABAMA ST,FALSE,BP FILED,9/7/2016 0:00,2,1,0,0,,,,,,"REAR BLDG. ADDING (1) ACCESSORY DWELLING UNIT PURSUANT TO ORDINANCE 30-15 IN CONJUNCTION W/PREVIOUSLY APPROVED VOLUNTARY SEISMIC UPGRADE (REF, PERMIT #201609077013) (N) UNIT DOES NOT EXTEND BEYOND (E) BUILDING ENVELOPE. SPRINKLER UNDER SEP PERMIT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ADINASEE,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7462025501, -122.410884442)",83,9,2,2
Mixres,7146001,2214 CAYUGA AV,FALSE,BP FILED,12/28/2016 0:00,4,4,0,0,,,,2016-012135PRJ,"The proposed project is to demolish existing single family dwelling, which spans two parcels. On lot 1, construct two new buildings, each two residential over commercial. On lot 34, construct one mixed use with two dwellings over commercial, and once sin","ERECT A FOUR STORY, 2 DWELLING UNIT WITH RETAIL, NO BASEMENT, MIXED USE, TYPE VA BUILDING.
",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,"Gabriel Ng + Architects, Inc.",Jeremy Schaub,415-682-8060,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7101713163, -122.454862277)",66,9,1,28
Resident,4008003,580 DE HARO ST,TRUE,CONSTRUCTION,3/19/2018 0:00,2,2,0,0,Fee Payment,,Ownership,2013,"The proposed project would include demolition of 6 residential buildings and one office building, subdivide the property lot into 7 lots (3 - 25 x 100 lots and 4 - 25 x 75 lots), and build two 2-unit residential building and 5 single-family residential b","ERECT 3-STORY, 1 BASEMENT, TYPE V, 2 DWELLING UNITS BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,Kevin Dill,Kevin Dill,415-254-4790,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7625648001, -122.401698862)",54,2,9,26
Resident,6656029,1877 CHURCH ST,TRUE,BP ISSUED,4/30/2012 0:00,2,1,0,0,,,,2011,"To add a second dwelling unit to the ground level of the existing single-family home, and to expand the garage to accommodate a second off-street parking space. The project included remodeling of the interior and a one-story, horizontal expansion at the","RENOVATE GROUND FLOOR INTO A DWELLING UNIT. A HORIONTAL ADDITION @ THE REAR OF 302 SQ FT. INTERIOR REMODEL OF SECOND FL MASTER BEDRM, BATHRM W/ HORIZ ADDITION OF 93 SQ FT, AND A NEW DECK @ 140 SQ FT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,MIDDLEBR,,,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7403321542, -122.426373935)",59,9,5,10
Resident,4652014,1065 INNES AV,TRUE,BP ISSUED,10/25/2017 0:00,3,3,0,0,,,,2016-012218PRJ,Lot subdivision. Construction of three 3-story dwellings with parking garages.,"PROPOSE ADDRESS 1063 INNES AVE. TO ERECT 3 STORIES, 1 BASEMENT, TYPE VB, SINGLE FAMILY BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SIROISDA,Wing Lee Architects,Wing Lee,4152976493,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7334388375, -122.378833143)",78,2,9,1
Resident,7113014,140 SADOWA ST,TRUE,BP APPROVED,10/10/2017 0:00,2,1,0,0,,,,,,LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT PERMIT. UNIT LEGALIZATION ORD 43-14. LEGALIZE (E) KITCHEN. THREE BEDRM & TWO BATHRM. ALL WORK AT GROUND FLR.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ALEXANDE,,,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7125587566, -122.457337487)",81,10,1,24
Resident,4789014,1465 REVERE AV,TRUE,BP ISSUED,6/30/2017 0:00,2,1,0,0,,,,,,LEGALIZE EXISTING KITCHEN ON GROUND FLOOR TO and add one RESIDENTIAL UNIT,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SAMONSKY,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7300509898, -122.38784939)",86,2,9,1
Resident,5406004,12 NEPTUNE ST,FALSE,BP FILED,1/19/2017 0:00,1,1,0,0,,,,2017-001498PRJ,CONVERT (E) GARAGE SPACE INTO A ACCESSORY DWELLING UNIT PER ORDINANCE NO 162-16.,CONVERT (E) GARAGE SPACE INTO A ACCESSORY DWELLING UNIT PER ORDINANCE NO 162-16.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ALEXANDE,LIU WAI ON RUAN JIN ZHAO,LIU WAI ON & RUAN JIN ZHAO,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7308484162, -122.39725038)",87,2,9,1
MIXED,4175017,1201A ILLINOIS ST,FALSE,PL FILED,9/15/2017 0:00,2700,2700,0,0,,,,2017-011878PRJ,"The proposed project would involve construction of up to approximately 5.3 million gross square feet (gsf), and would provide 2,622 parking spaces at a ration of 0.6 space per residential unit (approx. 1,609 spaces in total) and one space per 1,500 sf of",,1731084,1723716,0,0,0,0,0,0,7368,597723,590355,0,45040,45040,0,107439,107439,0,0,0,980882,980882,0,0,0,,,,,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7573078825, -122.383852758)",56,2,9,26
Resident,4008003,580 DE HARO ST,TRUE,CONSTRUCTION,4/4/2018 0:00,2,2,0,0,Fee Payment,,Ownership,2013,"The proposed project would include demolition of 6 residential buildings and one office building, subdivide the property lot into 7 lots (3 - 25 x 100 lots and 4 - 25 x 75 lots), and build two 2-unit residential building and 5 single-family residential b","ERECT 4-STORY, TYPE V, NO BASEMENT, 2 DWELLING UNITS BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7625648001, -122.401698862)",54,2,9,26
Mixres,642036,1700 CALIFORNIA ST,TRUE,BP ISSUED,7/26/2017 0:00,47,5,0,0,,,,2016-000375PRJ,"Project proposes to convert garage space into five new dwelling units, and residential amenity space; Merge 12 units into seven units on the 7th, 9th, and 10th floors; Demolish the 1,019 sqft one-story portion of the building at the NW corner of the prop",MODIFICATION OF (E) GARAGE PATHWAY & (E) GARAGE INTO OFFICE SPACE. MODIFICATION (2) ELEVATORS. FACADE WORK WINDOWS. REBUILD PATH OF TRAVEL. EXTERIOR PATIO SPACE INCLUDING OVERHEADS/AWNINGS AT EXTERIOR ENTRANCES.,92170,5480,0,0,0,0,0,0,0,84628,5651,0,0,0,0,7542,-171,0,0,0,0,0,0,0,0,CMAY,"Reuben, Junius & Rose LLP",,4155679000,2 - Marina,2,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7904954074, -122.423027407)",102,4,6,30
Resident,3753089,265 SHIPLEY ST,FALSE,PL FILED,8/15/2014 0:00,9,9,0,0,,,,2013,"The proposed project would include a lot merger of Lots 089 & 090 and construction of a new 5 story, 9 unit residential building, with 6 off-street parking spaces located in a below-grade garage.",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DDWYER,Peter Naughton,Robert Edmonds,415 285-1300,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7786482951, -122.404063051)",32,1,10,34
Mixres,3965010,1798 BRYANT ST,FALSE,PL FILED,1/8/2016 0:00,131,131,0,0,,,,2015-006511PRJ,Construction of a new mixed-use building containing rental group housing and ground floor corner retail space.,,39418,34239,0,35904,35904,0,0,0,5179,0,-5179,0,0,0,0,3514,3514,0,0,0,0,0,0,0,0,VBYRD,,1798 BRYANT STREET SF LLC,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7645216021, -122.41065261)",53,3,2,20
PDR,3913005,155 DE HARO ST,TRUE,BP FILED,1/15/2015 0:00,0,0,0,0,,,,2013,"The project site consists of a 40,741 square foot lot (Assessor's Block 3913, Lot 005) bound by De Haro Street to the west, Carolina and Channel Street to the east, 15th Street to the south, and Berry Street to the north. Currently the lot contains two",CHANGE OF OCCUPANCY. LATERAL EXPANSION. ADDITION OF MMEZZANINES. PARKING STRIPING & LANDSCAPING.,32330,15405,0,0,0,0,0,0,0,0,0,0,32330,15405,0,0,0,0,0,0,0,0,0,0,0,JSPEIRS,Harvey Hacker,Harvey Hacker,415-957-0579,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7683737509, -122.401442062)",33,1,9,4
Resident,3753099,225 SHIPLEY ST,FALSE,BP FILED,12/31/2015 0:00,9,9,0,0,,,,2016-000601PRJ,TO ERECT 4 STORIES OF 9 DWELLING UNITS - MAHER ORDINANCE - EXTENDED ORDINANCE NO.155-13 NOT REQUIRED,TO ERECT 4 STORIES OF 9 DWELLING UNITS - MAHER ORDINANCE - EXTENDED ORDINANCE NO.155-13 NOT REQUIRED,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SOUTHWES,D SHIPLEY LLC,D SHIPLEY LLC,,9 - South of Market,6,Central SoMa; East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7792766827, -122.403264431)",32,1,10,34
Resident,3650037,1105 - 1107 CHURCH ST,FALSE,BP FILED,10/26/2015 0:00,3,1,0,0,,,,2016-000812PRJ,"COMPLY W/ NOTICE OF VIOLATION #200668838, LEGALIZATION OF REAR DECKS. REFERENCE PA #201510260794.","PER ORDINANCE 43-14, LEGALIZATION OF NEW RESIDENTIAL THRID UNIT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GPANTOJA,MICHAEL E/MARTHA E VANDERVORT 2012,MICHAEL E/MARTHA E VANDERVORT 2012,,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7530975041, -122.427294086)",52,3,5,22
Resident,4008003,580 DE HARO ST,TRUE,CONSTRUCTION,3/19/2018 0:00,2,2,0,0,Fee Payment,,Ownership,2013,"The proposed project would include demolition of 6 residential buildings and one office building, subdivide the property lot into 7 lots (3 - 25 x 100 lots and 4 - 25 x 75 lots), and build two 2-unit residential building and 5 single-family residential b","ERECT 4-STORY, TYPE V, NO BASEMENT, 2 DWELLING UNITS BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AA CONV,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7625648001, -122.401698862)",54,2,9,26
Resident,1774006,1321 19TH AV,FALSE,BP FILED,9/18/2014 0:00,2,1,0,0,,,,,,REPAIR RELOCATE (E) LAUNDRY FIXTURES TO GARAGE. CONVERT (E) LAUNDRY TO KITCHEN AND CONVERT G/F TO LEGL DWELLING UNIT UNDER ORDINANCE NO.43-14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7630610713, -122.477465987)",39,10,7,35
Resident,2196034,2158 22ND AV,FALSE,BP FILED,4/10/2015 0:00,2,1,0,0,,,,,,"LEGALIZE 2 BEDROOMS, 1 STUDY ROOM, 1 FAMILY ROOM, 1 FULL & HALF BATHROOM, COOKING AREA ON THE GROUND FLOOR BEHIND THE (E) GARAGE PER ORDINANCE NO# 43-14.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7474167758, -122.478891235)",40,10,7,35
Resident,1569015,2514 BALBOA ST,TRUE,BP REINSTATED,2/4/2015 0:00,2,1,0,0,,,,,,"VERTICAL & HORIZONTAL ADDITION, CHANGE FROM SINGLE FAMILY TO 2 RESIDENTIAL UNIT BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,FARRENSW,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7764810828, -122.485979198)",8,8,4,29
Resident,1422016,287 11TH AV,TRUE,BP ISSUED,7/18/2011 0:00,1,1,0,0,,,,,,"(REAR BLDG) TO ERECT 3 STORIES, SINGLE FAMILY RESIDENT.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GCABRERO,,,,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7830434656, -122.470126927)",5,8,4,11
Resident,2430019E,2586 30TH AV,TRUE,BP ISSUED,6/21/2017 0:00,2,1,0,0,,,,2016-008577PRJ,LEGALIZE (E) KITCHEN & (E) IN-LAW UNIT PER ORD #43-14 BUILT WITH PERMIT #200710185752 ON 1ST FL IN RESPONSE TO COMPLAINT #201693341.,LEGALIZE (E) KITCHEN & (E) IN-LAW UNIT PER ORD #43-14 BUILT WITH PERMIT #200710185752 ON 1ST FL IN RESPONSE TO COMPLAINT #201693341.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CAMPBELL,CHAN THOMAS F & JUDY S THOMAS,CHAN THOMAS F & JUDY S,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7390962151, -122.486905264)",40,10,7,35
Resident,92027,2138 JONES ST,TRUE,BP FILED,4/8/2015 0:00,6,1,0,0,,,,2015-006112PRJ,Creating a new unit within the existing envelope of one of the existing 5 dwelling units.,"SOFT STOREY RETROFIT - EVALUATION DOCUMENTATION TO MEET CHP 34B, revision of permit # 201308225004",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AHUISMAN,Steve Walkup,,4153421537,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8012112538, -122.41584898)",107,6,3,32
Resident,5320015,1893 OAKDALE AV,TRUE,BP ISSUED,3/12/2018 0:00,1,1,0,0,,,,2014-001128PRJ,"TO ERECT 4 STORIES, NO BASEMENT, TWO FAMILIES DWELLING. DEMO OF STORAGE STRUCTURE.","TO ERECT 4 STORIES, NO BASEMENT, TWO FAMILIES DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JSPEIRS,ICE Design Inc.,,6507416968,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7374766133, -122.395926483)",87,2,9,1
Retail/Ent,665004,1533 - 1539 FRANKLIN ST,FALSE,PL FILED,7/21/2015 0:00,0,0,0,0,,,,2015-006700PRJ,Conversion of an existing illegal office use to a tourist hotel occupying floors 1-3.,,2926,-88930,0,0,0,0,0,0,0,0,-88930,0,0,0,0,2926,0,0,0,0,0,0,0,0,0,CCLARKE,Farella Braun + Martel,Ilene Dick,415-954-4958,5 - Western Addition,2,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7887971235, -122.423994589)",100,4,6,39
Resident,4260014,1379 KANSAS ST,TRUE,BP ISSUED,2/2/2018 0:00,2,1,0,0,,,,2016-008251PRJ,"EXCAVATE (E) GROUND FL TO CONVERT GRD FLR STORAGE TO HABITABLE STUDIO VERTICAL & HORIZONTAL ADDITION TO ENLARGE (E) KITCHEN & BEDROOM. REMODEL BATH, RELOCATE (E) ENTRY STAIRS & EXCAVATE FOR OFF STREET BIKE STORAGE.","EXCAVATE (E) GROUND FL TO CONVERT GRD FLR STORAGE TO HABITABLE STUDIO VERTICAL & HORIZONTAL ADDITION TO ENLARGE (E) KITCHEN & BEDROOM. REMODEL BATH, RELOCATE (E) ENTRY STAIRS & EXCAVATE FOR OFF STREET BIKE STORAGE.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SIROISDA,OLSON JOHN H OLSON,OLSON JOHN H,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7522382263, -122.402071098)",54,2,9,26
Mixres,489015,2346 LOMBARD ST,TRUE,BP ISSUED,11/10/2017 0:00,6,6,0,0,,,,2014,Demolition of an existing two-story commercial building. Erect four-story building with six residential units and six off-street parking spaces. Building will be 40 feet in height.,"TO ERECT 4 STORIES , 6 RESIDENTIAL DWELLING UNITS. TYPE 5 CONSTRUCTION.MAHER ORDINANCE EXTENDED #155-13 NOT REQUIRED. project revised, mixed-use building, commercial at ground floor, no automotive parking.",1561,-1289,0,0,0,0,0,0,0,0,0,0,0,0,2850,1561,-1289,0,0,0,0,0,0,0,0,LAJELLO,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7996437118, -122.440218529)",17,4,6,13
Resident,179032,111 TRENTON ST,TRUE,BP APPROVED,2/2/2018 0:00,5,1,0,0,,,,2016-011522PRJ,Variance from the rear yard and open space requirements to allow the conversion of a garage into a residential studio unit.,TI TO EXISTING APARTMENT BUILDING. CONVERT (E) GARAGE TO RESIDENTIAL STUDIO UNIT. 1) CONSTRUCT & INSTALL NEW BATHROOM. 2) GARAGE DOOR AND INSTALL NEW WINDOW.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,APERRY,Wilson Ng,,4156840632,3 - Northeast,3,Chinatown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7959704628, -122.409268461)",104,6,3,6
Resident,5526005,1634 ALABAMA ST,TRUE,BP APPROVED,2/15/2017 0:00,2,1,0,0,,,,2016-000318PRJ,"1ST FL. REMODEL STORAGE AREA BEHIND GARAGE & ADD 12'X25' 1 STORY ADDITION W/ROOF DECK @ REAR YARD. REMODEL & ADDITION TO INCLUDE 2 BEDROOMS, BATH, MULTIPURPROSE RM, 2ND FL-EXPAND BATHROOM INTO SOUTH LIGHTWELL, INSTALL (N) DOORS @ (N) REAR DECK.","ADD N UNIT @ 1ST FLR HORIZONTAL ADDITION.REMODEL STORAGE AREA BEHIND GARAGE & ADD 12'X25' 1 STORY ADDITION W/ROOF DECK @ REAR YARD. REMODEL & ADDITION TO INCLUDE 2 BEDROOMS, BATH, MULTIPURPOSE RM, 2ND FL-EXPAND BATHROOM INTO SOUTH LIGHTWELL, INSTALL (N)",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SJIMENEZ,NACHURY MAXENCE V MAXENCE,NACHURY MAXENCE V,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7462710098, -122.410891035)",83,9,2,2
Resident,1827019,2238 KIRKHAM ST,TRUE,BP ISSUED,4/5/2018 0:00,2,1,0,0,,,,2016-000906PRJ,LEGALIZATION OF DWELLING UNITS INSTALLED WITHOUT A PERMIT,LEGALIZATION OF DWELLING UNITS INSTALLED WITHOUT A PERMIT.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JIMENEZS,KONG QING LUN & PAN JIAN YUE Kong,KONG QING LUN & PAN JIAN YUE,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7597204632, -122.485091129)",39,10,7,35
Resident,6706045,1247 BOSWORTH ST,FALSE,BP FILED,12/2/2016 0:00,1,1,0,0,,,,,,"TO ERECT 3 STORIES, NO BASEMENT, TYPE VB, SINGLE FAMILY BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7356345981, -122.441420854)",72,9,8,41
Resident,1193048,2150A - 2166 HAYES ST,FALSE,PL FILED,11/8/2016 0:00,9,9,0,0,,,,2015-011253PRJ,"DEMOLITION OF EXISTING MEDICAL OFFICES ON MERGED LOT UNDER CONDITIONAL USE. CONSTRUCTION OF 3 NEW SEPARATE 4 -STORY RESIDENTIAL BUILDINGS CONTAINING THREE (3) RESIDENTIAL UNITS (FLATS) O/ GRAGE EACH, FOR A TOTAL OF NINE (9) RESIDENTIAL FLATS.
The PPA",,0,-17851,0,0,0,0,0,0,17851,0,-17851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,Leonardo Zylberberg,Leonardo Zylberberg,415-845-8239,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7734818672, -122.451979186)",24,7,11,18
Resident,6605001,1550 DIAMOND ST,FALSE,BP FILED,7/20/2016 0:00,2,1,0,0,,,,,,"LEGALIZATION OF (E) INLAW UNIT ON 3RD FLOOR PER S.F ORDINANCES 43-14. COMPLY NOV#201415981 UPGRADE ELECTRICAL SERVICE PANEL TO 200 AMPS, AND PLUMBING WORKS.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ADINASEE,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7448665756, -122.435968507)",84,9,5,22
Resident,1824001A,1407 29TH AV,TRUE,BP ISSUED,12/22/2016 0:00,3,1,0,0,,,,2015-006670PRJ,"LEGALIZE AS BUILT UNIT ON 1ST FLOOR PER PLANS (LIVING ROOM, KITCHEN, ONE BATHROOM AND ONE BEDROOM - UNIT LEGALIZATION ORDINANCE 43-14","LEGALIZE AS BUILT UNIT ON 1ST FLOOR PER PLANS (LIVING ROOM, KITCHEN, ONE BATHROOM AND ONE BEDROOM - UNIT LEGALIZATION ORDINANCE 43-14",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SETYDIPU,,"WONG, BO-KIN",,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7610063046, -122.487914618)",39,10,7,35
Resident,6170037,239 ORDWAY ST,TRUE,BP APPROVED,10/19/2017 0:00,2,2,0,0,,,,2016-007919PRJ,"TO ERECT 3 STORIES, NO BASEMENT, SIGNLE FAMILY DWELLING.","TO ERECT 3 STORIES, NO BASEMENT, SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SOUTHEAS,CHIN VICTOR S & AMY Z CHIN,CHIN VICTOR S & AMY Z,,12 - South Central,10,,Rest of the City,2018,Q1,2018_Q1,"(37.7195587908, -122.403088695)",91,9,9,25
Resident,1029032,2913 CALIFORNIA ST,FALSE,BP FILED,5/17/2016 0:00,2,1,0,0,,,,,,"VERTICAL & HORIZONTAL ADDTION TO A 1 STORY, SINGLE FAMILY DWELLING TO BECOME 3 STORY, 2 UNITS RESIDENTAL, RAISE UP BUILDING TO OBTAIN CLEARANCE FOR ONE STORY AT (E) CRAWL SPACE.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SVELLVE,,,,5 - Western Addition,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7874719223, -122.44268229)",103,8,6,30
Resident,2402034,1349 TARAVAL ST,TRUE,BP ISSUED,9/7/2017 0:00,3,1,0,0,,,,2015-010714PRJ,HORIZONTAL & VERTICAL EXTENSION TO ENLARGE THE 2 UPPER UNITS & GROUND FLOOR COMMERCIAL AREA AND TO ADD A NEW 4TH FLOOR CONDOMINUMUM UNIT.,HORIZONTAL EXTENSION TO ENLARGE THE 2 UPPER UNITS & GROUND FLOOR COMMERCIAL AREA.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GORDON-J,,REYKHEL YANA,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7425798596, -122.480753572)",40,10,7,35
Resident,5335034,2065 QUESADA AV,FALSE,BP FILED,5/19/2015 0:00,1,1,0,0,,,,,,"ERECT 3-STORY, TYPE V, SINGLE FAMILY DWELLING BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7369959532, -122.398434954)",87,2,9,1
Resident,5306025,4616 03RD ST,TRUE,CONSTRUCTION,11/1/2016 0:00,2,1,2,1,,,,2012,Variance request to the exposure requirement of P.C. Section 140(a)(2) for the change of use from single dwelling unit to accomodate interior remodeling for an additional unit. The open space does not meet the 25 foot minimum horizontal dimension in eac,"CONVERSION OF (E) SFD INTO A 2 FAMILY DWELLING BY CREATION OF DWELLING UNIT LOWER LEVE.
Add 1 DWELLING UNIT AT LOWER LEVEL of rear bldg; No CFC until easement has been recorded; see PA#201310169347.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TLENANE,Linda Kahn,Linda Kahn,415-935-3641,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7362024204, -122.390593539)",86,2,9,1
Mixres,3548033,1801 AND 1863 MISSION ST,TRUE,BP ISSUED,8/1/2017 0:00,54,54,0,0,,,,2009,"Construction of two new residential buildings in existing parking lots. The projects would include: Site 1: 17 dwelling units, 7 pkg spaces & retail space; Site 2: 37 residential units, 17 PKG space and retail.","ERECT 7 STORIES,17 DWELLING UNIT,MIX USE,TYPE 1 .",3235,3235,0,0,0,0,0,0,0,0,0,0,0,0,0,3235,3235,0,0,0,0,0,0,0,0,CTOWNES,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan; Mission Public Life Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7672656853, -122.419461868)",53,3,2,20
Resident,2954A048,184 MARIETTA DR,TRUE,CONSTRUCTION,4/9/2018 0:00,2,1,0,0,,,,,,REVISION TO PA #201511031627 TO MODIFY RESIDENTIAL UNIT PREVIOUSLY LEGALIZED PER PA#201511031627 ON,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,13 - Ingleside,7,,Rest of the City,2018,Q1,2018_Q1,"(37.740105818, -122.446758681)",72,9,8,41
PDR,4851017,1313 ARMSTRONG AV,FALSE,BP FILED,11/27/2012 0:00,0,0,0,0,,,,,,TO ERECT ONE STORY PRODUCT PACKAGING BUILDING W/ PARKING.,1355,1355,0,0,0,0,0,0,0,0,0,0,1355,1355,0,0,0,0,0,0,0,0,0,0,0,HARRIS D,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7230787732, -122.387525705)",78,2,9,1
PDR,5253028,1665 GALVEZ AV,TRUE,BP ISSUED,10/6/2016 0:00,0,0,0,0,,,,,,"TO ERECT 1 STORY, NO BASEMENT, WAREHOUSE/STORAGE BUILDING.
** MAHER: COMPLIANCE WITH ORDINANCE NO# 155-13 NOT REQUIRED **",2200,2200,0,0,0,0,0,0,0,0,0,0,2200,2200,0,0,0,0,0,0,0,0,0,0,0,WINSLOWD,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.741139529, -122.389072063)",86,2,9,1
Mixres,510001,2101 LOMBARD ST,FALSE,BP FILED,10/5/2016 0:00,9,9,0,0,,,,2015-015252PRJ,"DEMOLISH OF 1 STORY COMMERCIAL RETAIL BUILDING. ERECT A 4 STORY TYPE 5, 9 UNITS RESIDENTIAL AND COMMERCIAL BUILDING.","ERECT A 4 STORY TYPE 5, 9 UNITS RESIDENTIAL AND COMMERCIAL BUILDING.",3174,1062,0,0,0,0,0,0,0,0,0,0,0,0,2112,3174,1062,0,0,0,0,0,0,0,0,MAYCHRIS,Ghiai Architects,,4157752113,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7995844404, -122.436277669)",15,4,6,13
Resident,1760009,1335 05TH AV,FALSE,BP FILED,5/6/2015 0:00,3,1,0,0,,,,2015-006400PRJ,"LEGALIZE ADDITION UNIT ON 1ST FL PER PLAN (1-BEDROOM, LIVING ROOM, BATHROOM). UNIT LEGALIZATION PER ORIDINANCE 43-14.","LEGALIZE ADDITION UNIT ON 1ST FL PER PLAN (1-BEDROOM, LIVING ROOM, BATHROOM). UNIT LEGALIZATION PER ORIDINANCE 43-14.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,LEE BENSON CHAN CREIGHTON,,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.763520696, -122.462310871)",109,7,11,14
MIPS,836002,1540 MARKET ST,FALSE,BP FILED,12/9/2016 0:00,0,0,0,0,,,,2009,"Construction of two buildings: one residential tower building, 400' in height, with 180-du and 50 parking spaces, and one 24-ft wide building, 65' in height, connected by pedestrian bridge at the third floor. Demo of existing four-story commercial build",,17923,-21236,0,0,0,0,0,0,0,15281,-22827,0,0,0,1051,2642,1591,0,0,0,0,0,0,0,0,TCHANG,Richard Johnson,Andrew Junius,415 567 9000,6 - Buena Vista,5,Downtown; The Market Street Hub Project; Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7752149599, -122.419607262)",21,4,11,9
Resident,2459051,2600 38TH AV,TRUE,BP ISSUED,1/30/2017 0:00,2,1,0,0,,,,2016-000385PRJ,"BPA #2015.1230.6130 approved 8/22/2016 per NSR-2016K303132 recorded 8/8/2016 to legalize a second dwelling unit at the ground floor of an existing single-family two-story residential dwelling, per Section 207.3 (Ord #43-14).",UNIT LEGALIZATION PER ORD.43-14 LEGLIZE (E) UNIT AT GROUND FLOOR.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CLARKECO,FENG XIU QIONG,FENG XIU QIONG,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7382913206, -122.495515534)",40,10,7,35
Resident,2317016G,2130 SANTIAGO ST,TRUE,CONSTRUCTION,1/27/2016 0:00,2,1,0,0,,,,,,"LEGALIZE ADDITION UNIT (UNIT #2) ON 1ST FLOOR PER PLAN. TWO BEDROOMS, ONE LIVING ROOM, ONE OFFICE, TWO BATHROOMS & ONE KITCHEN.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CLARKECO,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7445234765, -122.490394598)",40,10,7,35
Resident,5377070,159 & 161 CHARTER OAK AV,FALSE,PL FILED,3/15/2016 0:00,4,4,0,0,,,,2015-009227PRJ,159 and 161 Charter Oak Avenue (5377/070 and 071); Project Review meeting to discuss a merge and subdivide two existing lots for three new single family dwellings. The purpose of the meeting is to review proposed lot configuration and building massing.,"ERECT 3 STORY, NO BASEMENT, SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JBANALES,"Gabriel Ng + Architects, Inc.",,415-682-8060,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.735213578, -122.404183064)",87,2,9,1
Resident,155021,1370 PACIFIC AV,TRUE,BP ISSUED,11/28/2016 0:00,1,1,0,0,,,,2013,"Demo existing structure and construct new mixed-use, commercial/residential building with parking.","TO ERECT 4 STORIES, 1 BASEMENT, SINGLE FAMILY WITH BUSINESS.",0,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0,0,NFOSTER,,,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7956826, -122.417763155)",16,6,3,32
Resident,0918002E,2328 NORTH POINT ST,TRUE,BP ISSUED,11/7/2016 0:00,1,-1,0,0,,,,,,"ADD 13'-2""X 25'X 1-STORY @ REAR. ADD 1-STORY ON TOP. ALTER SHAPE OF WESTERN LIGHTWELL @ GROUND & ENLARGE EASTERN LIGHTWELL. ROOF DECK OVER 15' FRONT SETBACK OVER 3RD STORY. ROOF DECK ON TOP OF (N) STORY. INTERNAL RECONFIGURATION.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,,,,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.8027685933, -122.445704956)",17,4,6,13
Resident,588015,2530 FILLMORE ST,FALSE,BP FILED,12/29/2016 0:00,14,2,0,0,,,,2017-000414PRJ,"ADDITION OF TWO DWELLING UNITS PER ORDINANCE NO 162-16. NEW ELEVATOR, KITCHEN ALTERATIONS, ROOF DECKING. REFERENCE SOFT STORY PERMIT #2016-1213-4804.","ADDITION OF TWO DWELLING UNITS PER ORDINANCE NO 162-16. NEW ELEVATOR, KITCHEN ALTERATIONS, ROOF DECKING. REFERENCE SOFT STORY PERMIT #2016-1213-4804.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ADINASEE,William Meyer & Co.,,4155595142,2 - Marina,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7929427752, -122.434338218)",102,4,6,30
CIE,1771041,1555 IRVING ST,TRUE,BP APPROVED,1/6/2017 0:00,0,0,0,0,,,,2015-006386PRJ,Request for Conditional Use Authorization for a Change of Use from a store to a school for grades 9-12. The proposed work includes interior tenant improvements to the ground floor of 1555 and to both levels of 1601.,"CHANGE OF USE FROM BEAUTY SCHOOL TO PRIVATE HIGH SCHOOL(LARGE INST'L USE). 2015-006386CUA & 2015-006386VAR. DEMO (E) INT. WALLS, ADD (N) WALLS, PROVIDE ACC. RESTRMS, 2(N) STAIRS & ELEVATOR. ACC. FRONT DRS. CONSTRUCT (N) ROOF DECK. PROVIDE 6 CLASS-2 BIKE",9416,2718,6698,9416,2718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CCLARKE,,,,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7634315976, -122.474747964)",109,10,11,14
Resident,4282A001C,1440 DE HARO ST,FALSE,BP FILED,12/15/2016 0:00,2,2,0,0,,,,2016-016390PRJ,TO ERECT 4 STORIES OF 2 FAMILY DWELLING,TO ERECT 4 STORIES OF 2 FAMILY DWELLING,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,1440DEHARO LLC LLC,1440DEHARO LLC,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7514549835, -122.400624582)",54,2,9,26
Resident,983022,104 PRESIDIO AV,FALSE,PL FILED,1/24/2017 0:00,3,-4,0,0,,,,2017-001217PRJ,"Conditional Use Authorization to permit a dwelling unit merger of a 1-bedroom unit into a 3,179 sq. ft. 2-bedroom unit; and turn an existing 1-bedroom unit into an 11,020 sq. ft. 6-bedroom unit. In total project will merge four units, going from seven",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,BBENDIX,"Reuben, Junius and Rose, LLP",,4155679000,1 - Richmond,2,,Rest of the City,2018,Q1,2018_Q1,"(37.7906277901, -122.447212709)",10,8,6,31
Resident,73003,2127 TAYLOR ST,TRUE,BP ISSUED,5/5/2017 0:00,3,1,0,0,,,,2016-013402PRJ,"REAR BLDG. PER UNIT LEGALIZATION ORDINANCE# 43-14. LEGALIZATION OF UNIT# 7 ON 1ST FLOOR OF 2131 TAYLOR LOCATED IN REAR BUILDING. 1 BED, 1 BATH, 1 KITCHEN.","REAR BLDG. PER UNIT LEGALIZATION ORDINANCE# 43-14. LEGALIZATION OF UNIT# 7 ON 1ST FLOOR OF 2131 TAYLOR LOCATED IN REAR BUILDING. 1 BED, 1 BATH, 1 KITCHEN.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PANTOJAG,GORDON ROBERT C III&CLARE L TR,GORDON ROBERT C III&CLARE L TR,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8020679605, -122.414928065)",107,6,3,32
Resident,1167010,2740 MCALLISTER ST,FALSE,BP FILED,11/12/2015 0:00,3,2,0,0,,,,2015-015392PRJ,"Proposed demolition and renovation to (E) SFH. Addition of 2 additional unit, totaling 3 dwelling units. Addition of 2 stories.",RENOVATE (E) 1 UNIT RESIDENTIAL BLDG ADD UNITS FOR TOTAL OF 3 UNITS. 9 BEDROOMS & 6 BATHROOMS FOR ALL UNITS.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,FARRENSW,"Natoma Architects, Inc.",Feifei Feng,4156268977,1 - Richmond,1,,Rest of the City,2018,Q1,2018_Q1,"(37.775677978, -122.457192975)",12,8,4,18
Resident,5879040,139 SWEENY ST,FALSE,BP FILED,4/22/2015 0:00,2,1,0,0,,,,,,"COMPLY W/ COMPLAINT #201051068, 201401781, 201540913 & 201540932. LEGALIZE DWELLING UNIT AT FIRST FLOOR PER ORDINANCE NO. 43-14.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,12 - South Central,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7327135457, -122.408098035)",91,2,2,25
Mixres,3755023,1144 - 1150 HARRISON ST,FALSE,PL FILED,12/2/2016 0:00,381,381,0,0,,,,2016-001738PRJ,"Demolition of a 2-story, 76,345 sf brick masonry building occupied by German Motors Collision Center and construction of a 65' tall mixed-use development with 3,000 sf ground floor retail, 381 residential units, 30,580 sf open space, 404 bicycle parking",,3000,-72625,0,0,0,0,0,0,0,0,0,75625,0,-75625,0,3000,3000,0,0,0,0,0,0,0,0,,"1140 Harrison Associates, LP",,9254902990,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7749843202, -122.407840888)",32,1,10,34
Mixres,5237013,1375 EVANS AV,TRUE,BP ISSUED,10/5/2015 0:00,1,1,0,0,,,,,,"ERECT 2-STORY, TYPE 5, WORKSHOP COMMERCIAL AND 1 DWELLING UNIT BUILDING. N/A FOR MAHER ORDINANCE NO. 155-13.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JSPEIRS,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7404082749, -122.384451611)",86,2,9,1
Resident,5910001,212 CAMBRIDGE ST,FALSE,BP FILED,4/6/2015 0:00,2,1,0,0,,,,,,"LEGALIZE A 2ND UNPERMITTED UNIT. REINSTALL CABINET, SINK & STOVE IN KITCHEN, COMPLETE PLAN'G LANDSCAPING & LOCATED BICYCLE PARKING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,12 - South Central,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7286320526, -122.419592417)",92,9,2,7
Resident,2023004,1715 26TH AV,TRUE,BP ISSUED,1/30/2018 0:00,2,1,0,0,,,,,,"LEGALIZE IN-LAW DWELLING UNIT UNDER ORDINANCE NO# 43-14. LEGALIZE & REMODEL (E) ROOM ON THE GROUND FLOOR INCLUDE: 1 BEDROOM, 1 FULL BATHROOM, 1 COOKING & DINING AREA.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NKWIATKO,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7554179321, -122.48434316)",39,10,7,35
Mixres,2402029,1333 TARAVAL ST,FALSE,BP FILED,1/17/2017 0:00,1,0,0,0,,,,2017-001502PRJ,"HORIZONTAL ADDITION. ADD (N) (4) STORAGE & (2) (N) HALF BATHS ON 1ST FLR. CHANGE OF USE, CONVERT (E) 1ST FLR TO COMMERCIAL RETAIL.","HORIZONTAL ADDITION. ADD (N) (4) STORAGE & (2) (N) HALF BATHS ON 1ST FLR. CHANGE OF USE, CONVERT (E) 1ST FLR TO COMMERCIAL RETAIL.",2204,2204,0,0,0,0,0,0,0,0,0,0,0,0,0,2204,2204,0,0,0,0,0,0,0,0,SETYADIP,Ice Design Inc.,,6507416968,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7425873724, -122.480582638)",40,10,7,35
Resident,5312013,1748 OAKDALE AV,FALSE,BP FILED,6/25/2013 0:00,2,1,0,0,,,,2015-003152PRJ,Legalize pre-existing as-built structure. 2-story over basement with garage. Convert (E) single family dwelling to two-family dwelling units. Comply with NOV 201033245.,"LEGALIZE PRE-EXISTING AS BUILT STRUCTURE - 2 STORY OVER BASEMENT WITH GARAGE.(5 BDROOMS, 2 LIVING RMS, 3 BATHROOMS, 1 KITCHEN, 1 GARAGE) CONVERT (E) SINGLE FAMILY DWELLING TO TWO FAMILY DWELLINGS UNIT, COMPLY WITH NOV#201033245",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,ICE,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7363734015, -122.39293)",86,2,9,1
Resident,4158060,1019 KANSAS ST,FALSE,BP FILED,10/29/2014 0:00,2,1,0,0,,,,,,LEGALIZATION OF (E) UNAUTHORIZED (WITH COOKING FARLURES) 2ND DWELLING UNIT. UNIT LEGALIZATION ORDINANCE 43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KCONNER,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7567530772, -122.402460379)",54,2,9,26
Resident,158010,1032 PACIFIC AV,TRUE,CONSTRUCTION,8/9/2017 0:00,6,6,0,0,,,,2015-015804PRJ,ERECT 5 STORY 6 UNITS RESIDENTIAL BUILDING.,"ERECT 5-STORY, 1 BASEMENT, 6 UNITS RESIDENTIAL BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,YEUNGMIN,JEFFREY & JEN MEI ENG REVOC TRUST,JEFFREY & JEN MEI ENG REVOC TRUST,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7963705557, -122.412263446)",107,6,3,21
Resident,2114022,1988 21ST AV,FALSE,BP FILED,9/30/2015 0:00,2,1,0,0,,,,2015-013590PRJ,"LEGALIZE DWELLING UNIT W/KITCHEN ON GROUND FLOOR, NEW UNIT HAS 1 BEDROOM, FAMILY ROOM, KITCHEN, FULL BATHROOM & STORAGE. (UNIT LEGALIZATION ORDINANCE 43-14.)","LEGALIZE DWELLING UNIT W/KITCHEN ON GROUND FLOOR, NEW UNIT HAS 1 BEDROOM, FAMILY ROOM, KITCHEN, FULL BATHROOM & STORAGE. (UNIT LEGALIZATION ORDINANCE 43-14.)",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SAMONSKY,,CEN WEIQUAN,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7506436027, -122.478108154)",39,10,7,35
MIPS,3517035,1401 HOWARD ST,TRUE,BP ISSUED,3/15/2017 0:00,0,0,0,0,,,,2011,"The project involves a change of use from a church to office and restaurant, and a seismic upgrade for the entire building.","CHANGE OF USE. FROM CHURCH TO 14,898 SQ FT OF OFFICE SPACE. 1300SF OF RETAIL SPACE AND 2500SF OF ASSEMBLY SPACE. MAHER ORD N/A.
NO CFC TO BE ISSUED UNTIL ALL REQUIRED ACCESSIBILITY UPGRADES HAVE BEEN COMPLETED UNDER A SEPERATE TENANT IMPROVEMENT PERMIT",16198,-862,17060,0,-17060,0,0,0,0,14898,14898,0,0,0,0,1300,1300,0,0,0,0,0,0,0,0,RSUCRE,,,,9 - South of Market,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7735620033, -122.414298822)",32,1,10,34
Resident,5550040,276 RIPLEY ST,TRUE,BP ISSUED,2/8/2018 0:00,1,1,0,0,,,,2016-001065PRJ,"REAR BLDG. ERECT 3-STORY, TYPE-5, NO BASEMENT, SINGLE FAMILY DWELLING BUILDING.","REAR BLDG. ERECT 3-STORY, TYPE-5, NO BASEMENT, SINGLE FAMILY DWELLING BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ALEXANDE,ROSS MINDY LAUREN,ROSS MINDY LAUREN,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7440696238, -122.409134891)",60,9,2,2
Resident,5640010,965 POWHATTAN AV,TRUE,CONSTRUCTION,4/2/2018 0:00,4,4,0,0,,,,,,"ERECT 2 STORIES, 1 BASEMENT, TYPE 5, SINGLE FAMILY DWELLING BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,,,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7415083847, -122.410350093)",83,9,2,2
Mixres,278010,1244 LARKIN ST,TRUE,CONSTRUCTION,3/7/2018 0:00,3,3,0,0,,,,2015-015278PRJ,"Proposed 2-story vertical addition to the existing 2-story building with retail sales and service use at the second floor, and parking at the ground floor. Proposed change of use to medical office at 2nd floor, new ground floor retail and accessory parki","(SITE PERMIT) ADD 2 ADDITIONAL FLRS OF HOUSING SET BACK FROM (E) FACADE OF HISTORIC 2 STORY BLDG. PROPOSED USED OF RETAIL/PARKING @ BASE, MEDICAL OFFICE @ (E) 2ND FLR & HOUSING @ THE UPPER FLRS.",5630,155,0,0,0,0,0,0,5475,5160,-315,0,0,0,0,470,470,0,0,0,0,0,0,0,0,APERRY,Ondarosa Architects,Brent McDonald,4153627441,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7895520934, -122.418548103)",50,6,3,21
Resident,5319035,1961 OAKDALE AV,TRUE,BP ISSUED,4/3/2018 0:00,2,2,0,0,,,,,,"TO ERECT 3 STORIES, NO BASEMENT, 2 RESIDENTIAL DWELLING UNITS.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DVU,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7381787458, -122.397188079)",87,2,9,1
Resident,7092014,220 LOBOS ST,FALSE,BP FILED,5/24/2016 0:00,2,1,0,0,,,,2016-007448PRJ,LEGALIZE (E) DWELLING UNIT WITH KITCHEN ON 2ND FLOOR. COMPLY WITH ORDINANCE #33-16 AND PER ORDINANCE #43-14.,LEGALIZE (E) DWELLING UNIT WITH KITCHEN ON 2ND FLOOR. COMPLY WITH ORDINANCE #33-16 AND PER ORDINANCE #43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CAMPBELL,HUANG JIA JUN HUANG,HUANG JIA JUN,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.7151562189, -122.459861511)",81,10,1,24
Resident,3534043,235 CLINTON PK,TRUE,BP ISSUED,7/14/2017 0:00,3,1,0,0,,,,2016-006325PRJ,LEGALIZATION OF (E) UNAUTHORIZED DWELLING UNIT UNDER ORDINANCE NO. 43-14. LEGALIZATION OF (E) STUDIO APARTMENT WITH KITCHEN & FULL BATH.,LEGALIZATION OF (E) UNAUTHORIZED DWELLING UNIT UNDER ORDINANCE NO. 43-14. LEGALIZATION OF (E) STUDIO APARTMENT WITH KITCHEN & FULL BATH.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JIMENEZS,Jeff Doney,,4159998658,8 - Mission,8,Market and Octavia; Market Octavia Living Alleys,Market & Octavia,2018,Q1,2018_Q1,"(37.7689125357, -122.425336742)",37,3,5,20
Resident,3650050,240 CHATTANOOGA ST,FALSE,BP FILED,7/7/2016 0:00,38,6,0,0,,,,2016-008777PRJ,Enclosure of existing parking space at the ground floor to create six additional dwelling units.,ADDITION OF 6 UNITS UNDER SOFT STORY PROGRAM WITHIN THE (E) BUILDING ENVELOPE. WORK INCLUDE 6 KITCHEN & 10 BATHROOM. 11 BEDROOMS. SOFT STORY PA# 2016/06/09/9515.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,VFLORES,Michael Harris,,4152438272,7 - Central,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7526517651, -122.426834972)",52,3,5,22
Mixres,3532013,1463 STEVENSON ST,FALSE,PL FILED,6/28/2016 0:00,45,45,0,0,,,,2014,"For 344 - 14th Street: proposing to construct a mixed-use building with 45 residential units, 5,849 sq.ft. of retail. For 1463 Stevenson Street: proposing to construct a building with 18,995 sq.ft. of ground floor PDR space and 47 parking spaces.",,24765,24765,0,0,0,0,0,0,0,0,0,0,19025,19025,0,5740,5740,0,0,0,0,0,0,0,0,AA CONV,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7684589162, -122.421093684)",53,3,2,20
Mixed,135009,1088 SANSOME ST,TRUE,BP ISSUED,2/20/2018 0:00,0,0,0,0,,,,2016-010294PRJ,"Change of use of approximately 49,999 square feet from electronics manufacturing to office on 1st, 2nd, 3rd penthouse levels. 12,669 square feet in basement proposed for retail use.",REPLACEMENT OF (E) WINDOWS AND STOREFRONT AT PENTHOUSE/ROOF,62668,-11144,0,0,0,0,0,0,0,49999,49999,0,0,-61143,0,12669,0,0,0,0,0,0,0,0,0,CASBAGH,"Reuben, Junius & Rose",,4155679000,3 - Northeast,3,Northeast Waterfront,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.800116195, -122.402203012)",77,6,3,8
Resident,5710027,11 GLADYS ST,FALSE,PL FILED,4/15/2015 0:00,2,1,0,0,,,,2015-004717PRJ,Vertical addition to both the rear and front setbacks to permit an additional dwelling unit.,,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,SMENDRIN,Robert Oliver,OLIVER ROBERT R,4154123664,11 - Bernal Heights,9,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7399966972, -122.422307321)",61,9,2,2
Resident,1155005,1500 MCALLISTER ST,TRUE,BP FILED,8/3/2016 0:00,10,1,0,0,,,,2016-000189PRJ,"REFERENCE STRUCTURAL UNDER SOFT STORY PERMT#201505216944. WORK INCLUDES ADDING A DWELLING UNIT @ GROUND LEVEL (PER ORDIANCE 30-15)INCLUDES SLAB EXCAVATION, LOWERING EXTERIOR ENTARANCE DOOR W/LEVEL LANDING, ADDING 3 NEW WINDOWS IN KIND @ (E) LOCATIONS. NE","REFERENCE STRUCTURAL UNDER SOFT STORY PERMT#201505216944. WORK INCLUDES ADDING A DWELLING UNIT @ GROUND LEVEL (PER ORDIANCE 30-15)INCLUDES SLAB EXCAVATION, LOWERING EXTERIOR ENTARANCE DOOR W/LEVEL LANDING, ADDING 3 NEW WINDOWS IN KIND @ (E) LOCATIONS. NE",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ESAMONSK,ELIZABETH COURT LP,ELIZABETH COURT LP,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7781946117, -122.436921172)",97,4,11,39
Resident,1202002J,1282 HAYES ST,TRUE,CONSTRUCTION,4/11/2018 0:00,8,8,0,0,,,,2008,CONDITIONAL USE APPEAL OF HARDING THEATHER,New 5-story residential building with 7 dwelling units and 2-car stacked parking,0,-13207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13207,0,0,0,0,0,0,0,0,MAYCHRIS,,,,5 - Western Addition,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7753474061, -122.437463265)",23,4,11,9
Resident,4172028,1133 TENNESSEE ST,TRUE,BP ISSUED,11/20/2017 0:00,3,1,0,0,,,,2015-012830PRJ,"The proposed project would establish a new dwelling unit for a total of three dwelling units, and undertake exterior alterations, including: Restoration of Primary Facade/Facade Alterations: The project would restore the primary facade facing Tennessee S","NEW HORIZONTAL ADDITION AT REAR OF (E) 3 STORY BLDG, REMODEL + EXPANSION OF 2 (E) TOP FLOOR UNITS, & RENOVATION OF (E) GARAGE & ADDITION OF (N) 1 BEDROOM DWELLING UNIT, 2 (E) TOP UNITS HAVE 1 REMODELED KITCHEN & 1 REMODELED BATH, PLUS 1.5 BATHS EACH. NEW",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,,ROBERT T NOELKE 2012 TR,,9 - South of Market,10,Central Waterfront (EN); Dogpatch Public Realm Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7572329378, -122.388875593)",55,2,9,26
MIPS,3510060,1458 HOWARD ST,FALSE,BP FILED,11/14/2016 0:00,0,0,0,0,,,,2016-015578PRJ,"CHANGE OF USE ON GROUND FLOOR FROM INDUSTRIAL WAREHOUSE TO PROFESSIONAL SERVICES OFFICE. WORK INCLUDE NEW FLOOR PLATE, FIXTURES, FINISHES & RECONFIGURATION OF STAIR, IMPROVEMENT TO SECOND FLOOR (E) OFFICES. ** MAHER: N/A **","CHANGE OF USE ON GROUND FLOOR FROM INDUSTRIAL WAREHOUSE TO PROFESSIONAL SERVICES OFFICE. WORK INCLUDE NEW FLOOR PLATE, FIXTURES, FINISHES & RECONFIGURATION OF STAIR, IMPROVEMENT TO SECOND FLOOR (E) OFFICES.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,AJELLOHO,GANZ INVESTMENT CO,GANZ INVESTMENT CO,,4 - Downtown,6,Western SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7736285065, -122.41531179)",32,1,10,34
Resident,3642041,854 CAPP ST,TRUE,CONSTRUCTION,4/10/2018 0:00,6,5,0,0,,,,2015-002135PRJ,"Demolition of existing two-story, single-family home and two-story structure located in rear yard. Construction of a four-story, six-unit condo building with four off-street parking spaces.",CONSTRUCT (N) 6-UNIT CONDO.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,,IGLESIA DEL PACTO EVANGELICO INC,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7530069564, -122.417733382)",53,3,2,20
PDR,4912001,1300 FITZGERALD AV / 1401 EGBERT AV,TRUE,BP ISSUED,11/29/2016 0:00,0,0,0,0,,,,2014,"Demolish 7 PDR buildings, adjust lot lines, and construct 2 PDR buildings.","ERECT 1-STORY, TYPE 5, WAREHOUSE BUILDING. MAHER N/A.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,RSUCRE,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7225688324, -122.3929855)",88,2,9,1
Mixed,4067012,1512 20TH ST,TRUE,BP ISSUED,11/12/2015 0:00,0,0,0,0,,,,2013,Renovation and addition to an existing mixed-use building,REMOVE (E) ROOF. INCREASE HEIGHT OF (E) 2 STORY BLDG & ADD (N) MEZZ. ADD (N0) ROOF DECK @ SINGLE STORY ADDITION) 2 STORY PLUS SINGLE STORY ADDITION@ REAR. REMODEL INTERIOR OF(E)MBLDG. REHABILITATE FRONT FACADE WITH (N) WINDOWS IN (E) OPENING. REPLACE (E,5834,2561,0,0,0,0,0,0,0,2118,1011,0,0,0,2166,3716,1550,0,0,0,0,0,0,0,0,LLYNCH,Cary Bernstein,Cary Bernstein,415-522-1907,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7602311337, -122.39665847)",54,2,9,26
Resident,5329011,1948 QUESADA AV,TRUE,BP ISSUED,7/18/2017 0:00,1,1,0,0,,,,2016-005032PRJ,,ERECT 3 STORIES OF ONE SINGLE FAMILY.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JSPEIRS,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7362591244, -122.396062652)",87,2,9,1
MIPS,3731023,1060 FOLSOM ST,FALSE,BP FILED,2/17/2016 0:00,0,0,0,0,,,,2016-002535PRJ,CHANGE OF USE FROM INDUSTRIAL/WAREHOUSE TO ASSEMBLY AND SOCIAL SERVICE USE (DBA ALCHEMY) AND REMOVE THE NOTICE OF VIOLATION COMPLAINT NUMBER 13538_ENF.,CHANGE OF USE FROM INDUSTRIAL/WEARHOUSE TO ASSEEMBLY AND SOCIAL SERVICE USE (DBA ALCHEMY) AND REMOVE THE NOTICE OF VIOLATION COMPLAINT NUMBER 13538_ENF.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,EJARDINE,GOLDEN PROPERTIES LLC LLC,GOLDEN PROPERTIES LLC,,9 - South of Market,6,East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7775933292, -122.407165479)",32,1,10,34
Resident,2614004,262 CASTRO ST,FALSE,BP FILED,10/16/2015 0:00,1,1,0,0,,,,,,"TO ERECT 2 STORIES, 1 BASEMENT, SINGLE FAMILY RESIDENT BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,HORNJEFF,,,,6 - Buena Vista,8,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7646023886, -122.43571612)",113,7,5,5
Resident,3589091,144 LEXINGTON ST,TRUE,BP ISSUED,9/19/2016 0:00,3,1,0,0,,,,2014,"Variance request to rear yard, substandard lot, and front setback requirements to permit the addition of a third story on an existing two unit residential structure to add an addition one unit.","NEW THIRD FLOOR ADDITION, 2 BEDROOM WITH 1 BATHROOM. EXPANSION OF SECOND FLOOR, AND ROOF DECK ADDITION.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KDURANDE,Valencia SF Properties,Philip Lesser,650-347-6014,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7609862074, -122.421229847)",53,3,2,20
Resident,2308010,2263 41ST AV,FALSE,BP FILED,2/28/2017 0:00,2,1,0,0,,,,,,TO COMPLY WITH COMPLAINT #201631771. LEGALIZE LOWER LEVEL UNIT PER ORDINANCE #43-14.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7445568411, -122.499770126)",39,10,7,35
Resident,2692007,150 EUREKA ST,FALSE,BP FILED,8/17/2015 0:00,4,4,0,0,,,,2015-011274PRJ,"ERECT 4 STORY TWO FAMILY DWELLING. 150 EUREKA ST AKA 142, 146 EUREKA ST. & ERECT 4 STORY TWO FAMILY DWELLING. 150 EUREKA ST AKA 148, 150 EUREKA ST.","ERECT 4 STORY TWO FAMILY DWELLING. 150 EUREKA ST AKA 142, 146 EUREKA ST.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GORDON-J,,150 EUREKA STREET LLC,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7599001649, -122.438506041)",115,3,5,5
Resident,2395032,2442 31ST AV,FALSE,BP FILED,1/10/2017 0:00,2,1,0,0,,,,2017-001359PRJ,LEGALIZE DWELLING UNIT AT 1ST FLR PER ORDINANCE NO. 43-14. AND COMPLY WITH COMPLAINT #201623445 & #201649282.,LEGALIZE DWELLING UNIT AT 1ST FLR PER ORDINANCE NO. 43-14. AND COMPLY WITH COMPLAINT #201623445 & #201649282.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JIMENEZS,CAI TIM WEIZHONG WEIZHONG,CAI TIM WEIZHONG,,15 - Outer Sunset,4,,Rest of the City,2018,Q1,2018_Q1,"(37.7416696071, -122.488161231)",40,10,7,35
Mixres,3196028,1532 OCEAN AV,TRUE,BP FILED,9/10/2014 0:00,9,8,0,0,,,,2015-001171PRJ,"VERTICAL ADDITION. 2 STORY BUILDING ADDITION OVER EXISTING 2 STORY APT/RETAIL. ADD 4 BEDROOM, 3 BATHROOMS, 3 KITCHENS ON 3RD FLOOR. ADD 4 BEDROOMS, 3 BATHROOMS, 3 KITCHEN ON 4TH FLOOR.","VERTICAL ADDITION. 2 STORY BUILDING ADDITION OVER EXISTING 2 STORY APT/RETAIL. ADD 4 BEDROOM, 3 BATHROOMS, 3 KITCHENS ON 3RD FLOOR. ADD 4 BEDROOMS, 3 BATHROOMS, 3 KITCHEN ON 4TH FLOOR.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TRANNANC,,MAXSTONE INVESTMENT LLC,,13 - Ingleside,7,Balboa Park; Ocean Avenue Corridor Design,Balboa Park,2018,Q1,2018_Q1,"(37.7246970402, -122.458779281)",71,9,8,41
Resident,3983014,153 ARKANSAS ST,TRUE,CONSTRUCTION,10/4/2017 0:00,2,2,0,0,,,,2014,Mandatory Discretionary Review for the demolition of a single family dwelling to permit the reconstruction of a two family dwelling.,"TO ERECT 2 STORIES, NO BASEMENT, TYPE VB, 2 FAMILY RESIDENTALS.
** MAHER: N/A **",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,,,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7642211233, -122.39831338)",54,1,9,26
Resident,6982002,1079 PLYMOUTH AV,FALSE,BP FILED,10/19/2016 0:00,2,1,0,0,,,,2016-014233PRJ,"Legalize a rear detached one-story structure and its second dwelling unit (Unit No.2) at the first/ground floor, in the required rear yard, west of an existing single-family one-story-over-garage dwelling, per Planning Code Section 207.3 (Ord. 43-14). Th",LEGALIZATION OF DWELLING UNIT INSTALLED WITHOUT A PERMIT PER ORDINANCE #43-14. TO COMPLY N.O.V#201547122.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,KCONNER,KWONG REGINA LAILING LAILING,KWONG REGINA LAILING,,13 - Ingleside,11,,Rest of the City,2018,Q1,2018_Q1,"(37.721453596, -122.456455244)",64,10,1,24
Visitor,3703066,1053 MARKET ST,TRUE,PL Approved,11/20/2017 0:00,0,0,0,0,,,,2014,The proposed project would demolish an existing commercial building and construct a 10-story tourist hotel with 155 rooms with a ground floor retail space.,,74000,58000,0,0,0,0,0,0,0,0,0,0,0,0,16000,4000,-12000,0,0,0,70000,70000,0,155,155,LYEGAZU,Michael Stanton,Lisa Zhuo,415-865-9600,4 - Downtown,6,Downtown,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7810079377, -122.411155931)",32,5,10,34
Resident,4645018,860 INNES AV,TRUE,CONSTRUCTION,6/8/2016 0:00,4,4,0,0,,,,2004,"Construct a vertical addition to accommodate three DUs, convert ground floor to a three-car garage, and change ground floor use from business to retail in an NC-2 (Small-Scale Neighborhood Commercial) District and a 40-X Height and Bulk District.","ADD 2 NEW FLOORS TO (E) STRUCTURE.RECONFIGURE (E)SPACE W/NEW ADDED SPACE TO CREATE 1 COMM'L SPACE, 1 PARKING GARAGE & 4 RESIDENTIAL UNITS.",0,-2560,0,0,0,0,0,0,0,0,0,0,0,-2560,0,0,0,0,0,0,0,0,0,0,0,BFU,,,,10 - South Bayshore,10,India Basin Shoreline/Area C; Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7320092918, -122.375245429)",76,2,9,1
Resident,4071014,1914 20TH ST,TRUE,BP ISSUED,8/18/2015 0:00,2,2,0,0,,,,2013,Construct 2 dwelling units on an empty lot,"ERECT NEW 6 STORIES, 2 DWELLING UNITS BUILDING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JBANALES,,HURLEY JAMES,,9 - South of Market,10,Showplace Square/Potrero Hill (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7599981037, -122.400513748)",54,2,9,26
Resident,7085017,119 VERNON ST,FALSE,BP FILED,2/6/2014 0:00,1,1,0,0,,,,,,"TO ERECT 3 STORIES, NO BASEMENT, SINGLE FAMILY DWELLING.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,TKENNEDY,,,,13 - Ingleside,11,,19th Avenue,2018,Q1,2018_Q1,"(37.7146829196, -122.468278298)",65,10,1,24
Resident,1767031,1354 FUNSTON AV,TRUE,BP APPROVED,10/27/2017 0:00,2,1,0,0,,,,2010,Add 2nd dwelling unit to existing single-family residence with new vertical addition 3rd floor at rear of building.,"VERTICAL/HORIZONTAL ADDITION, ADD 3RD & 4TH FLOOR OVER (E) 2 STORIES, CONVERT TO TWO UNITS, MODIFY (E) SECOND FLOOR & FRONT ELEVATION, NEW 2 BATHROOMS @ 2ND FLOOR , NEW EXIT STAIR @ REAR ON ALL LEVELS, NEW 2 BEDROM,2 BATHROOMS @ 3RD FLOOR, NEW MASTER BED",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,GCABRERO,,,,14 - Inner Sunset,5,,Rest of the City,2018,Q1,2018_Q1,"(37.7628307181, -122.47019476)",109,10,11,14
Resident,5980003,208 GIRARD ST,TRUE,BP REINSTATED,7/7/2017 0:00,2,1,0,0,,,,,,"2 STORY HORIZONTAL ADDITION. 682 SQ. FT. @ 2ND FLOOR & 672 AT 1ST FLOOR. RAISE (E) HOUSE 2' & ADD NEW 615 SQ. FT. BASEMENT GARAGE. ADD 4 BEDROOMS, 1 STUDY, 3 NEW BATHROOMS, 1 KITCHEN & 1 LIVING ROOM.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,JSPEIRS,,,,12 - South Central,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7293963266, -122.405755958)",91,2,2,25
PDR,4829007,1560 WALLACE AV,TRUE,BP APPROVED,2/28/2014 0:00,0,0,0,0,,,,,,"ERECT 1 STORY, TYPE 5, WAREHOUSE BUILDING.",5000,5000,0,0,0,0,0,0,0,0,0,0,5000,5000,0,0,0,0,0,0,0,0,0,0,0,JMILLER,,,,10 - South Bayshore,10,Bayview Hunters Point,Bayview/Hunters Point Shipyard/Candlestick Point,2018,Q1,2018_Q1,"(37.7273245532, -122.390304857)",86,2,9,1
Resident,1853004E,1559 07TH AV,TRUE,CONSTRUCTION,3/26/2018 0:00,2,1,0,0,,,,,,"COMPLY W/NOV #201635593 - LEGALIZE UNAUTHORIZED DWELLING UNIT ON GROUND FLOOR: 1 KITCHEN, 1.5 BATHR",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,14 - Inner Sunset,7,,Rest of the City,2018,Q1,2018_Q1,"(37.7592871699, -122.464163993)",109,10,8,14
Resident,5532007,190 HOLLADAY AV,TRUE,BP ISSUED,4/6/2018 0:00,1,1,0,0,,,,2016-002253PRJ,"TO ERECT 3 STORIES, NO BASEMENT, SINGLE FAMILY RESIDENCE.","TO ERECT 3 STORIES, NO BASEMENT, SINGLE FAMILY RESIDENCE.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DISALVOJ,BRITTON JOHN F & LINDA M BRITTON,BRITTON JOHN F & LINDA M,,11 - Bernal Heights,9,,Rest of the City,2018,Q1,2018_Q1,"(37.7467388555, -122.40538523)",60,9,2,2
Resident,3726028,1082 HOWARD ST,FALSE,PL FILED,1/21/2016 0:00,8,8,0,0,,,,2015-010371PRJ,"Demolish an existing two story retail sales building and construct a new nine story, eight dwelling, 83.5 foot tall, multi-family residential building. There is no garage/parking. The ground floor will include active space (lobby). The lowest dwelling is",,0,-2801,0,0,0,0,0,0,0,0,0,0,0,0,2801,0,-2801,0,0,0,0,0,0,0,0,VBYRD,Arcon Construction Inc.,,4157596228,4 - Downtown,6,East SoMa (EN),Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7784879542, -122.409150608)",32,1,10,34
Resident,1091013,230 ANZA ST,FALSE,BP FILED,6/13/2016 0:00,3,1,0,0,,,,2016-005365PRJ,"Proposed demolition of (E) two-family dwelling. Construction of (N) four story 3-family dwelling. Excavation to provide (N) basement level.CHANGE OF USE FROM R-3 TO R-2, INTERIOR REMODEL FOR ALL FLR. THREE STORY REAR HORIZONTAL ADDITION, 3RD AND 4TH FLR.","CHANGE OF USE FROM R-3 TO R-2, INTERIOR REMODEL FOR ALL FLR. THREE STORY REAR HORIZONTAL ADDITION, 3RD AND 4TH FLR. VERTICAL ADDITION WITH ROOF DECK, EXCAVATE EARTH FOR NEW BASEMENT, INCREASE UNIT FROM 2 TO 3.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NORTHWES,Xie Arch Design,Xie Guan,4156523047,5 - Western Addition,1,,Rest of the City,2018,Q1,2018_Q1,"(37.7810534664, -122.449412384)",12,7,4,18
Resident,499002,1320 - 1380 LOMBARD ST,FALSE,PL FILED,1/12/2016 0:00,124,18,0,0,,,,2015-001435PRJ,"The proposed project will add 16 new studios and 2 one-bedroom units within the existing, underutilized ground floor space of the three-building complex. The area of alteration is currently used for storage.
The PPA was submitted on 2/5/2015 and the",,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,ERUSSELL,"Veritas Investments, Inc.",,4155787610,3 - Northeast,2,Van Ness Corridor,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.8017629993, -122.423729892)",107,4,6,32
Mixres,3593001,2300 HARRISON ST,FALSE,PL FILED,,9,9,0,0,,,,2016-010589PRJ,"The proposed project is a vertical addition to an existing 3-story office building via new construction of a 5-story-over-basement building, including below-grade parking level, one story of mixed use and parking, two stories of office use and two storie",,98088,29550,0,0,0,0,0,0,68538,95138,26600,0,0,0,0,2950,2950,0,0,0,0,0,0,0,0,,,,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.7602906272, -122.413200418)",53,3,2,20
Resident,2713001,112 YUKON ST,FALSE,BP FILED,8/9/2016 0:00,2,1,0,0,,,,,,"VERTICAL ADDITION. NEW 3/FL WITH 2 NEW BEDROOMS & A STUDY, 2 NEW BATHROOMS & A LAUNDRY ROOM. NEW INTERIOR STAIRS CONNECTING ALL FLOORS. NEW WINDOWS & DOORS AND A STRUCTURAL SEISMIC UPGRADE AS REQUIRED.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CTOWNES,,,,7 - Central,8,,Rest of the City,2018,Q1,2018_Q1,"(37.7578491703, -122.44246406)",115,3,5,5
Resident,657004,2406 BUSH ST,FALSE,BP FILED,3/10/2017 0:00,2,1,0,0,,,,2017-003985PRJ,"COMPLY WITH NOV# 200557539. REMOVE DECKS & PROP. LINE WINDOW. ADDITION & INTERIOR ALTERATIONS TO THE (E) 2 STORY HOUSE WITH A BASEMENT, CONVERTING IT INTO A 3 STORY, 2 UNIT BUILDING WITH A BASEMENT. NO CHANGE TO THE FRONT (SOUTH) ELEVATION OR ANY REDUCTI","COMPLY WITH NOV# 200557539. REMOVE DECKS & PROP. LINE WINDOW. ADDITION & INTERIOR ALTERATIONS TO THE (E) 2 STORY HOUSE WITH A BASEMENT, CONVERTING IT INTO A 3 STORY, 2 UNIT BUILDING WITH A BASEMENT. NO CHANGE TO THE FRONT (SOUTH) ELEVATION OR ANY REDUCTI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NORTHWES,DEREK PAUL & AMY WARD THOMPSON TR,DEREK PAUL & AMY WARD THOMPSON TR,,5 - Western Addition,5,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7867960598, -122.437057301)",103,4,11,30
Resident,7146034,3143 ALEMANY BL,FALSE,BP FILED,12/28/2016 0:00,1,1,0,0,,,,,,"ERECT A FOUR STORY TYPE 5A SINGLE FAMILY DWELLING.
",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,12 - South Central,11,,Mission-San Jose Corridor,2018,Q1,2018_Q1,"(37.7102505608, -122.454982773)",66,9,1,28
Resident,252011,1160 PINE ST,TRUE,BP FILED,2/4/2015 0:00,18,3,0,0,,,,2015-001806PRJ,INSTALLATION OF (3) NEW RESIDENTIAL UNITS FOR A TOTAL OF (18) UNITS.,INSTALLATION OF (3) NEW RESIDENTIAL UNITS FOR A TOTAL OF (18) UNITS.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,CGROB,,CITY RING 1 LLC,,3 - Northeast,3,,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7906167267, -122.414946186)",16,6,3,21
Resident,3532048,44 WOODWARD ST,TRUE,CONSTRUCTION,3/20/2018 0:00,3,3,0,0,,,,2014-000686PRJ,"Proposal for demolition of existing 1,625 sq. ft. storage/garage building and new construction of a 3,516 sq. ft., four-story, three-family dwelling including a ground-floor garage with three parking spaces and roof deck with stair penthouse above the fo","CONSTRUCT 4-STORY, 3-UNITS RESIDENTIAL CONDO.",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DVU,,SHIZUO HOLDINGS TRUST,,8 - Mission,9,Mission (EN); Mission District Streetscape Plan,Eastern Neighborhoods,2018,Q1,2018_Q1,"(37.76914108, -122.421048459)",53,3,2,20
Resident,3749012,15 GUY PL,TRUE,BP ISSUED,11/14/2016 0:00,2,1,0,0,,,,2015-000943PRJ,Demolish an existing single-family dwelling and construct a new two-family dwelling.,CONSTRUCT NEW 6-STORY 2-DWELLING RESIDENTIAL BUILDING OF TYPE 1A CONSTRUCTION AT GROUND FLOOR AND TYPE 3B CONSTRUCTION AT FLOORS 2 TO 6.,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,DVU,ZONE Consulting,,4158105116,9 - South of Market,6,Rincon Hill; Rincon Hill Streetscape Plan,Downtown-Van Ness-Geary,2018,Q1,2018_Q1,"(37.7863074578, -122.394352017)",30,1,10,8