Street_Tree_List

Data source: data.sfgov.org

11 rows where Location = "(37.7797350134544, -122.430062547125)" and qCaretaker = 21

View and edit SQL

Suggested facets: qSpecies, PlantDate, DBH, PlotSize

Location

  • (37.7797350134544, -122.430062547125) · 11
Link rowid ▼ TreeID qLegalStatus qSpecies qAddress SiteOrder qSiteInfo PlantType qCaretaker qCareAssistant PlantDate DBH PlotSize PermitNotes XCoord YCoord Latitude Longitude Location
77557 9556 Permitted Site 1 Pittosporum spp :: Pittosporum spp 128 1195X Golden Gate Ave 9 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21   01/19/2016 07:58:00 AM 3 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
77576 9548 Permitted Site 1 Pittosporum undulatum :: Victorian Box 26 1195X Golden Gate Ave 1 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21   10/12/1994 12:00:00 AM 3 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
80298 9558 Permitted Site 1 Pistacia chinensis :: Chinese Pistache 150 1195X Golden Gate Ave 11 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21   12/15/2005 12:00:00 AM 3 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
99583 9555 Permitted Site 1 Pyrus kawakamii :: Evergreen Pear 82 1195X Golden Gate Ave 8 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21     6 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
104137 9554 Permitted Site 1 Pittosporum undulatum :: Victorian Box 26 1195X Golden Gate Ave 7 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21   05/14/1992 12:00:00 AM 12 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
111085 9551 Permitted Site 1 Pittosporum undulatum :: Victorian Box 26 1195X Golden Gate Ave 4 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21   05/14/1992 12:00:00 AM 3 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
123863 9557 Permitted Site 1 Pittosporum spp :: Pittosporum spp 128 1195X Golden Gate Ave 10 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21   01/19/2016 07:54:00 AM 3 3x3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
140317 9553 Permitted Site 1 Pyrus kawakamii :: Evergreen Pear 82 1195X Golden Gate Ave 6 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21     6 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
141722 9550 Permitted Site 1 Pyrus kawakamii :: Evergreen Pear 82 1195X Golden Gate Ave 3 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21     6 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
143620 9559 Permitted Site 1 Pittosporum undulatum :: Victorian Box 26 1195X Golden Gate Ave 12 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21     3 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)
145804 9549 Permitted Site 1 Pittosporum undulatum :: Victorian Box 26 1195X Golden Gate Ave 2 Sidewalk: Curb side : Cutout 1 Tree 1 Office of Mayor 21   05/14/1992 12:00:00 AM 3 3X3   6003912.3472435 2112132.7194564 37.7797350134544 -122.43006254712499 (37.7797350134544, -122.430062547125)

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE "Street_Tree_List" (
"TreeID" INTEGER,
  "qLegalStatus" INTEGER,
  "qSpecies" INTEGER,
  "qAddress" TEXT,
  "SiteOrder" INTEGER,
  "qSiteInfo" INTEGER,
  "PlantType" INTEGER,
  "qCaretaker" INTEGER,
  "qCareAssistant" INTEGER,
  "PlantDate" TEXT,
  "DBH" INTEGER,
  "PlotSize" TEXT,
  "PermitNotes" TEXT,
  "XCoord" REAL,
  "YCoord" REAL,
  "Latitude" REAL,
  "Longitude" REAL,
  "Location" TEXT
,
FOREIGN KEY ("PlantType") REFERENCES [PlantType](id),
    FOREIGN KEY ("qCaretaker") REFERENCES [qCaretaker](id),
    FOREIGN KEY ("qSpecies") REFERENCES [qSpecies](id),
    FOREIGN KEY ("qSiteInfo") REFERENCES [qSiteInfo](id),
    FOREIGN KEY ("qCareAssistant") REFERENCES [qCareAssistant](id),
    FOREIGN KEY ("qLegalStatus") REFERENCES [qLegalStatus](id));
CREATE INDEX ["Street_Tree_List_PlantType"] ON [Street_Tree_List]("PlantType");
CREATE INDEX ["Street_Tree_List_qCaretaker"] ON [Street_Tree_List]("qCaretaker");
CREATE INDEX ["Street_Tree_List_qSpecies"] ON [Street_Tree_List]("qSpecies");
CREATE INDEX ["Street_Tree_List_qSiteInfo"] ON [Street_Tree_List]("qSiteInfo");
CREATE INDEX ["Street_Tree_List_qCareAssistant"] ON [Street_Tree_List]("qCareAssistant");
CREATE INDEX ["Street_Tree_List_qLegalStatus"] ON [Street_Tree_List]("qLegalStatus");
Powered by Datasette · Query took 40.502ms · Data source: data.sfgov.org