Data source: data.sfgov.org
This data as json, CSV (advanced)
Suggested facets: Production Company, Distributor
| Link | rowid ▼ | Title | Release Year | Locations | Fun Facts | Production Company | Distributor | Director | Writer | Actor 1 | Actor 2 | Actor 3 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 252 | 252 | Casualties of War 47 | 1989 35 | Mission Dolores Park (Mission District) via J-Church MUNI Train | The two land plots that comprise the Park were used as a Jewish cemetery until 1894 when San Francisco prohibited all burials within city limits. The graves were moved to Colma, CA. | Columbia Pictures Corporation 5 | Columbia Pictures 4 | Brian DePalma 45 | Daniel Lang 44 | Michael J. Fox 278 | Sean Penn 40 | |
| 378 | 378 | Common Threads: Stories From the Quilt 66 | 1989 35 | The Castro | From 1910-1920 the Castro was called "Little Scandinavia" because of its high concentration of residents of Scandinavian ancestry. | Home Box Office (HBO) 50 | Direct Cinema Limited 39 | Rob Epstein 60 | Jeffrey Friedman 60 | Sara Lewinstein 283 | David Mandell 48 | |
| 502 | 502 | Fat Man and Little Boy 92 | 1989 35 | Postcard Row (Alamo Square, Hayes Valley) | The 6 Victorian homes across from Alamo Square Park are among the few Victorians to survive the Great Fire. | Paramount Pictures 4 | Paramount Pictures 3 | Roland Joffe 83 | Roland Joffe 85 | Paul Newman 214 | John Cusack 72 | |
| 676 | 676 | Indiana Jones and the Last Crusade 131 | 1989 35 | Administration Building (Treasure Island) | An artificial island, Treasure Island was created for the 1939 Golden Gate International Exposition, and is named after the novel by Robert Louis Stevenson, a one-time San Francisco resident. | Paramount Pictures 4 | Paramount Pictures 3 | Steven Spielberg 122 | Jeffrey Boam 121 | Harrison Ford 12 | Sean Connery 107 | |
| 1544 | 1544 | True Believer 292 | 1989 35 | Columbia Pictures Corporation 5 | Columbia Pictures 4 | Joseph Ruben 238 | Wesley Strick 252 | James Woods 428 | Robert Downey, Jr. 227 |
JSON shape: default, array, newline-delimited
CREATE TABLE "Film_Locations_in_San_Francisco" (
"Title" INTEGER,
"Release Year" INTEGER,
"Locations" TEXT,
"Fun Facts" REAL,
"Production Company" INTEGER,
"Distributor" INTEGER,
"Director" INTEGER,
"Writer" INTEGER,
"Actor 1" INTEGER,
"Actor 2" INTEGER,
"Actor 3" INTEGER
,
FOREIGN KEY ("Title") REFERENCES [Title](id),
FOREIGN KEY ("Director") REFERENCES [Director](id),
FOREIGN KEY ("Actor 2") REFERENCES [Actors](id),
FOREIGN KEY ("Actor 1") REFERENCES [Actors](id),
FOREIGN KEY ("Writer") REFERENCES [Writer](id),
FOREIGN KEY ("Release Year") REFERENCES [Release Year](id),
FOREIGN KEY ("Actor 3") REFERENCES [Actors](id),
FOREIGN KEY ("Production Company") REFERENCES [Production Company](id),
FOREIGN KEY ("Distributor") REFERENCES [Distributor](id));
CREATE INDEX ["Film_Locations_in_San_Francisco_Title"] ON [Film_Locations_in_San_Francisco]("Title");
CREATE INDEX ["Film_Locations_in_San_Francisco_Director"] ON [Film_Locations_in_San_Francisco]("Director");
CREATE INDEX ["Film_Locations_in_San_Francisco_Actor 2"] ON [Film_Locations_in_San_Francisco]("Actor 2");
CREATE INDEX ["Film_Locations_in_San_Francisco_Actor 1"] ON [Film_Locations_in_San_Francisco]("Actor 1");
CREATE INDEX ["Film_Locations_in_San_Francisco_Writer"] ON [Film_Locations_in_San_Francisco]("Writer");
CREATE INDEX ["Film_Locations_in_San_Francisco_Release Year"] ON [Film_Locations_in_San_Francisco]("Release Year");
CREATE INDEX ["Film_Locations_in_San_Francisco_Actor 3"] ON [Film_Locations_in_San_Francisco]("Actor 3");
CREATE INDEX ["Film_Locations_in_San_Francisco_Production Company"] ON [Film_Locations_in_San_Francisco]("Production Company");
CREATE INDEX ["Film_Locations_in_San_Francisco_Distributor"] ON [Film_Locations_in_San_Francisco]("Distributor");